Frame 1
_root.mstarv = 2;
Mouse.show();
loadedbytes = getBytesLoaded();
totalbytes = getBytesTotal();
percentbytes = int(loadedbytes / (totalbytes / 100));
loader.gotoAndStop(percentbytes);
Instance of Symbol 60 MovieClip in Frame 1
/* no clip actions */
Frame 2
if (loadedbytes == totalbytes) {
nextFrame();
} else {
gotoAndPlay (1);
}
Frame 3
stop();
Instance of Symbol 60 MovieClip in Frame 3
/* no clip actions */
Frame 4
function usedf1b() {
if (shooting) {
bc++;
if (bc > 1100) {
bc = 1000;
}
duplicateMovieClip ("bullet", "b" + bc, bc);
}
}
tsstv = 1;
rpdv = 1;
lifev = 2;
_root.mstarv = 2;
_root.stksto = 2;
setInterval(usedf1b, 150);
Frame 5
stop();
Instance of Symbol 150 MovieClip "gun" in Frame 5
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 9
function het3() {
if (lifev == 3) {
_root.health = Math.round(_root.life / 3);
}
if (lifev == 2) {
_root.health = Math.round(_root.life / 2);
}
if (lifev == 1) {
_root.health = _root.life;
}
}
_root.mstarv = 1;
_root.speed = 40;
_root.xDest = _root.gun._x;
_root.yDest = _root.gun._y;
if (lifev == 3) {
_root.life = 300;
}
if (lifev == 2) {
_root.life = 200;
}
if (lifev == 1) {
_root.life = 100;
}
setInterval(het3, 500);
_root.score = 0;
startDrag ("_root.cur", true);
Mouse.hide()();
var shooting = false;
if (rpdv == 2) {
var bc = 1000;
_root.onMouseDown = function () {
shooting = true;
};
onMouseUp = function () {
shooting = false;
};
}
if (rpdv == 1) {
var bc = 1000;
_root.onMouseDown = function () {
bc++;
if (bc > 1100) {
bc = 1000;
}
duplicateMovieClip ("bullet", "b" + bc, bc);
};
}
function makestar() {
c++;
if (c > 2000) {
c = 1000;
}
if (starv == 1) {
if (stksto == 1) {
_root.attachMovie("stara", "star" + c, c);
with (_root["star" + c]) {
_x = SW / 2;
_y = SH / 2;
_alpha = 0;
_rotation = random(360);
}
}
if (stksto == 2) {
_root.attachMovie("starc", "star" + c, c);
with (_root["star" + c]) {
_x = SW / 2;
_y = SH / 2;
_alpha = 0;
_rotation = random(360);
}
}
}
if (starv == 2) {
if (stksto == 1) {
_root.attachMovie("starb", "star" + c, c);
with (_root["star" + c]) {
_x = SW / 2;
_y = SH / 2;
_alpha = 0;
_rotation = random(360);
}
}
if (stksto == 2) {
_root.attachMovie("stard", "star" + c, c);
with (_root["star" + c]) {
_x = SW / 2;
_y = SH / 2;
_alpha = 0;
_rotation = random(360);
}
}
}
_root["star" + c].spd = random(starspeed / 2) + (starspeed / 2);
_root["star" + c].onEnterFrame = function () {
with (this) {
spd = spd * (1 + (_root.accel / 500));
_width = _width * (1 + (_root.accel / 2500));
_height = _height * (1 + (_root.accel / 2500));
_alpha = _alpha + 3;
if (_rotation > 180) {
_y = _y + (spd * Math.cos((Math.PI/180) * _rotation));
_x = _x - (spd * Math.sin((Math.PI/180) * _rotation));
} else {
_y = _y - (spd * Math.cos((Math.PI/180) * _rotation));
_x = _x + (spd * Math.sin((Math.PI/180) * _rotation));
}
if ((((_x < (-_width)) || (_x > (SW + _width))) || (_y > (SH + _width))) || (_y < (-_width))) {
this.removeMovieClip();
}
}
};
}
var frequency = 100;
var starspeed = 30;
var accel = 0;
SW = Stage.width;
SH = Stage.height;
c = 1000;
interv = setInterval(function () {
if (mstarv == 1) {
if (_root.tsstv == 1) {
makestar();
}
}
}, 1000 / frequency);
Instance of Symbol 150 MovieClip "gun" in Frame 9
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Instance of Symbol 197 MovieClip "bullet" in Frame 9
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
Instance of Symbol 209 MovieClip "lifebar" in Frame 9
onClipEvent (enterFrame) {
_root.lifebar._width = _root.health * 2;
if (_root.life <= 0) {
_root.gotoAndStop("dead");
}
}
Frame 10
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy1._x = _root.enemyx;
_root.enemy1._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy1" in Frame 10
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 17
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy2._x = _root.enemyx;
_root.enemy2._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy2" in Frame 17
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 35
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy4._x = _root.enemyx;
_root.enemy4._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy4" in Frame 35
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 54
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy5._x = _root.enemyx;
_root.enemy5._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy5" in Frame 54
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 65
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy3._x = _root.enemyx;
_root.enemy3._y = _root.enemyy;
Instance of Symbol 217 MovieClip "enemy3" in Frame 65
onClipEvent (load) {
this.dead2 = 0;
this.deadcheck2 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead2) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead2 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck2 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck2 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck2 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck2 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck2 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck2 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck2 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 76
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy6._x = _root.enemyx;
_root.enemy6._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy6" in Frame 76
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 95
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy7._x = _root.enemyx;
_root.enemy7._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy7" in Frame 95
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 113
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy8._x = _root.enemyx;
_root.enemy8._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy8" in Frame 113
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 123
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy9._x = _root.enemyx;
_root.enemy9._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy9" in Frame 123
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 130
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy10._x = _root.enemyx;
_root.enemy10._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy10" in Frame 130
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 138
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy11._x = _root.enemyx;
_root.enemy11._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy12" in Frame 138
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 145
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy16._x = _root.enemyx;
_root.enemy16._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy16" in Frame 145
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 152
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy13._x = _root.enemyx;
_root.enemy13._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy13" in Frame 152
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 153
_root.starv = 2;
Frame 160
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy14._x = _root.enemyx;
_root.enemy14._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy14" in Frame 160
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 167
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy15._x = _root.enemyx;
_root.enemy15._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy15" in Frame 167
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 168
_root.starv = 2;
Frame 174
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy17._x = _root.enemyx;
_root.enemy17._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy17" in Frame 174
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 180
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy18._x = _root.enemyx;
_root.enemy18._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy18" in Frame 180
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 182
_root.starv = 2;
Frame 189
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy19._x = _root.enemyx;
_root.enemy19._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy19" in Frame 189
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 197
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy20._x = _root.enemyx;
_root.enemy20._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy20" in Frame 197
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 204
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy21._x = _root.enemyx;
_root.enemy21._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy21" in Frame 204
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 212
_root.starv = 2;
Frame 213
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy22._x = _root.enemyx;
_root.enemy22._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy22" in Frame 213
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 219
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy23._x = _root.enemyx;
_root.enemy23._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy23" in Frame 219
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 227
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy24._x = _root.enemyx;
_root.enemy24._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy24" in Frame 227
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 235
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy25._x = _root.enemyx;
_root.enemy25._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy25" in Frame 235
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 241
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy26._x = _root.enemyx;
_root.enemy26._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy26" in Frame 241
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 249
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy27._x = _root.enemyx;
_root.enemy27._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy27" in Frame 249
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 258
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy28._x = _root.enemyx;
_root.enemy28._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy28" in Frame 258
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 266
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy29._x = _root.enemyx;
_root.enemy29._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy29" in Frame 266
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 273
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy30._x = _root.enemyx;
_root.enemy30._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy30" in Frame 273
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 274
_root.starv = 2;
Frame 281
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy31._x = _root.enemyx;
_root.enemy31._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy31" in Frame 281
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 288
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy32._x = _root.enemyx;
_root.enemy32._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy32" in Frame 288
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 289
_root.starv = 2;
Frame 296
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy33._x = _root.enemyx;
_root.enemy33._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy33" in Frame 296
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 303
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy34._x = _root.enemyx;
_root.enemy34._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy34" in Frame 303
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 304
_root.starv = 2;
Frame 311
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy35._x = _root.enemyx;
_root.enemy35._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy35" in Frame 311
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 318
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy36._x = _root.enemyx;
_root.enemy36._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy36" in Frame 318
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 326
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy37._x = _root.enemyx;
_root.enemy37._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy37" in Frame 326
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 333
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy38._x = _root.enemyx;
_root.enemy38._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy38" in Frame 333
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 341
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy39._x = _root.enemyx;
_root.enemy39._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy39" in Frame 341
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 348
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy40._x = _root.enemyx;
_root.enemy40._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy40" in Frame 348
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 355
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy41._x = _root.enemyx;
_root.enemy41._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy41" in Frame 355
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 363
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy42._x = _root.enemyx;
_root.enemy42._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy42" in Frame 363
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 369
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy43._x = _root.enemyx;
_root.enemy43._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy43" in Frame 369
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 378
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy44._x = _root.enemyx;
_root.enemy44._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy44" in Frame 378
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 386
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy45._x = _root.enemyx;
_root.enemy45._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy45" in Frame 386
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 393
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 393
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 401
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 401
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 408
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 408
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 415
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 415
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 423
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 423
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 430
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 430
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 438
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 438
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 446
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 446
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 454
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 454
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 461
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy55._x = _root.enemyx;
_root.enemy55._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy55" in Frame 461
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 468
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy56._x = _root.enemyx;
_root.enemy56._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy56" in Frame 468
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 476
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy57._x = _root.enemyx;
_root.enemy57._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy57" in Frame 476
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 483
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 483
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 491
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 491
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 498
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 498
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 505
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 505
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 513
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 513
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 521
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 521
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 529
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 529
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 536
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 536
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 544
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 544
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 551
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 551
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 559
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 559
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 566
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 566
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 573
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 573
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 581
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 581
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 588
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 588
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 589
_root.starv = 2;
Frame 596
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 596
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 604
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 604
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 612
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 612
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 619
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 619
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 627
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 627
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 634
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 634
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 641
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 641
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 642
_root.starv = 1;
Frame 649
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 649
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 650
_root.starv = 2;
Frame 657
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 657
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 665
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 665
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 672
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 672
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 673
_root.starv = 1;
Frame 680
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 680
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 687
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 687
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 694
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 694
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 701
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 701
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 702
_root.starv = 1;
Frame 708
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 708
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 710
_root.starv = 2;
Frame 716
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 716
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 717
_root.starv = 1;
Frame 723
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 723
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 725
_root.starv = 2;
Frame 731
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 731
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 733
_root.starv = 1;
Frame 739
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 739
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 740
_root.starv = 2;
Frame 747
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 747
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 754
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy70._x = _root.enemyx;
_root.enemy70._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy70" in Frame 754
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 761
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy71._x = _root.enemyx;
_root.enemy71._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy71" in Frame 761
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 762
_root.starv = 1;
Frame 768
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy72._x = _root.enemyx;
_root.enemy72._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy72" in Frame 768
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 770
_root.starv = 2;
Frame 776
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy73._x = _root.enemyx;
_root.enemy73._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy73" in Frame 776
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 777
_root.starv = 1;
Frame 784
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy74._x = _root.enemyx;
_root.enemy74._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy74" in Frame 784
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 785
_root.starv = 2;
Frame 792
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy75._x = _root.enemyx;
_root.enemy75._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy75" in Frame 792
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 793
_root.starv = 1;
Frame 799
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy76._x = _root.enemyx;
_root.enemy76._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy76" in Frame 799
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 800
_root.starv = 2;
Frame 807
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy77._x = _root.enemyx;
_root.enemy77._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy77" in Frame 807
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 814
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 814
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 822
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 822
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 829
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 829
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 830
_root.starv = 2;
Frame 836
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 836
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 837
_root.starv = 1;
Frame 844
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 844
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 845
_root.starv = 2;
Frame 852
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 852
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 853
_root.starv = 1;
Frame 860
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 860
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 867
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 867
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 874
_root.starv = 2;
Frame 875
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 875
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 882
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 882
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 889
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 889
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 890
_root.starv = 2;
Frame 896
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 896
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 897
_root.starv = 1;
Frame 903
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 903
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 905
_root.starv = 2;
Frame 911
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 911
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 913
_root.starv = 1;
Frame 918
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 918
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 920
_root.starv = 2;
Frame 926
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 926
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 933
_root.starv = 2;
Frame 934
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 934
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 941
_root.starv = 1;
Frame 942
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 942
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 949
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 949
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 956
_root.starv = 1;
Frame 957
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 957
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 964
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 964
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 971
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 971
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 972
_root.starv = 1;
Frame 979
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 979
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 987
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 987
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 994
_root.starv = 2;
Frame 995
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 995
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1002
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 1002
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1010
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 1010
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1017
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 1017
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1024
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 1024
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1025
_root.starv = 2;
Frame 1031
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 1031
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1033
_root.starv = 1;
Frame 1038
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 1038
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1040
_root.starv = 2;
Frame 1046
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 1046
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1053
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 1053
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1061
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 1061
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1069
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 1069
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1076
_root.starv = 1;
Frame 1077
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 1077
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1084
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 1084
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1092
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 1092
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1099
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 1099
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1106
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 1106
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1113
_root.starv = 2;
Frame 1114
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 1114
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1121
_root.starv = 1;
Frame 1122
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 1122
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1129
_root.starv = 2;
Frame 1130
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 1130
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1136
_root.starv = 1;
Frame 1137
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 1137
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1144
_root.starv = 2;
Frame 1145
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 1145
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1152
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 1152
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1159
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 1159
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1166
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 1166
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1173
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 1173
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1181
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 1181
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1188
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 1188
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1189
_root.starv = 2;
Frame 1196
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 1196
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1204
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 1204
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1212
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 1212
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1219
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 1219
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1227
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 1227
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1234
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 1234
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1241
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 1241
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1242
_root.starv = 1;
Frame 1249
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 1249
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1250
_root.starv = 2;
Frame 1257
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 1257
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1265
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 1265
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1272
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 1272
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1273
_root.starv = 1;
Frame 1280
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 1280
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1287
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 1287
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1294
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 1294
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1301
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 1301
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1302
_root.starv = 1;
Frame 1308
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 1308
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1310
_root.starv = 2;
Frame 1316
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 1316
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1317
_root.starv = 1;
Frame 1323
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 1323
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1325
_root.starv = 2;
Frame 1331
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 1331
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1333
_root.starv = 1;
Frame 1339
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 1339
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1346
_root.starv = 1;
Frame 1347
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 1347
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1354
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 1354
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1362
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 1362
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1369
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 1369
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1375
_root.starv = 1;
Frame 1376
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 1376
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1382
_root.starv = 2;
Frame 1384
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 1384
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1390
_root.starv = 1;
Frame 1392
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 1392
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1398
_root.starv = 2;
Frame 1400
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 1400
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1405
_root.starv = 1;
Frame 1407
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 1407
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1413
_root.starv = 2;
Frame 1415
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 1415
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1421
_root.starv = 1;
Frame 1422
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 1422
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1428
_root.starv = 2;
Frame 1429
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 1429
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1436
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 1436
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1443
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 1443
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1451
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 1451
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1458
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 1458
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1459
_root.starv = 2;
Frame 1466
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 1466
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1474
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 1474
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1482
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 1482
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1489
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 1489
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1495
_root.starv = 1;
Frame 1497
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 1497
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1502
_root.starv = 2;
Frame 1504
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 1504
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1510
_root.starv = 1;
Frame 1511
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 1511
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1518
_root.starv = 2;
Frame 1519
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 1519
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1525
_root.starv = 1;
Frame 1527
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 1527
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1533
_root.starv = 2;
Frame 1535
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 1535
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1541
_root.starv = 1;
Frame 1542
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 1542
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1548
_root.starv = 2;
Frame 1550
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 1550
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1555
_root.starv = 1;
Frame 1557
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 1557
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1562
_root.starv = 2;
Frame 1564
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 1564
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1570
_root.starv = 1;
Frame 1571
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 1571
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1578
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 1578
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1585
_root.starv = 1;
Frame 1586
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 1586
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1593
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 1593
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1601
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 1601
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1608
_root.starv = 2;
Frame 1609
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 1609
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1615
_root.starv = 1;
Frame 1617
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 1617
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1622
_root.starv = 2;
Frame 1625
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 1625
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1630
_root.starv = 1;
Frame 1633
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 1633
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1638
_root.starv = 2;
Frame 1640
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 1640
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1645
_root.starv = 1;
Frame 1647
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 1647
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1653
_root.starv = 2;
Frame 1655
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 1655
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1661
_root.starv = 1;
Frame 1663
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 1663
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1668
_root.starv = 2;
Frame 1671
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 1671
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1676
_root.starv = 1;
Frame 1678
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 1678
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1683
_root.starv = 2;
Frame 1686
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 1686
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1691
_root.starv = 1;
Frame 1693
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 1693
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1699
_root.starv = 2;
Frame 1700
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 1700
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1706
_root.starv = 1;
Frame 1707
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 1707
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1714
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 1714
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1722
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 1722
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1729
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 1729
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1736
_root.starv = 1;
Frame 1737
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 1737
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1743
_root.starv = 2;
Frame 1745
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 1745
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1751
_root.starv = 1;
Frame 1753
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 1753
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1759
_root.starv = 2;
Frame 1760
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 1760
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1766
_root.starv = 1;
Frame 1768
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 1768
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1774
_root.starv = 2;
Frame 1775
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 1775
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1782
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 1782
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1790
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 1790
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1797
_root.starv = 1;
Frame 1798
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 1798
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1805
_root.starv = 2;
Frame 1806
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 1806
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1813
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 1813
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1820
_root.starv = 2;
Frame 1821
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 1821
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1826
_root.starv = 1;
Frame 1828
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 1828
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1833
_root.starv = 2;
Frame 1835
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 1835
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1841
_root.starv = 1;
Frame 1842
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 1842
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1849
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 1849
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1856
_root.starv = 1;
Frame 1857
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 1857
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1864
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 1864
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1872
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 1872
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1879
_root.starv = 2;
Frame 1880
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 1880
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1887
_root.starv = 1;
Frame 1888
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 1888
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1894
_root.starv = 2;
Frame 1895
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 1895
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1902
_root.starv = 1;
Frame 1903
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 1903
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1910
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 1910
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1917
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 1917
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1925
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 1925
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1933
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 1933
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 1993
gotoAndPlay ("L2");
Frame 2024
startDrag ("_root.cur", true);
Mouse.hide()();
Instance of Symbol 150 MovieClip "gun" in Frame 2024
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Instance of Symbol 197 MovieClip "bullet" in Frame 2024
onClipEvent (load) {
spd = 20;
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
}
onClipEvent (enterFrame) {
if (_name == "bullet") {
_x = -1000;
} else if (_rotation > 180) {
_y = (_y + (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x - (spd * Math.sin((Math.PI/180) * _rotation)));
} else {
_y = (_y - (spd * Math.cos((Math.PI/180) * _rotation)));
_x = (_x + (spd * Math.sin((Math.PI/180) * _rotation)));
}
if ((((_x > Stage.width) || (_x < 0)) || (_y < 0)) || (_y > Stage.height)) {
this.removeMovieClip();
}
}
Instance of Symbol 209 MovieClip "lifebar" in Frame 2024
onClipEvent (enterFrame) {
_root.lifebar._width = _root.health * 2;
if (_root.life <= 0) {
_root.gotoAndStop("dead");
}
}
Frame 2026
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 2026
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2031
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 2031
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2036
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 2036
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2041
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 2041
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2046
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 2046
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2051
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 2051
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2056
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 2056
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2061
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 2061
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2066
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 2066
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2072
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 2072
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2077
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 2077
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2082
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 2082
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2087
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 2087
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2092
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 2092
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2097
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 2097
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2102
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 2102
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2108
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 2108
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2113
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 2113
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2118
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 2118
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2123
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 2123
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2128
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 2128
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2133
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 2133
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2138
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 2138
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2144
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 2144
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2149
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 2149
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2154
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 2154
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2159
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 2159
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2164
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 2164
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2170
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 2170
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2175
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 2175
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2180
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 2180
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2185
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 2185
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2190
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 2190
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2195
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 2195
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2200
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 2200
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2205
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 2205
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2210
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 2210
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2215
_root.starv = 1;
Frame 2216
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 2216
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2220
_root.starv = 2;
Frame 2221
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 2221
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2226
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 2226
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2231
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 2231
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2236
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 2236
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2241
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 2241
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2246
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 2246
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2251
_root.starv = 2;
Frame 2252
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 2252
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2256
_root.starv = 1;
Frame 2257
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 2257
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2262
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 2262
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2267
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 2267
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2272
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 2272
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2277
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 2277
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2282
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 2282
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2287
_root.starv = 1;
Frame 2288
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 2288
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2292
_root.starv = 2;
Frame 2293
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 2293
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2298
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 2298
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2303
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 2303
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2308
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 2308
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2313
_root.starv = 2;
Frame 2314
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 2314
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2318
_root.starv = 1;
Frame 2319
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 2319
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2324
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 2324
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2329
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 2329
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2334
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 2334
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2339
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 2339
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2344
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 2344
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2349
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 2349
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2354
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 2354
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2359
_root.starv = 1;
Frame 2360
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 2360
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2364
_root.starv = 2;
Frame 2365
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 2365
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2369
_root.starv = 1;
Frame 2370
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 2370
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2374
_root.starv = 2;
Frame 2375
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 2375
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2380
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 2380
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2385
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 2385
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2390
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 2390
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2395
_root.starv = 2;
Frame 2396
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 2396
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2400
_root.starv = 1;
Frame 2401
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 2401
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2405
_root.starv = 2;
Frame 2406
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 2406
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2410
_root.starv = 1;
Frame 2411
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 2411
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2416
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 2416
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2421
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 2421
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2426
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 2426
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2431
_root.starv = 1;
Frame 2432
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 2432
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2436
_root.starv = 2;
Frame 2437
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 2437
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2441
_root.starv = 1;
Frame 2442
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 2442
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2446
_root.starv = 2;
Frame 2447
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 2447
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2452
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 2452
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2457
_root.starv = 2;
Frame 2458
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 2458
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2462
_root.starv = 1;
Frame 2463
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 2463
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2467
_root.starv = 2;
Frame 2468
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 2468
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2472
_root.starv = 1;
Frame 2473
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 2473
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2478
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 2478
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2483
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 2483
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2488
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 2488
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2493
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 2493
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2498
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 2498
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2503
_root.starv = 1;
Frame 2504
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 2504
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2508
_root.starv = 2;
Frame 2509
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 2509
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2513
_root.starv = 1;
Frame 2514
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 2514
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2518
_root.starv = 2;
Frame 2519
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 2519
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2523
_root.starv = 1;
Frame 2524
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 2524
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2528
_root.starv = 2;
Frame 2529
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 2529
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2534
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 2534
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2539
_root.starv = 2;
Frame 2540
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 2540
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2544
_root.starv = 1;
Frame 2545
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 2545
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2549
_root.starv = 2;
Frame 2550
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 2550
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2554
_root.starv = 1;
Frame 2555
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 2555
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2559
_root.starv = 2;
Frame 2560
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 2560
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2564
_root.starv = 1;
Frame 2565
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 2565
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2570
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 2570
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2575
_root.starv = 1;
Frame 2576
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 2576
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2580
_root.starv = 2;
Frame 2581
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 2581
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2585
_root.starv = 1;
Frame 2586
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 2586
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2590
_root.starv = 2;
Frame 2591
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 2591
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2595
_root.starv = 1;
Frame 2596
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 2596
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2600
_root.starv = 2;
Frame 2602
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 2602
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2606
_root.starv = 1;
Frame 2607
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 2607
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2611
_root.starv = 2;
Frame 2612
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 2612
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2616
_root.starv = 1;
Frame 2617
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 2617
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2621
_root.starv = 2;
Frame 2622
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 2622
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2626
_root.starv = 1;
Frame 2627
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 2627
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2632
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 2632
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2637
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 2637
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2642
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 2642
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2647
_root.starv = 1;
Frame 2648
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 2648
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2652
_root.starv = 2;
Frame 2653
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 2653
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2657
_root.starv = 1;
Frame 2658
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 2658
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2662
_root.starv = 2;
Frame 2663
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 2663
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2667
_root.starv = 1;
Frame 2668
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 2668
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2672
_root.starv = 2;
Frame 2673
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 2673
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2677
_root.starv = 1;
Frame 2678
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 2678
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2682
_root.starv = 2;
Frame 2684
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 2684
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2688
_root.starv = 1;
Frame 2689
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 2689
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2693
_root.starv = 2;
Frame 2694
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 2694
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2698
_root.starv = 1;
Frame 2699
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 2699
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2703
_root.starv = 2;
Frame 2704
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 2704
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2708
_root.starv = 1;
Frame 2709
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 2709
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2713
_root.starv = 2;
Frame 2714
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 2714
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2718
_root.starv = 1;
Frame 2720
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 2720
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2724
_root.starv = 2;
Frame 2725
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 2725
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2729
_root.starv = 1;
Frame 2730
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 2730
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2734
_root.starv = 2;
Frame 2735
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 2735
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2739
_root.starv = 1;
Frame 2740
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 2740
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2744
_root.starv = 2;
Frame 2746
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 2746
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2749
_root.starv = 1;
Frame 2751
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 2751
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2754
_root.starv = 2;
Frame 2756
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 2756
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2760
_root.starv = 1;
Frame 2761
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 2761
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2765
_root.starv = 2;
Frame 2766
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 2766
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2770
_root.starv = 1;
Frame 2771
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 2771
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2775
_root.starv = 2;
Frame 2776
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 2776
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2780
_root.starv = 1;
Frame 2781
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 2781
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2786
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 2786
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2791
_root.starv = 1;
Frame 2792
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 2792
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2797
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 2797
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2802
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 2802
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2807
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 2807
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2812
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 2812
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2817
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 2817
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2822
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 2822
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2827
_root.starv = 2;
Frame 2828
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 2828
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2832
_root.starv = 1;
Frame 2833
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 2833
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2837
_root.starv = 2;
Frame 2838
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 2838
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2843
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 2843
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2848
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 2848
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2853
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 2853
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2858
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 2858
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2863
_root.starv = 1;
Frame 2864
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 2864
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2868
_root.starv = 2;
Frame 2869
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 2869
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2873
_root.starv = 1;
Frame 2874
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 2874
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2879
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 2879
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2884
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 2884
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2888
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 2888
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2889
_root.starv = 2;
Frame 2893
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 2893
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2894
_root.starv = 1;
Frame 2898
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 2898
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2899
_root.starv = 2;
Frame 2903
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 2903
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2904
_root.starv = 1;
Frame 2908
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 2908
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2909
_root.starv = 2;
Frame 2913
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 2913
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2915
_root.starv = 1;
Frame 2918
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 2918
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2920
_root.starv = 2;
Frame 2923
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 2923
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2925
_root.starv = 1;
Frame 2928
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 2928
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2930
_root.starv = 2;
Frame 2934
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 2934
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2935
_root.starv = 1;
Frame 2939
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 2939
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2941
_root.starv = 2;
Frame 2944
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 2944
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2946
_root.starv = 1;
Frame 2949
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 2949
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2954
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 2954
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2959
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 2959
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2964
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 2964
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2969
_root.starv = 2;
Frame 2970
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 2970
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2974
_root.starv = 1;
Frame 2975
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 2975
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2979
_root.starv = 2;
Frame 2980
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 2980
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2984
_root.starv = 1;
Frame 2985
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 2985
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2989
_root.starv = 2;
Frame 2990
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 2990
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 2995
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 2995
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3000
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 3000
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3005
_root.starv = 1;
Frame 3006
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 3006
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3010
_root.starv = 2;
Frame 3011
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 3011
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3015
_root.starv = 1;
Frame 3016
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 3016
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3020
_root.starv = 2;
Frame 3021
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 3021
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3025
_root.starv = 1;
Frame 3026
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 3026
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3031
_root.starv = 2;
Frame 3032
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 3032
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3036
_root.starv = 1;
Frame 3037
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 3037
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3041
_root.starv = 2;
Frame 3042
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 3042
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3046
_root.starv = 1;
Frame 3047
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 3047
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3051
_root.starv = 2;
Frame 3052
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 3052
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3056
_root.starv = 1;
Frame 3057
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 3057
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3061
_root.starv = 2;
Frame 3062
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 3062
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3067
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 3067
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3072
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 3072
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3077
_root.starv = 1;
Frame 3078
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 3078
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3082
_root.starv = 2;
Frame 3083
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 3083
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3087
_root.starv = 1;
Frame 3088
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 3088
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3093
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 3093
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3098
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 3098
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3103
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 3103
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3108
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 3108
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3113
_root.starv = 2;
Frame 3114
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 3114
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3118
_root.starv = 1;
Frame 3119
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 3119
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3123
_root.starv = 2;
Frame 3124
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 3124
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3128
_root.starv = 1;
Frame 3129
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 3129
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3133
_root.starv = 2;
Frame 3134
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 3134
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3138
_root.starv = 1;
Frame 3139
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 3139
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3143
_root.starv = 2;
Frame 3144
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 3144
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3149
_root.starv = 1;
Frame 3150
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 3150
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3154
_root.starv = 2;
Frame 3155
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 3155
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3159
_root.starv = 1;
Frame 3160
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 3160
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3164
_root.starv = 2;
Frame 3165
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 3165
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3169
_root.starv = 1;
Frame 3170
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 3170
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3174
_root.starv = 2;
Frame 3176
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 3176
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3179
_root.starv = 1;
Frame 3181
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 3181
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3185
_root.starv = 2;
Frame 3186
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 3186
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3190
_root.starv = 1;
Frame 3191
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 3191
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3195
_root.starv = 2;
Frame 3196
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 3196
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3200
_root.starv = 1;
Frame 3201
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 3201
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3205
_root.starv = 2;
Frame 3206
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 3206
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3210
_root.starv = 1;
Frame 3211
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 3211
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3215
_root.starv = 2;
Frame 3216
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 3216
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3221
_root.starv = 1;
Frame 3222
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 3222
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3226
_root.starv = 2;
Frame 3227
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 3227
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3231
_root.starv = 1;
Frame 3232
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 3232
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3236
_root.starv = 2;
Frame 3237
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 3237
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3241
_root.starv = 1;
Frame 3242
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 3242
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3247
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 3247
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3252
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 3252
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3258
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 3258
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3263
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 3263
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3268
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 3268
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3273
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 3273
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3278
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 3278
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3283
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 3283
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3288
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 3288
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3293
_root.starv = 1;
Frame 3294
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 3294
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3298
_root.starv = 2;
Frame 3299
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 3299
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3304
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 3304
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3309
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 3309
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3314
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 3314
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3319
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 3319
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3324
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 3324
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3329
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 3329
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3334
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 3334
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3339
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 3339
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3340
_root.starv = 2;
Frame 3344
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 3344
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3345
_root.starv = 1;
Frame 3349
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 3349
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3350
_root.starv = 2;
Frame 3354
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 3354
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3355
_root.starv = 1;
Frame 3359
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 3359
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3360
_root.starv = 2;
Frame 3365
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 3365
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3370
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 3370
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3375
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 3375
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3376
_root.starv = 1;
Frame 3380
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 3380
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3381
_root.starv = 2;
Frame 3385
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 3385
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3386
_root.starv = 1;
Frame 3390
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 3390
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3391
_root.starv = 2;
Frame 3395
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 3395
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3396
_root.starv = 1;
Frame 3401
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 3401
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3402
_root.starv = 2;
Frame 3406
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 3406
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3407
_root.starv = 1;
Frame 3411
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 3411
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3416
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 3416
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3421
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 3421
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3426
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 3426
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3431
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 3431
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3436
_root.starv = 1;
Frame 3437
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 3437
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3441
_root.starv = 2;
Frame 3442
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 3442
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3446
_root.starv = 1;
Frame 3447
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 3447
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3451
_root.starv = 2;
Frame 3452
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 3452
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3457
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 3457
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3462
_root.starv = 2;
Frame 3463
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 3463
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3467
_root.starv = 1;
Frame 3468
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 3468
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3472
_root.starv = 2;
Frame 3473
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 3473
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3477
_root.starv = 1;
Frame 3478
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 3478
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3482
_root.starv = 2;
Frame 3483
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 3483
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3487
_root.starv = 1;
Frame 3488
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 3488
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3493
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 3493
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3498
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 3498
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3503
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 3503
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3508
_root.starv = 1;
Frame 3509
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 3509
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3513
_root.starv = 2;
Frame 3514
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 3514
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3518
_root.starv = 1;
Frame 3519
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 3519
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3523
_root.starv = 2;
Frame 3524
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 3524
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3529
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 3529
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3534
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 3534
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3539
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 3539
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3544
_root.starv = 2;
Frame 3545
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 3545
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3549
_root.starv = 1;
Frame 3550
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 3550
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3555
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 3555
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3560
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 3560
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3565
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 3565
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3570
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 3570
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3575
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 3575
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3580
_root.starv = 1;
Frame 3581
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 3581
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3585
_root.starv = 2;
Frame 3586
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 3586
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3590
_root.starv = 1;
Frame 3591
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 3591
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3595
_root.starv = 2;
Frame 3596
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 3596
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3600
_root.starv = 1;
Frame 3601
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 3601
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3605
_root.starv = 2;
Frame 3607
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 3607
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3611
_root.starv = 1;
Frame 3612
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 3612
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3616
_root.starv = 2;
Frame 3617
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 3617
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3621
_root.starv = 1;
Frame 3622
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 3622
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3626
_root.starv = 2;
Frame 3627
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 3627
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3631
_root.starv = 1;
Frame 3632
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 3632
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3636
_root.starv = 2;
Frame 3637
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 3637
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3641
_root.starv = 1;
Frame 3642
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 3642
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3647
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 3647
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3652
_root.starv = 1;
Frame 3653
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 3653
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3657
_root.starv = 2;
Frame 3658
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 3658
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3662
_root.starv = 1;
Frame 3663
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 3663
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3667
_root.starv = 2;
Frame 3668
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 3668
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3673
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy50" in Frame 3673
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3678
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy51" in Frame 3678
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3683
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy52" in Frame 3683
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3688
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy53" in Frame 3689
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3693
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy54" in Frame 3694
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3698
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy80" in Frame 3699
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3703
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy81" in Frame 3704
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3708
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy82" in Frame 3709
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3713
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy83" in Frame 3714
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3718
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy84" in Frame 3719
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3724
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy85" in Frame 3725
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3729
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy86" in Frame 3730
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3734
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy87" in Frame 3735
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3739
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy88" in Frame 3740
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3744
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy89" in Frame 3745
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3749
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy58" in Frame 3750
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3754
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy59" in Frame 3755
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3760
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy60" in Frame 3760
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3765
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy61" in Frame 3765
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3770
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy62" in Frame 3770
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3775
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy63" in Frame 3775
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3780
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy64" in Frame 3780
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3785
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy65" in Frame 3785
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3790
_root.starv = 2;
Instance of Symbol 216 MovieClip "enemy66" in Frame 3790
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3796
_root.starv = 1;
Instance of Symbol 216 MovieClip "enemy46" in Frame 3796
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3801
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 3801
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3806
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 3806
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3811
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 3811
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3816
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 3816
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3821
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 3821
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3822
_root.starv = 2;
Frame 3826
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 3826
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3827
_root.starv = 1;
Frame 3832
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 3832
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3837
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 3837
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3842
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 3842
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3847
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 3847
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3852
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 3852
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3857
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 3857
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3862
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 3862
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3867
_root.starv = 1;
Frame 3868
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 3868
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3872
_root.starv = 2;
Frame 3873
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 3873
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3878
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 3878
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3883
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 3883
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3888
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 3888
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3893
_root.starv = 2;
Frame 3894
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 3894
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3898
_root.starv = 1;
Frame 3899
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 3899
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3903
_root.starv = 2;
Frame 3904
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 3904
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3908
_root.starv = 1;
Frame 3909
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 3909
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3914
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 3914
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3919
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 3919
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3924
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 3924
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3929
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 3929
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3934
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 3934
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3939
_root.starv = 1;
Frame 3940
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 3940
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3944
_root.starv = 2;
Frame 3945
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 3945
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3950
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 3950
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3955
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 3955
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3960
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 3960
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3965
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 3965
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3970
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 3970
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3976
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 3976
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3981
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 3981
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3986
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 3986
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3991
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 3991
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 3996
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 3996
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4001
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 4001
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4006
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 4006
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4011
_root.starv = 1;
Frame 4012
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 4012
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4016
_root.starv = 2;
Frame 4017
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 4017
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4021
_root.starv = 1;
Frame 4022
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 4022
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4026
_root.starv = 2;
Frame 4027
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 4027
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4032
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 4032
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4037
_root.starv = 2;
Frame 4038
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 4038
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4042
_root.starv = 1;
Frame 4043
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 4043
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4047
_root.starv = 2;
Frame 4048
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 4048
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4052
_root.starv = 1;
Frame 4053
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 4053
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4057
_root.starv = 2;
Frame 4058
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 4058
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4062
_root.starv = 1;
Frame 4063
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 4063
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4068
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 4068
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4073
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 4073
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4078
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 4078
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4083
_root.starv = 1;
Frame 4084
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 4084
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4088
_root.starv = 2;
Frame 4089
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 4089
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4093
_root.starv = 1;
Frame 4094
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 4094
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4098
_root.starv = 2;
Frame 4099
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 4099
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4104
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 4104
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4109
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 4109
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4114
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 4114
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4119
_root.starv = 2;
Frame 4120
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 4120
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4124
_root.starv = 1;
Frame 4125
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 4125
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4130
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 4130
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4135
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 4135
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4140
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 4140
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4145
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 4145
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4150
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 4150
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4155
_root.starv = 1;
Frame 4156
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 4156
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4160
_root.starv = 2;
Frame 4161
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 4161
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4165
_root.starv = 1;
Frame 4166
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 4166
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4170
_root.starv = 2;
Frame 4171
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 4171
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4175
_root.starv = 1;
Frame 4176
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 4176
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4180
_root.starv = 2;
Frame 4182
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 4182
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4186
_root.starv = 1;
Frame 4187
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 4187
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4191
_root.starv = 2;
Frame 4192
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 4192
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4196
_root.starv = 1;
Frame 4197
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 4197
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4201
_root.starv = 2;
Frame 4202
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 4202
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4206
_root.starv = 1;
Frame 4207
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 4207
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4211
_root.starv = 2;
Frame 4212
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 4212
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4216
_root.starv = 1;
Frame 4217
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 4217
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4222
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 4222
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4227
_root.starv = 1;
Frame 4228
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 4228
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4232
_root.starv = 2;
Frame 4233
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 4233
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4237
_root.starv = 1;
Frame 4238
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 4238
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4242
_root.starv = 2;
Frame 4243
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 4243
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4247
_root.starv = 1;
Frame 4248
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 4248
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4252
_root.starv = 2;
Frame 4253
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 4253
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4258
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 4258
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4263
_root.starv = 2;
Frame 4264
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 4264
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4268
_root.starv = 1;
Frame 4269
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 4269
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4273
_root.starv = 2;
Frame 4274
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 4274
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4278
_root.starv = 1;
Frame 4279
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 4279
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4284
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 4284
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4289
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 4289
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4294
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 4294
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4295
_root.starv = 2;
Frame 4300
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 4300
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4305
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 4305
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4310
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy87._x = _root.enemyx;
_root.enemy87._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy87" in Frame 4310
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4315
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy88._x = _root.enemyx;
_root.enemy88._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy88" in Frame 4315
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4320
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy89._x = _root.enemyx;
_root.enemy89._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy89" in Frame 4320
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4325
_root.starv = 2;
Frame 4326
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy58._x = _root.enemyx;
_root.enemy58._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy58" in Frame 4326
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4330
_root.starv = 1;
Frame 4331
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy59._x = _root.enemyx;
_root.enemy59._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy59" in Frame 4331
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4335
_root.starv = 2;
Frame 4336
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy60._x = _root.enemyx;
_root.enemy60._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy60" in Frame 4336
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4341
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy61._x = _root.enemyx;
_root.enemy61._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy61" in Frame 4341
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4346
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy62._x = _root.enemyx;
_root.enemy62._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy62" in Frame 4346
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4351
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy63._x = _root.enemyx;
_root.enemy63._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy63" in Frame 4351
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4356
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy64._x = _root.enemyx;
_root.enemy64._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy64" in Frame 4356
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4361
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy65._x = _root.enemyx;
_root.enemy65._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy65" in Frame 4361
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4366
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy66._x = _root.enemyx;
_root.enemy66._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy66" in Frame 4366
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4371
_root.starv = 1;
Frame 4372
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy46._x = _root.enemyx;
_root.enemy46._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy46" in Frame 4372
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4377
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy47._x = _root.enemyx;
_root.enemy47._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy47" in Frame 4377
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4382
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy48._x = _root.enemyx;
_root.enemy48._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy48" in Frame 4382
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4387
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy49._x = _root.enemyx;
_root.enemy49._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy49" in Frame 4387
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4392
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy50._x = _root.enemyx;
_root.enemy50._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy50" in Frame 4392
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4397
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy51._x = _root.enemyx;
_root.enemy51._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy51" in Frame 4397
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4402
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy52._x = _root.enemyx;
_root.enemy52._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy52" in Frame 4402
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4407
_root.starv = 2;
Frame 4408
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy53._x = _root.enemyx;
_root.enemy53._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy53" in Frame 4408
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4413
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy54._x = _root.enemyx;
_root.enemy54._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy54" in Frame 4413
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4418
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy80._x = _root.enemyx;
_root.enemy80._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy80" in Frame 4418
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4423
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy81._x = _root.enemyx;
_root.enemy81._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy81" in Frame 4423
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4428
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy82._x = _root.enemyx;
_root.enemy82._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy82" in Frame 4428
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4433
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy83._x = _root.enemyx;
_root.enemy83._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy83" in Frame 4433
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4438
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy84._x = _root.enemyx;
_root.enemy84._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy84" in Frame 4438
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4439
_root.starv = 2;
Frame 4444
_root.starv = 1;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy85._x = _root.enemyx;
_root.enemy85._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy85" in Frame 4444
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4449
_root.starv = 2;
_root.enemyspawn = Math.round(Math.random() * 4);
if (_root.enemyspawn == 4) {
_root.enemyspawn = 3;
}
if (_root.enemyspawn == 0) {
_root.enemyy = 0;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 1) {
_root.enemyy = 500;
_root.enemyx = Math.random() * 530;
}
if (_root.enemyspawn == 2) {
_root.enemyx = 530;
_root.enemyy = Math.random() * 500;
}
if (_root.enemyspawn == 3) {
_root.enemyx = 0;
_root.enemyy = Math.random() * 500;
}
_root.enemy86._x = _root.enemyx;
_root.enemy86._y = _root.enemyy;
Instance of Symbol 216 MovieClip "enemy86" in Frame 4449
onClipEvent (load) {
this.dead1 = 0;
this.deadcheck1 = 1;
}
onClipEvent (enterFrame) {
if (!this.dead1) {
b = 1000;
while (b < 1101) {
if (this.hitTest(_root["b" + b])) {
this.dead1 = 1;
_root["b" + b].removeMovieClip();
this.play();
this.deadcheck1 = 2;
_root.score = _root.score + 50;
}
b++;
}
}
if (this.hitTest(_root.strawberryb)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryc)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
if (this.hitTest(_root.strawberryd)) {
if (this.deadcheck1 == 1) {
this.play();
_root.life = _root.life - 10;
this.deadcheck1 = 2;
}
}
this._x = this._x + (((_root.xDest - this._x) * _root.speed) / 1000);
this._y = this._y + (((_root.yDest - this._y) * _root.speed) / 1000);
if (_root.canmove == false) {
this.x = this.x;
this.y = this.y;
_root.pausedtext.text = "PAUSED";
}
}
onClipEvent (unload) {
}
Frame 4454
gotoAndStop ("dead");
Frame 4584
stop();
_root.mstarv = 2;
Mouse.show();
Instance of Symbol 150 MovieClip "gun" in Frame 4584
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
updateAfterEvent();
}
Frame 4595
gotoAndStop ("hiscore");
getURL ("http://www.lantay77.com/clock_rhythm/highscores.html", "_blank");
Symbol 79 Button
on (press) {
getURL ("http://www.lantay77.com/", "_blank");
}
Symbol 88 Button
on (release) {
_root.play();
}
Symbol 90 MovieClip Frame 20
stop();
Symbol 101 Button
on (press) {
_root.gotoAndPlay("L1");
}
Symbol 103 Button
on (press) {
gotoAndStop (6);
}
Symbol 105 Button
on (press) {
gotoAndStop (8);
}
Symbol 107 Button
on (press) {
gotoAndStop (7);
}
Symbol 117 Button
on (press) {
_root.rpdv = 2;
gotoAndStop (2);
}
Symbol 119 Button
on (press) {
_root.rpdv = 1;
gotoAndStop (1);
}
Symbol 120 MovieClip Frame 1
stop();
Symbol 121 Button
on (press) {
_root.tsstv = 1;
gotoAndStop (2);
}
Symbol 122 Button
on (press) {
_root.tsstv = 2;
gotoAndStop (1);
_root.lin.gotoAndStop(2);
_root.sph.gotoAndStop(2);
}
Symbol 123 MovieClip Frame 2
stop();
Symbol 124 Button
on (press) {
_root.stksto = 1;
gotoAndStop (2);
_root.sph.gotoAndStop(1);
}
Symbol 125 Button
on (press) {
_root.stksto = 2;
gotoAndStop (1);
_root.sph.gotoAndStop(2);
_root.bkof.gotoAndStop(2);
}
Symbol 126 MovieClip Frame 1
stop();
Symbol 127 Button
on (press) {
_root.stksto = 1;
gotoAndStop (2);
_root.lin.gotoAndStop(1);
}
Symbol 128 Button
on (press) {
_root.stksto = 1;
gotoAndStop (1);
_root.lin.gotoAndStop(2);
_root.bkof.gotoAndStop(2);
}
Symbol 129 MovieClip Frame 2
stop();
Symbol 134 Button
on (press) {
_root.lifev = 3;
gotoAndStop (1);
_root.lvl.gotoAndStop(2);
_root.lvm.gotoAndStop(2);
}
Symbol 135 MovieClip Frame 2
stop();
Symbol 136 Button
on (press) {
_root.lifev = 2;
gotoAndStop (1);
_root.lvl.gotoAndStop(2);
_root.lvh.gotoAndStop(2);
}
Symbol 137 MovieClip Frame 1
stop();
Symbol 138 Button
on (press) {
_root.lifev = 1;
gotoAndStop (1);
_root.lvm.gotoAndStop(2);
_root.lvh.gotoAndStop(2);
}
Symbol 139 MovieClip Frame 2
stop();
Symbol 154 Button
on (press) {
gotoAndStop (5);
}
Symbol 191 Button
on (press) {
getURL ("http://www.lantay77.com/clock_rhythm/highscores.html", "_blank");
}
Symbol 192 MovieClip Frame 1
__top10_send__ = new LoadVars();
__top10_receive__ = new LoadVars();
__top10_url_1__ = "http://www.armorbot.com/flashcomm";
__top10_url_2__ = "/top10_b";
__top10_send__.hid = 1572;
__top10_send__.kid = "RXQSIQ";
__top10_send__.sendAndLoad(__top10_url_1__ + __top10_url_2__, __top10_receive__, "POST");
__top10_receive__.onLoad = function (success) {
if (success) {
i = 1;
while (i < 11) {
_root.hs1.hs2[("_name" + i) + "_"].text = __top10_receive__["name" + i];
_root.hs1.hs2[("_score" + i) + "_"].text = __top10_receive__["score" + i];
i++;
}
}
};
Symbol 215 MovieClip Frame 10
stop();
Symbol 216 MovieClip Frame 1
stop();
Symbol 216 MovieClip Frame 11
unloadMovie (this);
Symbol 217 MovieClip Frame 10
stop();
Symbol 217 MovieClip Frame 20
unloadMovie (this);
Symbol 224 Button
on (press) {
ab20_09 = new LoadVars();
ab20_09.z = nome;
ab20_09.x = score;
ab20_09.c = 1572;
ab20_09.v = "RXQSIQ";
ab20_09.sendAndLoad("http://armorbot.com/s_b", ab20_09, "POST");
play();
}
Symbol 230 Button
on (press) {
getURL ("http://www.armorbot.com", "_blank");
}