Frame 1
stop();
stopAllSounds();
Frame 2
stop();
_root.hp = 5;
_root.vhp = 50;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 167 MovieClip "player" in Frame 2
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 2
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 221 MovieClip in Frame 2
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 2
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.jeep1.gotoAndStop("dead");
}
}
Instance of Symbol 223 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(3);
}
}
Frame 5
stop();
_root.vhp = 50;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 167 MovieClip "player" in Frame 5
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 5
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 221 MovieClip in Frame 5
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 5
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.jeep1.gotoAndStop("dead");
}
}
Instance of Symbol 223 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(6);
}
}
Frame 8
stop();
_root.vhp = 50;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 221 MovieClip in Frame 8
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 8
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.jeep1.gotoAndStop("dead");
}
}
Instance of Symbol 223 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(9);
}
}
Instance of Symbol 167 MovieClip "player" in Frame 8
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 8
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Frame 11
stop();
_root.vhp = 50;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 221 MovieClip in Frame 11
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 11
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.jeep1.gotoAndStop("dead");
}
}
Instance of Symbol 223 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(13);
}
}
Instance of Symbol 167 MovieClip "player" in Frame 11
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 11
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Frame 14
stop();
_root.vhp = 200;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 221 MovieClip in Frame 14
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 14
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.gotoAndPlay(17);
}
}
Instance of Symbol 223 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
}
}
Instance of Symbol 167 MovieClip "player" in Frame 14
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 14
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 280 MovieClip "boss" in Frame 14
onClipEvent (enterFrame) {
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 1;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 1;
}
}
}
Frame 15
stop();
stopAllSounds();
Frame 16
stop();
stopAllSounds();
Frame 17
stopAllSounds();
Frame 19
stop();
_root.hp = 5;
_root.vhp = 100;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 221 MovieClip in Frame 19
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 19
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.gotoAndPlay("win");
}
}
Instance of Symbol 223 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(20);
}
}
Instance of Symbol 167 MovieClip "player" in Frame 19
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 19
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Frame 22
stop();
_root.vhp = 100;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 221 MovieClip in Frame 22
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 22
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.gotoAndPlay("win");
}
}
Instance of Symbol 223 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(23);
}
}
Instance of Symbol 167 MovieClip "player" in Frame 22
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 22
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Frame 25
stop();
_root.vhp = 100;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 221 MovieClip in Frame 25
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 25
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.gotoAndPlay("win");
}
}
Instance of Symbol 223 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(26);
}
}
Instance of Symbol 167 MovieClip "player" in Frame 25
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 25
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Frame 28
stop();
_root.vhp = 100;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 221 MovieClip in Frame 28
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 28
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.gotoAndPlay("win");
}
}
Instance of Symbol 223 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(29);
}
}
Instance of Symbol 167 MovieClip "player" in Frame 28
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 28
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Frame 31
stop();
_root.vhp = 150;
player.gravity = 0;
platforms = 20;
player.xmove = 0;
xinc = 0;
xmax = 0;
onEnterFrame = function () {
i = 1;
while (i <= platforms) {
if (i == 1) {
player.hits = 0;
}
if (player.hitTest(_root["ground" + i])) {
player.hits++;
shield.hits++;
player._y = _root["ground" + i]._y;
shield._y = _root["ground" + i]._y;
}
i++;
}
if (player.hits > 0) {
if (Key.isDown(68)) {
player.gravity = -18;
shield.gravity = -18;
} else {
player.gravity = 0;
shield.gravity = 0;
}
} else {
player.gravity++;
shield.gravity++;
}
player.gravity++;
shield.gravity++;
player._y = player._y + player.gravity;
shield._y = shield._y + player.gravity;
if (Key.isDown(37) && (player.xmove > (-xmax))) {
player.xmove = player.xmove - xinc;
} else if (Key.isDown(39) && (player.xmove < xmax)) {
player.xmove = player.xmove + xinc;
} else {
player.xmove = player.xmove * 0.9;
}
player._x = player._x + player.xmove;
};
Instance of Symbol 221 MovieClip in Frame 31
onClipEvent (enterFrame) {
this._xscale = _root.hp;
if (_root.hp <= 0) {
_root.hp = 0;
_root.gotoAndStop("dead");
}
}
Instance of Symbol 221 MovieClip in Frame 31
onClipEvent (enterFrame) {
this._xscale = _root.vhp;
if (_root.vhp <= 0) {
_root.vhp = 0;
_root.gotoAndPlay("win");
}
}
Instance of Symbol 223 MovieClip in Frame 31
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x + 5;
}
}
Instance of Symbol 223 MovieClip in Frame 31
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = _root.player._x - 5;
_root.gotoAndPlay(13);
}
}
Instance of Symbol 167 MovieClip "player" in Frame 31
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
this.gotoAndStop(2);
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Instance of Symbol 203 MovieClip "shield" in Frame 31
onClipEvent (load) {
fight = false;
}
onClipEvent (enterFrame) {
if (fight == false) {
if (Key.isDown(37) && (fight != true)) {
this._x = this._x - 3;
this._xscale = -100;
} else if (Key.isDown(39) && (fight != true)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
if (this._currentframe == 1) {
fight = false;
}
}
Frame 32
stopAllSounds();
Frame 34
stop();
stopAllSounds();
Frame 35
stop();
stopAllSounds();
Symbol 2 MovieClip [bullet1] Frame 1
if (this.hitTest(_root.enemy1)) {
_root.enemy1.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.jeep1)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.jeep1._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jhitmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.jeep1._y;
BulletClip._x = _root.jeep1._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.boss)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.boss._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hitbmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.boss._y;
BulletClip._x = _root.boss._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.jboss)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.jboss._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jbosshit", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.jboss._y;
BulletClip._x = _root.jboss._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
Symbol 2 MovieClip [bullet1] Frame 2
if (this.hitTest(_root.enemy1)) {
_root.enemy1.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.jeep1)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.jeep1._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jhitmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.jeep1._y;
BulletClip._x = _root.jeep1._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.boss)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.boss._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hitbmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.boss._y;
BulletClip._x = _root.boss._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.jboss)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.jboss._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jbosshit", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.jboss._y;
BulletClip._x = _root.jboss._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
Symbol 2 MovieClip [bullet1] Frame 3
gotoAndPlay (1);
Symbol 2 MovieClip [bullet1] Frame 4
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hit1", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 4 MovieClip [bullet2] Frame 1
if (this.hitTest(_root.enemy1)) {
_root.enemy1.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.jeep1)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.jeep1._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jhitmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.jeep1._y;
BulletClip._x = _root.jeep1._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.boss)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.boss._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hitbmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.boss._y;
BulletClip._x = _root.boss._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
Symbol 4 MovieClip [bullet2] Frame 2
if (this.hitTest(_root.enemy1)) {
_root.enemy1.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.jeep1)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.jeep1._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jhitmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.jeep1._y;
BulletClip._x = _root.jeep1._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.boss)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.boss._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hitbmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.boss._y;
BulletClip._x = _root.boss._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
Symbol 4 MovieClip [bullet2] Frame 3
gotoAndPlay (1);
Symbol 4 MovieClip [bullet2] Frame 4
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hit2", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 6 MovieClip [bullet3] Frame 1
if (this.hitTest(_root.enemy1)) {
_root.enemy1.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.jeep1)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.jeep1._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jhitmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.jeep1._y;
BulletClip._x = _root.jeep1._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.boss)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.boss._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hitbmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.boss._y;
BulletClip._x = _root.boss._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
Symbol 6 MovieClip [bullet3] Frame 2
if (this.hitTest(_root.enemy1)) {
_root.enemy1.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.jeep1)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.jeep1._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jhitmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.jeep1._y;
BulletClip._x = _root.jeep1._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.boss)) {
_root.vhp = _root.vhp - (random(0) + 5);
this.gotoAndPlay("hit");
_root.boss._visible = false;
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hitbmc", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.boss._y;
BulletClip._x = _root.boss._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
if (this.hitTest(_root.enemy5)) {
_root.enemy5.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
Symbol 6 MovieClip [bullet3] Frame 3
gotoAndPlay (1);
Symbol 6 MovieClip [bullet3] Frame 4
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hit3", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 11 MovieClip [hit1] Frame 9
stop();
removeMovieClip(this);
Symbol 16 MovieClip [hit2] Frame 9
stop();
removeMovieClip(this);
Symbol 21 MovieClip [hit3] Frame 9
stop();
removeMovieClip(this);
Symbol 30 MovieClip [dead] Frame 40
stop();
removeMovieClip(this);
Symbol 34 MovieClip [missile] Frame 1
if (this.hitTest(_root.shield)) {
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.player)) {
_root.hp = _root.hp - (random(0) + 1);
this.gotoAndPlay("hit");
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hittester", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.player._y;
BulletClip._x = _root.player._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
Symbol 34 MovieClip [missile] Frame 2
if (this.hitTest(_root.shield)) {
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.player)) {
_root.hp = _root.hp - (random(0) + 1);
this.gotoAndPlay("hit");
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hittester", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.player._y;
BulletClip._x = _root.player._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
Symbol 34 MovieClip [missile] Frame 3
if (this.hitTest(_root.shield)) {
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.player)) {
_root.hp = _root.hp - (random(0) + 1);
this.gotoAndPlay("hit");
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hittester", "bullet1" + NextDepth, NextDepth);
BulletClip._y = _root.player._y;
BulletClip._x = _root.player._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
Symbol 34 MovieClip [missile] Frame 4
gotoAndPlay (1);
Symbol 34 MovieClip [missile] Frame 5
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("explosion", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 37 MovieClip [bullete] Frame 1
if (this.hitTest(_root.shield)) {
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.player)) {
_root.hp = _root.hp - (random(0) + 1);
this.gotoAndPlay("hit");
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hittester", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.player._y;
BulletClip._x = _root.player._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
Symbol 37 MovieClip [bullete] Frame 2
if (this.hitTest(_root.shield)) {
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.player)) {
_root.hp = _root.hp - (random(0) + 1);
this.gotoAndPlay("hit");
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hittester", "bullet1" + NextDepth, NextDepth);
BulletClip._y = _root.player._y;
BulletClip._x = _root.player._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
Symbol 37 MovieClip [bullete] Frame 3
gotoAndPlay (1);
Symbol 37 MovieClip [bullete] Frame 4
stop();
removeMovieClip(this);
Symbol 38 MovieClip [hittester] Frame 1
_root.shield.gotoAndPlay("2");
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 3
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 5
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 7
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 9
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 11
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 13
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 15
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 17
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 19
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 21
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 23
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 25
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 27
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 29
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 31
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 33
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 35
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 37
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 39
_root.player._visible = false;
Symbol 38 MovieClip [hittester] Frame 41
_root.player._visible = true;
Symbol 38 MovieClip [hittester] Frame 43
_root.player._visible = false;
_root.shield.gotoAndPlay("1");
Symbol 38 MovieClip [hittester] Frame 45
stop();
removeMovieClip(this);
_root.player._visible = true;
Symbol 46 MovieClip [mdead] Frame 31
stop();
removeMovieClip(this);
Symbol 48 MovieClip [jhitmc] Frame 2
stop();
_root.jeep1._visible = true;
removeMovieClip(this);
Symbol 65 MovieClip [explosion] Frame 16
stop();
removeMovieClip(this);
Symbol 67 MovieClip [jdead] Frame 33
stop();
removeMovieClip(this);
Symbol 69 MovieClip [seeker] Frame 1
if (this.hitTest(_root.shield)) {
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.player)) {
_root.hp = _root.hp - (random(0) + 1);
this.gotoAndPlay("hit");
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hittester", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.player._y;
BulletClip._x = _root.player._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 0.5;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 0.5;
}
}
ty = this._y;
my = _root.player._y;
ry = ty - my;
if (this.hitTest(_root.player)) {
} else {
if ((ry >= 1) && (ry < 3000)) {
this._y = this._y - 0.5;
}
if ((ry <= -1) && (ry > -3000)) {
this._y = this._y + 0.5;
}
}
Symbol 69 MovieClip [seeker] Frame 2
if (this.hitTest(_root.shield)) {
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.player)) {
_root.hp = _root.hp - (random(0) + 1);
this.gotoAndPlay("hit");
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("hittester", "bullet12" + NextDepth, NextDepth);
BulletClip._y = _root.player._y;
BulletClip._x = _root.player._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
}
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 0.5;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 0.5;
}
}
ty = this._y;
my = _root.player._y;
ry = ty - my;
if (this.hitTest(_root.player)) {
} else {
if ((ry >= 1) && (ry < 3000)) {
this._y = this._y - 0.5;
}
if ((ry <= -1) && (ry > -3000)) {
this._y = this._y + 0.5;
}
}
Symbol 69 MovieClip [seeker] Frame 3
gotoAndPlay (1);
Symbol 69 MovieClip [seeker] Frame 4
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("explosion", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 71 MovieClip [hitbmc] Frame 2
stop();
_root.boss._visible = true;
removeMovieClip(this);
Symbol 80 MovieClip [dead2] Frame 40
stop();
removeMovieClip(this);
Symbol 87 MovieClip [sdead] Frame 19
stop();
removeMovieClip(this);
Symbol 92 MovieClip [mindead] Frame 31
stop();
removeMovieClip(this);
Symbol 94 MovieClip [jbosshit] Frame 2
stop();
_root.jboss._visible = true;
removeMovieClip(this);
Symbol 100 Button
on (release) {
gotoAndPlay (2);
}
Symbol 107 Button
on (release) {
gotoAndPlay (34);
}
Symbol 109 Button
on (release) {
gotoAndPlay (35);
}
Symbol 157 MovieClip Frame 1
if (Key.isDown(65)) {
this.gotoAndPlay(5);
}
Symbol 157 MovieClip Frame 2
if (Key.isDown(65)) {
this.gotoAndPlay(5);
}
Symbol 157 MovieClip Frame 3
if (Key.isDown(65)) {
this.gotoAndPlay(5);
}
if (Key.isDown(38)) {
this.gotoAndPlay(14);
}
if (Key.isDown(40)) {
this.gotoAndPlay(39);
}
if (Key.isDown(83)) {
this.gotoAndPlay(52);
}
Symbol 157 MovieClip Frame 4
gotoAndPlay (1);
Symbol 157 MovieClip Frame 5
var scale = (_root.player._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullet1", "bullet1" + depth, depth);
BulletClip._y = _root.player._y - 13;
BulletClip._x = _root.player._x + (20 * scale);
BulletClip.speed = 10 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 157 MovieClip Frame 13
gotoAndPlay (1);
Symbol 157 MovieClip Frame 14
if (Key.isDown(65)) {
this.gotoAndPlay(18);
}
Symbol 157 MovieClip Frame 15
if (Key.isDown(65)) {
this.gotoAndPlay(18);
}
Symbol 157 MovieClip Frame 16
if (Key.isDown(40)) {
this.gotoAndPlay(1);
}
if (Key.isDown(65)) {
this.gotoAndPlay(18);
}
if (Key.isDown(38)) {
this.gotoAndPlay(26);
}
if (Key.isDown(83)) {
this.gotoAndPlay(52);
}
Symbol 157 MovieClip Frame 17
gotoAndPlay (14);
Symbol 157 MovieClip Frame 18
var scale = (_root.player._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullet2", "bullet1" + depth, depth);
BulletClip._y = _root.player._y - 30;
BulletClip._x = _root.player._x + (9 * scale);
BulletClip.speed = -5;
BulletClip.speed2 = 5 * scale;
BulletClip.onEnterFrame = function () {
this._y = this._y + this.speed;
this._x = this._x + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 157 MovieClip Frame 25
gotoAndPlay (14);
Symbol 157 MovieClip Frame 26
if (Key.isDown(65)) {
this.gotoAndPlay(30);
}
Symbol 157 MovieClip Frame 27
if (Key.isDown(65)) {
this.gotoAndPlay(30);
}
Symbol 157 MovieClip Frame 28
if (Key.isDown(40)) {
this.gotoAndPlay(14);
}
if (Key.isDown(65)) {
this.gotoAndPlay(30);
}
if (Key.isDown(83)) {
this.gotoAndPlay(52);
}
Symbol 157 MovieClip Frame 29
gotoAndPlay (26);
Symbol 157 MovieClip Frame 30
var scale = (_root.player._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullet3", "bullet1" + depth, depth);
BulletClip._y = _root.player._y - 37;
BulletClip._x = _root.player._x - (9 * scale);
BulletClip.speed = -10;
BulletClip.onEnterFrame = function () {
this._y = this._y + this.speed;
if (this._y > 400) {
this.removeMovieClip();
}
if (this._y < 0) {
this.removeMovieClip();
}
};
Symbol 157 MovieClip Frame 38
gotoAndPlay (26);
Symbol 157 MovieClip Frame 39
if (Key.isDown(65)) {
this.gotoAndPlay(43);
}
Symbol 157 MovieClip Frame 40
if (Key.isDown(65)) {
this.gotoAndPlay(43);
}
Symbol 157 MovieClip Frame 41
if (Key.isDown(38)) {
this.gotoAndPlay(1);
}
if (Key.isDown(65)) {
this.gotoAndPlay(43);
}
if (Key.isDown(83)) {
this.gotoAndPlay(61);
}
Symbol 157 MovieClip Frame 42
gotoAndPlay (39);
Symbol 157 MovieClip Frame 43
var scale = (_root.player._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullet1", "bullet1" + depth, depth);
BulletClip._y = _root.player._y - 5;
BulletClip._x = _root.player._x + (20 * scale);
BulletClip.speed = 10 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 157 MovieClip Frame 51
gotoAndPlay (39);
Symbol 157 MovieClip Frame 52
if (this.hitTest(_root.enemy5)) {
_root.enemy5.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
Symbol 157 MovieClip Frame 60
gotoAndPlay (1);
Symbol 157 MovieClip Frame 61
if (this.hitTest(_root.enemy5)) {
_root.enemy5.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy4)) {
_root.enemy4.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy1)) {
_root.enemy1.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy2)) {
_root.enemy2.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
if (this.hitTest(_root.enemy3)) {
_root.enemy3.gotoAndStop("dead");
this.gotoAndPlay("hit");
}
Symbol 157 MovieClip Frame 69
gotoAndPlay (39);
Symbol 194 MovieClip Frame 30
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 33
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 36
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 39
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 42
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 45
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 48
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 51
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 54
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 57
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 60
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 63
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 66
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 69
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 72
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 75
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 78
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 81
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 84
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 87
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 90
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 93
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 96
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 99
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 194 MovieClip Frame 108
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 28;
BulletClip._x = this._x + (24 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 194 MovieClip Frame 114
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 28;
BulletClip._x = this._x + (24 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 194 MovieClip Frame 120
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 28;
BulletClip._x = this._x + (24 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 194 MovieClip Frame 132
gotoAndPlay (30);
Symbol 194 MovieClip Frame 133
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("dead", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y - 15;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 201 MovieClip Frame 30
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 33
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 36
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 39
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 42
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 45
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 48
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 51
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 54
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 57
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 60
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 63
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 66
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 69
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 72
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 75
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 78
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 81
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 84
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 87
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 90
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 93
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 96
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 99
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 3;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 3;
this._xscale = 100;
}
}
Symbol 201 MovieClip Frame 108
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 20;
BulletClip._x = this._x + (24 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 201 MovieClip Frame 114
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 20;
BulletClip._x = this._x + (24 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 201 MovieClip Frame 120
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 20;
BulletClip._x = this._x + (24 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 201 MovieClip Frame 132
gotoAndPlay (30);
Symbol 201 MovieClip Frame 133
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("dead", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y - 15;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 203 MovieClip Frame 1
stop();
Symbol 203 MovieClip Frame 2
stop();
Symbol 218 MovieClip Frame 1
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 4
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 7
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 10
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 13
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 16
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 19
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 22
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 25
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 28
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 218 MovieClip Frame 43
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("missile", "bullet1" + depth, depth);
BulletClip._y = this._y - 20;
BulletClip._x = this._x + (24 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 218 MovieClip Frame 64
gotoAndPlay (1);
Symbol 218 MovieClip Frame 65
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("mdead", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y - 15;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 226 MovieClip Frame 1
_rotation = (_rotation + 15);
Symbol 234 MovieClip Frame 1
this._x = this._x + 3;
Symbol 234 MovieClip Frame 3
this._x = this._x + 3;
Symbol 234 MovieClip Frame 5
this._x = this._x + 3;
Symbol 234 MovieClip Frame 7
this._x = this._x + 3;
Symbol 234 MovieClip Frame 9
this._x = this._x + 3;
Symbol 234 MovieClip Frame 11
this._x = this._x + 3;
Symbol 234 MovieClip Frame 13
this._x = this._x + 3;
Symbol 234 MovieClip Frame 15
this._x = this._x + 3;
Symbol 234 MovieClip Frame 17
this._x = this._x + 3;
Symbol 234 MovieClip Frame 19
this._x = this._x + 3;
Symbol 234 MovieClip Frame 21
this._x = this._x + 3;
Symbol 234 MovieClip Frame 23
this._x = this._x + 3;
Symbol 234 MovieClip Frame 25
this._x = this._x + 3;
Symbol 234 MovieClip Frame 27
this._x = this._x + 3;
Symbol 234 MovieClip Frame 29
this._x = this._x + 3;
Symbol 234 MovieClip Frame 31
this._x = this._x + 3;
Symbol 234 MovieClip Frame 33
this._x = this._x + 3;
Symbol 234 MovieClip Frame 35
this._x = this._x + 3;
Symbol 234 MovieClip Frame 37
this._x = this._x + 3;
Symbol 234 MovieClip Frame 39
this._x = this._x + 3;
Symbol 234 MovieClip Frame 41
this._x = this._x + 3;
Symbol 234 MovieClip Frame 43
this._x = this._x + 3;
Symbol 234 MovieClip Frame 45
this._x = this._x + 3;
Symbol 234 MovieClip Frame 47
this._x = this._x + 3;
Symbol 234 MovieClip Frame 71
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 18;
BulletClip._x = this._x + (41 * scale);
BulletClip.speed = 5 * scale;
BulletClip.speed2 = 3 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 234 MovieClip Frame 77
gotoAndPlay (49);
Symbol 234 MovieClip Frame 78
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("jdead", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 279 MovieClip Frame 46
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("seeker", "bullet1" + depth, depth);
BulletClip._y = _root.boss._y - 20;
BulletClip._x = _root.boss._x + 24;
BulletClip.speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
if (this._t > 400) {
this.removeMovieClip();
}
if (this._y < 0) {
this.removeMovieClip();
}
};
Symbol 280 MovieClip Frame 1
stop();
Symbol 280 MovieClip Frame 2
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("bossdead", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 283 Button
on (release) {
gotoAndPlay (1);
}
Symbol 303 MovieClip Frame 37
stop();
Symbol 331 MovieClip Frame 28
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 331 MovieClip Frame 31
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 331 MovieClip Frame 34
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 331 MovieClip Frame 37
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 331 MovieClip Frame 40
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 331 MovieClip Frame 43
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 331 MovieClip Frame 46
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 331 MovieClip Frame 49
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 331 MovieClip Frame 55
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 14;
BulletClip._x = this._x + (15 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 331 MovieClip Frame 76
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 14;
BulletClip._x = this._x + (15 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 331 MovieClip Frame 91
gotoAndPlay (28);
Symbol 331 MovieClip Frame 92
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("dead2", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y - 1;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 337 MovieClip Frame 28
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 337 MovieClip Frame 31
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 337 MovieClip Frame 34
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 337 MovieClip Frame 37
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 337 MovieClip Frame 40
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 337 MovieClip Frame 43
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 337 MovieClip Frame 46
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 337 MovieClip Frame 49
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._x = this._x - 4;
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._x = this._x + 4;
this._xscale = 100;
}
}
Symbol 337 MovieClip Frame 55
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 8;
BulletClip._x = this._x + (11 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 337 MovieClip Frame 73
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 8;
BulletClip._x = this._x + (11 * scale);
BulletClip.speed = 5 * scale;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 337 MovieClip Frame 88
gotoAndPlay (28);
Symbol 337 MovieClip Frame 89
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("dead2", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y - 1;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 353 MovieClip Frame 1
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 353 MovieClip Frame 23
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y + 12;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 5 * scale;
BulletClip.speed2 = 5;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 353 MovieClip Frame 64
gotoAndPlay (1);
Symbol 353 MovieClip Frame 65
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("sdead", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y - 1;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 373 MovieClip Frame 1
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 4
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 7
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 10
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 13
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 16
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 19
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 22
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 25
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 28
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 31
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 34
tx = this._x;
mx = _root.player._x;
rx = tx - mx;
if (this.hitTest(_root.player)) {
this.gotoAndPlay("knife");
} else {
if ((rx >= 1) && (rx < 3000)) {
this._xscale = -100;
}
if ((rx <= -1) && (rx > -3000)) {
this._xscale = 100;
}
}
Symbol 373 MovieClip Frame 37
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.5;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 40
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.3;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 43
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -1.1;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 46
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.03;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 49
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 52
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.5;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 55
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.8;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 58
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.9;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 61
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -2.5;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 64
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.1;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 67
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.5;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 70
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.2;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 73
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -1.5;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 76
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -1.2;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 79
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -1.8;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 82
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -2;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 85
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -1.2;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 88
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.2;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 91
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -2;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 94
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -1.2;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 97
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.8;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 100
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y;
BulletClip._x = this._x + (21 * scale);
BulletClip.speed = 7.5 * scale;
BulletClip.speed2 = -0.5;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 373 MovieClip Frame 103
gotoAndPlay (1);
Symbol 373 MovieClip Frame 104
stop();
NextDepth = _root.getNextHighestDepth();
BulletClip = _root.attachMovie("mindead", "bullet1" + NextDepth, NextDepth);
BulletClip._y = this._y - 1;
BulletClip._x = this._x;
BulletClip.bullet1_speed = 0;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.bullet1_speed;
if (this._x > 550) {
this.removeMovieClip();
}
};
removeMovieClip(this);
Symbol 379 MovieClip Frame 1
_rotation = (_rotation - 10);
Symbol 398 MovieClip Frame 1
this._x = this._x - 3;
Symbol 398 MovieClip Frame 2
this._x = this._x - 3;
Symbol 398 MovieClip Frame 3
this._x = this._x - 3;
Symbol 398 MovieClip Frame 4
this._x = this._x - 3;
Symbol 398 MovieClip Frame 5
this._x = this._x - 3;
Symbol 398 MovieClip Frame 6
this._x = this._x - 3;
Symbol 398 MovieClip Frame 7
this._x = this._x - 3;
Symbol 398 MovieClip Frame 8
this._x = this._x - 3;
Symbol 398 MovieClip Frame 9
this._x = this._x - 3;
Symbol 398 MovieClip Frame 10
this._x = this._x - 3;
Symbol 398 MovieClip Frame 11
this._x = this._x - 3;
Symbol 398 MovieClip Frame 12
this._x = this._x - 3;
Symbol 398 MovieClip Frame 13
this._x = this._x - 3;
Symbol 398 MovieClip Frame 14
this._x = this._x - 3;
Symbol 398 MovieClip Frame 15
this._x = this._x - 3;
Symbol 398 MovieClip Frame 16
this._x = this._x - 3;
Symbol 398 MovieClip Frame 17
this._x = this._x - 3;
Symbol 398 MovieClip Frame 18
this._x = this._x - 3;
Symbol 398 MovieClip Frame 19
this._x = this._x - 3;
Symbol 398 MovieClip Frame 20
this._x = this._x - 3;
Symbol 398 MovieClip Frame 21
this._x = this._x - 3;
Symbol 398 MovieClip Frame 22
this._x = this._x - 3;
Symbol 398 MovieClip Frame 23
this._x = this._x - 3;
Symbol 398 MovieClip Frame 24
this._x = this._x - 3;
Symbol 398 MovieClip Frame 25
this._x = this._x - 3;
Symbol 398 MovieClip Frame 26
this._x = this._x - 3;
Symbol 398 MovieClip Frame 27
this._x = this._x - 3;
Symbol 398 MovieClip Frame 28
this._x = this._x - 3;
Symbol 398 MovieClip Frame 29
this._x = this._x - 3;
Symbol 398 MovieClip Frame 30
this._x = this._x - 3;
Symbol 398 MovieClip Frame 31
this._x = this._x - 3;
Symbol 398 MovieClip Frame 32
this._x = this._x - 3;
Symbol 398 MovieClip Frame 33
this._x = this._x - 3;
Symbol 398 MovieClip Frame 34
this._x = this._x - 3;
Symbol 398 MovieClip Frame 35
this._x = this._x - 3;
Symbol 398 MovieClip Frame 36
this._x = this._x - 3;
Symbol 398 MovieClip Frame 37
this._x = this._x - 3;
Symbol 398 MovieClip Frame 38
this._x = this._x - 3;
Symbol 398 MovieClip Frame 39
this._x = this._x - 3;
Symbol 398 MovieClip Frame 40
this._x = this._x - 3;
Symbol 398 MovieClip Frame 41
this._x = this._x - 3;
Symbol 398 MovieClip Frame 42
this._x = this._x - 3;
Symbol 398 MovieClip Frame 43
this._x = this._x - 3;
Symbol 398 MovieClip Frame 44
this._x = this._x - 3;
Symbol 398 MovieClip Frame 45
this._x = this._x - 3;
Symbol 398 MovieClip Frame 46
this._x = this._x - 3;
Symbol 398 MovieClip Frame 47
this._x = this._x - 3;
Symbol 398 MovieClip Frame 48
this._x = this._x - 1;
Symbol 398 MovieClip Frame 49
this._x = this._x - 1;
Symbol 398 MovieClip Frame 50
this._x = this._x - 1;
Symbol 398 MovieClip Frame 51
this._x = this._x - 1;
Symbol 398 MovieClip Frame 52
this._x = this._x - 1;
Symbol 398 MovieClip Frame 74
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 4;
BulletClip._x = this._x - 35;
BulletClip.speed = -15;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 398 MovieClip Frame 107
var scale = (this._xscale / 100);
var depth = _root.getNextHighestDepth();
var BulletClip = _root.attachMovie("bullete", "bullet1" + depth, depth);
BulletClip._y = this._y - 4;
BulletClip._x = this._x + 35;
BulletClip.speed = 15;
BulletClip.onEnterFrame = function () {
this._x = this._x + this.speed;
this._y = this._y + this.speed2;
if (this._x > 550) {
this.removeMovieClip();
}
if (this._x < 0) {
this.removeMovieClip();
}
};
Symbol 398 MovieClip Frame 140
gotoAndPlay (71);