Frame 1
totalBytes = Math.round(getBytesTotal() / 1024);
loadedBytes = Math.round(getBytesLoaded() / 1024);
percentDone = Math.round((loadedBytes / totalBytes) * 100);
percentone = totalBytes / 100;
percent = Math.round(loadedBytes / percentone);
if (_root._framesloaded >= _root._totalframes) {
gotoAndStop (5);
}
Frame 2
gotoAndPlay (1);
Frame 5
stopAllSounds();
fscommand ("allowscale", false);
Frame 6
fscommand ("allowscale", false);
Frame 15
function move_wait() {
var _local1 = this;
if (amitavaplay == true) {
if (Key.isDown(Kleft)) {
_local1.bubMC._xscale = -100;
_local1.bubMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
_local1.bubMC._xscale = 100;
_local1.bubMC.gotoAndStop("walk");
}
}
}
function jump_wait() {
if (amitavaplay == true) {
if (Key.isDown(Kjump)) {
this.bubMC.gotoAndStop("jumpUp");
}
}
}
function fall_wait() {
var _local1 = this;
if (amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y, true)) {
_local1.bubMC.gotoAndStop("jumpDown");
}
}
}
function move_left(valueX) {
var _local1 = this;
var _local2 = valueX;
if (amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x - _local2) - 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x > 50) {
_local1.bubMC._x = _local1.bubMC._x - _local2;
}
if (_local1.stageMC._x < 998) {
_local1.stageMC._x = _local1.stageMC._x + _local2;
}
}
}
}
function move_right(valueX) {
var _local1 = this;
var _local2 = valueX;
if (amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x + _local2) + 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x < rlimit) {
_local1.bubMC._x = _local1.bubMC._x + _local2;
}
if (_local1.stageMC._x > -407) {
_local1.stageMC._x = _local1.stageMC._x - _local2;
rlimit = 300;
} else {
rlimit = 550;
}
}
}
}
function jump_down(valueY) {
var _local1 = this;
if (amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - 2, true)) {
_local1.bubMC._y = _local1.bubMC._y + valueY;
} else {
i = 1;
while (i <= 12) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - i, true)) {
_local1.bubMC._y = _local1.bubMC._y - (i - 3);
break;
}
i++;
}
_local1.bubMC.gotoAndStop("stand");
}
}
}
fscommand ("allowscale", false);
_quality = "high";
s = new Sound();
s.attachSound("bat");
b = new Sound();
b.attachSound("bite");
this.stageMC.limitMC._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 32;
walkSpeed = 2.5;
jumpHeight = 10;
jumpSpeed = 0.5;
fallSpeed = 5;
rlimit = 300;
var sco = 0;
var amitavalife = 6;
var amitavaplay = true;
var amitavaheart = 0;
var amitavalevel = 1;
Instance of Symbol 123 MovieClip "stageMC" in Frame 15
onClipEvent (load) {
function reset() {
_x = xpos;
}
xpos = _x;
}
onClipEvent (enterFrame) {
_root.peg = _x;
}
Instance of Symbol 178 MovieClip "bubMC" in Frame 15
onClipEvent (load) {
function reset() {
_x = xpos;
_y = ypos;
die = false;
}
this.gotoAndPlay(1);
xpos = _x;
ypos = _y;
die = false;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (this.hitTest(_root.dg)) {
if (die == false) {
_root.bubMC.gotoAndStop(6);
die = true;
}
}
}
}
Instance of Symbol 181 MovieClip "bat" in Frame 15
onClipEvent (load) {
sn = 1;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
if (sn == 1) {
_root.s.start();
sn = 0;
}
_x = (_x - 3);
st = false;
}
if (_x < -150) {
_x = 600;
_y = random(150);
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
sn = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Instance of Symbol 212 MovieClip "gov" in Frame 15
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavalife < 1) {
if (pl == 1) {
this.play();
pl = 0;
}
}
}
Frame 16
function move_wait() {
var _local1 = this;
if (_root.amitavaplay == true) {
if (Key.isDown(Kleft)) {
_local1.bubMC._xscale = -100;
_local1.bubMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
_local1.bubMC._xscale = 100;
_local1.bubMC.gotoAndStop("walk");
}
}
}
function jump_wait() {
if (_root.amitavaplay == true) {
if (Key.isDown(Kjump)) {
this.bubMC.gotoAndStop("jumpUp");
}
}
}
function fall_wait() {
var _local1 = this;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y, true)) {
_local1.bubMC.gotoAndStop("jumpDown");
}
}
}
function move_left(valueX) {
var _local1 = this;
var _local2 = valueX;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x - _local2) - 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x > 50) {
_local1.bubMC._x = _local1.bubMC._x - _local2;
}
if (_local1.stageMC._x < 998) {
_local1.stageMC._x = _local1.stageMC._x + _local2;
}
}
}
}
function move_right(valueX) {
var _local1 = this;
var _local2 = valueX;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x + _local2) + 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x < rlimit) {
_local1.bubMC._x = _local1.bubMC._x + _local2;
}
if (_local1.stageMC._x > -407) {
_local1.stageMC._x = _local1.stageMC._x - _local2;
rlimit = 300;
} else {
rlimit = 550;
}
}
}
}
function jump_down(valueY) {
var _local1 = this;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - 2, true)) {
_local1.bubMC._y = _local1.bubMC._y + valueY;
} else {
i = 1;
while (i <= 12) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - i, true)) {
_local1.bubMC._y = _local1.bubMC._y - (i - 3);
break;
}
i++;
}
_local1.bubMC.gotoAndStop("stand");
}
}
}
fscommand ("allowscale", false);
_quality = "high";
this.stageMC.limitMC._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 32;
walkSpeed = 2.5;
jumpHeight = 10;
jumpSpeed = 0.5;
fallSpeed = 5;
rlimit = 300;
var amitavaheart = 0;
Instance of Symbol 239 MovieClip "stageMC" in Frame 16
onClipEvent (load) {
function reset() {
_x = xpos;
}
xpos = _x;
}
onClipEvent (enterFrame) {
_root.peg = _x;
}
Instance of Symbol 181 MovieClip "bat" in Frame 16
onClipEvent (load) {
sn = 1;
att = false;
count = 0;
st = true;
rad = random(2000);
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
if (sn == 1) {
_root.s.start();
sn = 0;
}
_x = (_x - 3);
st = false;
}
if (_x < -150) {
_x = 600;
_y = random(150);
att = false;
count = 0;
st = true;
rad = random(2000);
hit = 1;
sn = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Frame 17
function move_wait() {
var _local1 = this;
if (_root.amitavaplay == true) {
if (Key.isDown(Kleft)) {
_local1.bubMC._xscale = -100;
_local1.bubMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
_local1.bubMC._xscale = 100;
_local1.bubMC.gotoAndStop("walk");
}
}
}
function jump_wait() {
if (_root.amitavaplay == true) {
if (Key.isDown(Kjump)) {
this.bubMC.gotoAndStop("jumpUp");
}
}
}
function fall_wait() {
var _local1 = this;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y, true)) {
_local1.bubMC.gotoAndStop("jumpDown");
}
}
}
function move_left(valueX) {
var _local1 = this;
var _local2 = valueX;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x - _local2) - 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x > 50) {
_local1.bubMC._x = _local1.bubMC._x - _local2;
}
if (_local1.stageMC._x < 1268) {
_local1.stageMC._x = _local1.stageMC._x + _local2;
}
}
}
}
function move_right(valueX) {
var _local1 = this;
var _local2 = valueX;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x + _local2) + 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x < rlimit) {
_local1.bubMC._x = _local1.bubMC._x + _local2;
}
if (_local1.stageMC._x > -407) {
_local1.stageMC._x = _local1.stageMC._x - _local2;
rlimit = 300;
} else {
rlimit = 550;
}
}
}
}
function jump_down(valueY) {
var _local1 = this;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - 2, true)) {
_local1.bubMC._y = _local1.bubMC._y + valueY;
} else {
i = 1;
while (i <= 12) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - i, true)) {
_local1.bubMC._y = _local1.bubMC._y - (i - 3);
break;
}
i++;
}
_local1.bubMC.gotoAndStop("stand");
}
}
}
fscommand ("allowscale", false);
_quality = "high";
this.stageMC.limitMC._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 32;
walkSpeed = 2.5;
jumpHeight = 10;
jumpSpeed = 0.5;
fallSpeed = 5;
rlimit = 300;
var amitavaheart = 0;
Instance of Symbol 243 MovieClip "stageMC" in Frame 17
onClipEvent (load) {
function reset() {
_x = xpos;
}
xpos = _x;
}
onClipEvent (enterFrame) {
_root.peg = _x;
}
Instance of Symbol 181 MovieClip "bat" in Frame 17
onClipEvent (load) {
sn = 1;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
if (sn == 1) {
_root.s.start();
sn = 0;
}
_x = (_x - 3);
st = false;
}
if (_x < -150) {
_x = 600;
_y = random(150);
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
sn = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Frame 18
function move_wait() {
var _local1 = this;
if (_root.amitavaplay == true) {
if (Key.isDown(Kleft)) {
_local1.bubMC._xscale = -100;
_local1.bubMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
_local1.bubMC._xscale = 100;
_local1.bubMC.gotoAndStop("walk");
}
}
}
function jump_wait() {
if (_root.amitavaplay == true) {
if (Key.isDown(Kjump)) {
this.bubMC.gotoAndStop("jumpUp");
}
}
}
function fall_wait() {
var _local1 = this;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y, true)) {
_local1.bubMC.gotoAndStop("jumpDown");
}
}
}
function move_left(valueX) {
var _local1 = this;
var _local2 = valueX;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x - _local2) - 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x > 50) {
_local1.bubMC._x = _local1.bubMC._x - _local2;
}
if (_local1.stageMC._x < 1207) {
_local1.stageMC._x = _local1.stageMC._x + _local2;
}
}
}
}
function move_right(valueX) {
var _local1 = this;
var _local2 = valueX;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x + _local2) + 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x < rlimit) {
_local1.bubMC._x = _local1.bubMC._x + _local2;
}
if (_local1.stageMC._x > -407) {
_local1.stageMC._x = _local1.stageMC._x - _local2;
rlimit = 250;
} else {
rlimit = 550;
}
}
}
}
function jump_down(valueY) {
var _local1 = this;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - 2, true)) {
_local1.bubMC._y = _local1.bubMC._y + valueY;
} else {
i = 1;
while (i <= 14) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - i, true)) {
_local1.bubMC._y = _local1.bubMC._y - (i - 3);
break;
}
i++;
}
_local1.bubMC.gotoAndStop("stand");
}
}
}
fscommand ("allowscale", false);
_quality = "high";
this.stageMC.limitMC._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 32;
walkSpeed = 2.5;
jumpHeight = 10;
jumpSpeed = 0.5;
fallSpeed = 5;
rlimit = 250;
var amitavaheart = 0;
Instance of Symbol 252 MovieClip "stageMC" in Frame 18
onClipEvent (load) {
function reset() {
_x = xpos;
}
xpos = _x;
}
onClipEvent (enterFrame) {
_root.peg = _x;
}
Instance of Symbol 181 MovieClip "bat" in Frame 18
onClipEvent (load) {
sn = 1;
att = false;
count = 0;
st = true;
rad = random(2000);
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
if (sn == 1) {
_root.s.start();
sn = 0;
}
_x = (_x - 3);
st = false;
}
if (_x < -150) {
_x = 600;
_y = random(150);
att = false;
count = 0;
st = true;
rad = random(2000);
hit = 1;
sn = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Frame 19
function move_wait() {
var _local1 = this;
if (_root.amitavaplay == true) {
if (Key.isDown(Kleft)) {
_local1.bubMC._xscale = -100;
_local1.bubMC.gotoAndStop("walk");
}
if (Key.isDown(Kright)) {
_local1.bubMC._xscale = 100;
_local1.bubMC.gotoAndStop("walk");
}
}
}
function jump_wait() {
if (_root.amitavaplay == true) {
if (Key.isDown(Kjump)) {
this.bubMC.gotoAndStop("jumpUp");
}
}
}
function fall_wait() {
var _local1 = this;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y, true)) {
_local1.bubMC.gotoAndStop("jumpDown");
}
}
}
function move_left(valueX) {
var _local1 = this;
var _local2 = valueX;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x - _local2) - 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x > 50) {
_local1.bubMC._x = _local1.bubMC._x - _local2;
}
if (_local1.stageMC._x < 998) {
_local1.stageMC._x = _local1.stageMC._x + _local2;
}
}
}
}
function move_right(valueX) {
var _local1 = this;
var _local2 = valueX;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest((_local1.bubMC._x + _local2) + 8, _local1.bubMC._y - 4, true)) {
if (_local1.bubMC._x < rlimit) {
_local1.bubMC._x = _local1.bubMC._x + _local2;
}
if (_local1.stageMC._x > -407) {
_local1.stageMC._x = _local1.stageMC._x - _local2;
rlimit = 300;
} else {
rlimit = 550;
}
}
}
}
function jump_down(valueY) {
var _local1 = this;
if (_root.amitavaplay == true) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - 2, true)) {
_local1.bubMC._y = _local1.bubMC._y + valueY;
} else {
i = 1;
while (i <= 12) {
if (!_local1.stageMC.limitMC.hitTest(_local1.bubMC._x, _local1.bubMC._y - i, true)) {
_local1.bubMC._y = _local1.bubMC._y - (i - 3);
break;
}
i++;
}
_local1.bubMC.gotoAndStop("stand");
}
}
}
fscommand ("allowscale", false);
_quality = "high";
this.stageMC.limitMC._visible = false;
Kleft = 37;
Kright = 39;
Kjump = 32;
walkSpeed = 2.5;
jumpHeight = 10;
jumpSpeed = 0.5;
fallSpeed = 5;
rlimit = 300;
var amitavaheart = 0;
Instance of Symbol 276 MovieClip "stageMC" in Frame 19
onClipEvent (load) {
function reset() {
_x = xpos;
}
xpos = _x;
}
onClipEvent (enterFrame) {
_root.peg = _x;
}
Instance of Symbol 181 MovieClip "bat" in Frame 19
onClipEvent (load) {
sn = 1;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
if (sn == 1) {
_root.s.start();
sn = 0;
}
_x = (_x - 3);
st = false;
}
if (_x < -150) {
_x = 600;
_y = random(150);
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
sn = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Symbol 12 MovieClip Frame 35
stop();
Symbol 15 MovieClip Frame 1
this._visible = false;
Symbol 19 MovieClip Frame 1
_root.stop();
Symbol 19 MovieClip Frame 3
xyb1 = _root.getBytesLoaded();
xyb2 = _root.getBytesTotal();
xytgFrame = Math.round((xyb1 / xyb2) * 100) + 1;
prelbar.gotoAndStop(xytgFrame);
Symbol 19 MovieClip Frame 5
if ((xyb1 >= xyb2) && (xyb2 > 50)) {
stop();
_root.play();
} else {
gotoAndPlay ("xloop1");
}
Symbol 22 Button
on (release) {
getURL ("http://dailyfreegames.com", "_blank");
}
Symbol 30 Button
on (press) {
gotoAndStop (6);
}
Symbol 36 MovieClip Frame 12
stop();
Symbol 37 Button
on (release) {
getURL ("http://www.dailyfreegames.com", "_blank");
}
Symbol 39 Button
on (release) {
getURL ("http://www.dailyfreegames.com/free-games.html", "_blank");
}
Symbol 48 Button
on (press) {
gotoAndStop (15);
}
Symbol 65 Button
on (press) {
gotoAndStop (5);
}
Instance of Symbol 90 MovieClip "br" in Symbol 91 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 105 MovieClip "br" in Symbol 106 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 105 MovieClip "br" in Symbol 107 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 118 MovieClip Frame 36
gotoAndPlay (1);
Symbol 122 MovieClip Frame 1
stop();
Symbol 122 MovieClip Frame 16
stop();
Instance of Symbol 91 MovieClip "we2" in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 100;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (att == true) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Instance of Symbol 106 MovieClip "re3" in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (this.br.hitTest(_root.bubMC.br) || (this.br.hitTest(_root.bubMC.br1) && (_root.bubMC.die == false))) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
}
Instance of Symbol 107 MovieClip "re1" in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 300;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
_xscale = -100;
}
if (lef == 1) {
_x = (_x - 1);
_xscale = 100;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
}
Instance of Symbol 107 MovieClip "re2" in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 300;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
}
if (dn == 1) {
_y = (_y + 1);
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
if (this.br.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 91 MovieClip "we3" in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 150;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if ((att = true)) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Instance of Symbol 91 MovieClip "we1" in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 40;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (att == true) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Instance of Symbol 118 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
_visible = false;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (_root.amitavaheart == 10) {
_visible = true;
}
if (this.hitTest(_root.bubMC) && (_root.amitavaheart == 10)) {
if (pl == 1) {
this.gotoAndPlay(37);
_root.sco = _root.sco + 200;
_root.amitavalevel = _root.amitavalevel + 1;
_root.bubMC.reset();
_root.gotoAndStop(16);
pl = 0;
}
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 123 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Symbol 167 MovieClip Frame 1
stop();
Symbol 173 MovieClip Frame 25
_parent.gotoAndStop(7);
Symbol 177 MovieClip Frame 20
_root.amitavalife = _root.amitavalife - 1;
Symbol 177 MovieClip Frame 55
_root.bubMC.reset();
_root.stageMC.reset();
_root.stageMC.re1.hit = 1;
_root.stageMC.re1.att = 1;
_root.stageMC.re2.hit = 1;
_root.stageMC.re2.att = 1;
_root.stageMC.re3.hit = 1;
_root.stageMC.re3.att = 1;
_root.stageMC.re4.hit = 1;
_root.stageMC.re4.att = 1;
_root.stageMC.we1.hit = 1;
_root.stageMC.we1.att = 1;
_root.stageMC.we2.hit = 1;
_root.stageMC.we2.att = 1;
_root.stageMC.we3.hit = 1;
_root.stageMC.we3.att = 1;
_parent.gotoAndStop(1);
Symbol 178 MovieClip Frame 1
this.gotoAndStop("jumpDown");
Instance of Symbol 166 MovieClip "br" in Symbol 178 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 166 MovieClip "br1" in Symbol 178 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 167 MovieClip in Symbol 178 MovieClip Frame 2
onClipEvent (enterFrame) {
_root.move_wait();
_root.jump_wait();
}
Instance of Symbol 167 MovieClip in Symbol 178 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_parent._xscale == 100) {
_root.move_right(_root.walkSpeed);
if (!Key.isDown(_root.Kright)) {
_parent.gotoAndStop("stand");
}
} else {
_root.move_left(_root.walkSpeed);
if (!Key.isDown(_root.Kleft)) {
_parent.gotoAndStop("stand");
}
}
_root.jump_wait();
_root.fall_wait();
}
Instance of Symbol 167 MovieClip in Symbol 178 MovieClip Frame 4
onClipEvent (load) {
jumpH = -_root.jumpHeight;
}
onClipEvent (enterFrame) {
_parent._y = _parent._y + jumpH;
jumpH = jumpH + _root.jumpSpeed;
if (jumpH >= 0) {
_parent.gotoAndStop("jumpDown");
}
if (Key.isDown(_root.Kright)) {
_parent._xscale = 100;
_root.move_right(_root.walkSpeed);
} else if (Key.isDown(_root.Kleft)) {
_parent._xscale = -100;
_root.move_left(_root.walkSpeed);
}
}
Instance of Symbol 167 MovieClip in Symbol 178 MovieClip Frame 5
onClipEvent (load) {
jumpH = 0;
}
onClipEvent (enterFrame) {
if (jumpH < _root.fallSpeed) {
jumpH = jumpH + _root.jumpSpeed;
}
_root.jump_down(jumpH);
if (Key.isDown(_root.Kright)) {
_parent._xscale = 100;
_root.move_right(_root.walkSpeed);
} else if (Key.isDown(_root.Kleft)) {
_parent._xscale = -100;
_root.move_left(_root.walkSpeed);
}
}
Instance of Symbol 105 MovieClip "br" in Symbol 181 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 190 Button
on (press) {
_root.gotoAndStop(5);
}
Symbol 195 MovieClip Frame 1
stop();
Symbol 195 MovieClip Frame 2
_root.amitavaplay = false;
Symbol 195 MovieClip Frame 9
stop();
stopAllSounds();
Symbol 206 Button
on (press) {
_root.gotoAndStop(5);
}
Symbol 212 MovieClip Frame 1
stop();
Symbol 212 MovieClip Frame 2
_root.amitavaplay = false;
Symbol 212 MovieClip Frame 10
stop();
stopAllSounds();
Instance of Symbol 219 MovieClip in Symbol 220 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 200;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
}
if (dn == 1) {
_y = (_y + 1);
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
}
Symbol 237 MovieClip Frame 2
_root.amitavalife = _root.amitavalife + 1;
Symbol 237 MovieClip Frame 24
stop();
Symbol 238 MovieClip Frame 1
stop();
Symbol 238 MovieClip Frame 2
stop();
Instance of Symbol 107 MovieClip "re2" in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 450;
att = true;
hit = 1;
count = 0;
st = true;
rad = random(1000);
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
_y = (_y - 1);
st = false;
}
if (_y < limitu) {
_y = ypos;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
}
Instance of Symbol 107 MovieClip "re3" in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 450;
att = true;
hit = 1;
count = 0;
st = true;
rad = random(1000);
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
_y = (_y - 1);
st = false;
}
if (_y < limitu) {
_y = ypos;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
}
Instance of Symbol 107 MovieClip "re4" in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 450;
att = true;
hit = 1;
count = 0;
st = true;
rad = random(1000);
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
_y = (_y - 1);
st = false;
}
if (_y < limitu) {
_y = ypos;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
}
Instance of Symbol 91 MovieClip "we1" in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 450;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
Instance of Symbol 91 MovieClip "we3" in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 100;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (att == true) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Instance of Symbol 238 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (this.hitTest(_root.bubMC)) {
if (pl == 1) {
this.gotoAndStop(2);
pl = 0;
}
}
}
}
Instance of Symbol 81 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 200;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._y = _root.bubMC._y - 1;
}
}
if (dn == 1) {
_y = (_y + 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._y = _root.bubMC._y + 1;
}
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
}
Instance of Symbol 107 MovieClip "re1" in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 600;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
_xscale = -100;
}
if (lef == 1) {
_x = (_x - 1);
_xscale = 100;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
}
Instance of Symbol 91 MovieClip "we2" in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 200;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (att == true) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 118 MovieClip in Symbol 239 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
_visible = false;
}
onClipEvent (enterFrame) {
if (_root.amitavaheart == 10) {
_visible = true;
}
if (this.hitTest(_root.bubMC) && (_root.amitavaheart == 10)) {
if (pl == 1) {
this.gotoAndPlay(37);
_root.sco = _root.sco + 200;
_root.amitavalevel = _root.amitavalevel + 1;
_root.bubMC.reset();
_root.gotoAndStop(17);
pl = 0;
}
}
}
Instance of Symbol 107 MovieClip "re2" in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 750;
att = false;
hit = 1;
count = 0;
st = true;
rad = random(1000);
}
onClipEvent (enterFrame) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
_y = (_y - 1);
st = false;
}
if (_y < limitu) {
_y = ypos;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 107 MovieClip "re3" in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 750;
att = false;
hit = 1;
count = 0;
st = true;
rad = random(1000);
}
onClipEvent (enterFrame) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
_y = (_y - 1);
st = false;
}
if (_y < limitu) {
_y = ypos;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 91 MovieClip "we1" in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 350;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
Instance of Symbol 91 MovieClip "we2" in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 200;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
Instance of Symbol 107 MovieClip "re1" in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 400;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
_xscale = -100;
}
if (lef == 1) {
_x = (_x - 1);
_xscale = 100;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 238 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC)) {
if (pl == 1) {
this.gotoAndStop(2);
pl = 0;
}
}
}
Instance of Symbol 107 MovieClip "re4" in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 400;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
_xscale = -100;
}
if (lef == 1) {
_x = (_x - 1);
_xscale = 100;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 118 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
_visible = false;
}
onClipEvent (enterFrame) {
if (_root.amitavaheart == 10) {
_visible = true;
}
if (this.hitTest(_root.bubMC) && (_root.amitavaheart == 10)) {
if (pl == 1) {
this.gotoAndPlay(37);
_root.sco = _root.sco + 200;
_root.amitavalevel = _root.amitavalevel + 1;
_root.bubMC.reset();
_root.gotoAndStop(18);
pl = 0;
}
}
}
Instance of Symbol 91 MovieClip "we3" in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 200;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 0.8);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.8);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 243 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 248 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 200;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._y = _root.bubMC._y - 1;
}
}
if (dn == 1) {
_y = (_y + 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._y = _root.bubMC._y + 1;
}
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
}
Instance of Symbol 250 MovieClip in Symbol 251 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 230;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
_xscale = -100;
}
if (lef == 1) {
_x = (_x - 1);
_xscale = 100;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 81 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 230;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._x = _root.bubMC._x + 1;
}
}
if (lef == 1) {
_x = (_x - 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._x = _root.bubMC._x - 1;
}
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
}
Instance of Symbol 81 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 200;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
}
if (dn == 1) {
_y = (_y + 1);
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
}
Instance of Symbol 107 MovieClip "re1" in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 400;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
_xscale = -100;
}
if (lef == 1) {
_x = (_x - 1);
_xscale = 100;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 107 MovieClip "re2" in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 300;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
}
if (dn == 1) {
_y = (_y + 1);
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 91 MovieClip "we3" in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 150;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if ((att = true)) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
Instance of Symbol 118 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
_visible = false;
}
onClipEvent (enterFrame) {
if (_root.amitavaheart == 10) {
_visible = true;
}
if (this.hitTest(_root.bubMC) && (_root.amitavaheart == 10)) {
if (pl == 1) {
this.gotoAndPlay(37);
_root.sco = _root.sco + 200;
_root.amitavalevel = _root.amitavalevel + 1;
_root.bubMC.reset();
_root.gotoAndStop(19);
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 252 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 258 MovieClip in Symbol 260 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 200;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._y = _root.bubMC._y - 1;
}
}
if (dn == 1) {
_y = (_y + 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._y = _root.bubMC._y + 1;
}
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
}
Instance of Symbol 259 MovieClip in Symbol 260 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 300;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
}
if (lef == 1) {
_x = (_x - 1);
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
}
Symbol 274 MovieClip Frame 32
stop();
Symbol 275 MovieClip Frame 1
stop();
Instance of Symbol 107 MovieClip "re3" in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 450;
att = true;
hit = 1;
count = 0;
st = true;
rad = random(1000);
}
onClipEvent (enterFrame) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
_y = (_y - 1);
st = false;
}
if (_y < limitu) {
_y = ypos;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 107 MovieClip "re4" in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 450;
att = true;
hit = 1;
count = 0;
st = true;
rad = random(1000);
}
onClipEvent (enterFrame) {
if (st == true) {
count = count + 1;
}
if (count > rad) {
att = true;
}
if (att == true) {
_y = (_y - 1);
st = false;
}
if (_y < limitu) {
_y = ypos;
att = false;
count = 0;
st = true;
rad = random(1000);
hit = 1;
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 107 MovieClip "re1" in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 300;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
_xscale = -100;
}
if (lef == 1) {
_x = (_x - 1);
_xscale = 100;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
Instance of Symbol 107 MovieClip "re2" in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 300;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
}
if (dn == 1) {
_y = (_y + 1);
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
_root.bubMC.die = true;
att = false;
hit = 0;
}
}
}
}
Instance of Symbol 91 MovieClip "we1" in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 300;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if ((att = true)) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
Instance of Symbol 91 MovieClip "we2" in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 150;
limitl = xpos;
ri = 1;
lef = 0;
hit = 1;
att = true;
}
onClipEvent (enterFrame) {
if ((att = true)) {
if (ri == 1) {
_x = (_x + 0.5);
_xscale = -50;
}
if (lef == 1) {
_x = (_x - 0.5);
_xscale = 50;
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
if (this.br.hitTest(_root.bubMC.br) && (_root.bubMC.die == false)) {
if (hit == 1) {
_root.b.start();
_root.bubMC.gotoAndStop(6);
att = false;
_root.bubMC.die = true;
hit = 0;
}
}
}
Instance of Symbol 81 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitu = ypos - 200;
limitd = ypos;
up = 1;
dn = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (up == 1) {
_y = (_y - 1);
}
if (dn == 1) {
_y = (_y + 1);
}
if (_y < limitu) {
up = 0;
dn = 1;
}
if (_y > limitd) {
up = 1;
dn = 0;
}
}
}
Instance of Symbol 81 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
xpos = _x;
ypos = _y;
limitr = xpos + 300;
limitl = xpos;
ri = 1;
lef = 0;
att = true;
hit = 1;
}
onClipEvent (enterFrame) {
if (att == true) {
if (ri == 1) {
_x = (_x + 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._x = _root.bubMC._x + 1;
}
}
if (lef == 1) {
_x = (_x - 1);
if (this.hitTest(_root.bubMC)) {
_root.bubMC._x = _root.bubMC._x - 1;
}
}
if (_x > limitr) {
ri = 0;
lef = 1;
}
if (_x < limitl) {
ri = 1;
lef = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 122 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.bubMC) && (_root.bubMC.die == false)) {
if (pl == 1) {
this.play();
_root.amitavaheart = _root.amitavaheart + 1;
pl = 0;
}
}
}
Instance of Symbol 275 MovieClip in Symbol 276 MovieClip Frame 1
onClipEvent (load) {
pl = 1;
_visible = false;
}
onClipEvent (enterFrame) {
if (_root.amitavaplay == true) {
if (_root.amitavaheart == 10) {
_visible = true;
this.gotoAndStop(2);
}
if (this.hitTest(_root.bubMC) && (_root.amitavaheart == 10)) {
if (pl == 1) {
_root.wel.play();
pl = 0;
}
}
}
}