Frame 924
gotoAndPlay (2);
Frame 1797
Frame 1798
stop();
score.text = 0;
health.text = 100;
var endlevel = 0;
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 285 MovieClip "gotak" in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
akSound = new Sound(this);
akSound.attachSound("gotak");
akSound.start(0, 1);
_root.gotgun = true;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 293 MovieClip in Frame 1798
onClipEvent (load) {
enemyspeed = 2;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 310 MovieClip "char" in Frame 1798
onClipEvent (load) {
jumping = false;
speed = 0;
healthX = _root.health._x;
scoreX = _root.score._x;
Xpos = this._x;
Ypos = this._y;
maxmove = 15;
_root.maxshoottime = 10;
}
onClipEvent (enterFrame) {
_x = (Xpos - _root._x);
_root.score._x = scoreX - _root._x;
_root.health._x = healthX - _root._x;
if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) {
this._y = this._y + 6;
}
if (!_root.shooting) {
_root.timer = 0;
_root.mvsp = _xscale / 2;
}
if (_root.dead) {
this.gotoAndStop("dead");
setTimeout(function () {
_root.GotoandStop("death");
}, 1000);
} else {
speed = speed * 0.85;
if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) {
_root.health._x = _root.health._x + speed;
_root.score._x = _root.score._x + speed;
this._x = this._x + speed;
_root._x = _root._x - speed;
}
if (speed > 0) {
dir = "right";
} else if (speed < 0) {
dir = "left";
}
if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) {
_root.health._x = _root.health._x + speed;
_root.score._x = _root.score._x + speed;
this._x = this._x + speed;
_root._x = _root._x - speed;
}
if (Key.isDown(37)) {
if (speed > (-maxmove)) {
speed--;
}
this.gotoAndStop("run");
this._xscale = -100;
} else if (Key.isDown(39)) {
if (speed < maxmove) {
speed++;
}
this._xscale = 100;
this.gotoAndStop("run");
} else if (Key.isDown(17)) {
this.gotoAndStop("attack");
attacking = true;
speed = 0;
} else if (Key.isDown(32)) {
if ((_root.gotgun == true) && (!_root.shooting)) {
_root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25});
_root.shooting = true;
with (_root.bulleter) {
onEnterFrame = function () {
var _local1 = _root;
if (_local1.timer > _local1.maxshoottime) {
_local1.shooting = false;
unloadMovie(this);
}
_local1.timer++;
_x = _x + _local1.mvsp;
};
}
attacking = true;
speed = 0;
this.gotoAndStop("shoot");
}
} else if (((speed < 1) && (speed > -1)) && (!attacking)) {
speed = 0;
this.gotoAndStop("idle");
}
if (Key.isDown(38) && (!jumping)) {
jumpSound = new Sound(this);
jumpSound.attachSound("jump");
jumpSound.start(0, 1);
jumping = true;
}
if (jumping) {
this.gotoAndStop("jump");
this._y = this._y - jump;
jump = jump - 0.5;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = -15;
}
}
if (_root.ground.hitTest(this._x, this._y, true) && (falling)) {
jump = 12;
jumping = false;
falling = false;
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 17) {
attacking = false;
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 293 MovieClip in Frame 1798
onClipEvent (load) {
enemyspeed = 2;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 1798
onClipEvent (load) {
enemyspeed = 2;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 1798
onClipEvent (load) {
enemyspeed = 2;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 283 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 1798
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
_root.GotoandStop("win");
unloadMovie (this);
}
}
Instance of Symbol 293 MovieClip in Frame 1798
onClipEvent (load) {
enemyspeed = 2;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 314 MovieClip in Frame 1798
onClipEvent (load) {
enemyspeed = 2;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
bosshealth = 120;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
if (bosshealth < 0) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
} else {
dieSound = new Sound(this);
dieSound.attachSound("headshot");
dieSound.start(0, 1);
bosshealth = bosshealth - 1;
}
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Frame 1799
_x = 0;
_y = 0;
dead = false;
stop();
Frame 1800
_x = 0;
_y = 0;
stop();
stopAllSounds();
Frame 2476
stop();
Frame 4537
stop();
score.text = 0;
health.text = 100;
var endlevel = 0;
Instance of Symbol 310 MovieClip "char" in Frame 4537
onClipEvent (load) {
jumping = false;
speed = 0;
healthX = _root.health._x;
scoreX = _root.score._x;
Xpos = this._x;
Ypos = this._y;
maxmove = 15;
_root.maxshoottime = 10;
}
onClipEvent (enterFrame) {
_x = (Xpos - _root._x);
_root.score._x = scoreX - _root._x;
_root.health._x = healthX - _root._x;
if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) {
this._y = this._y + 6;
}
if (!_root.shooting) {
_root.timer = 0;
_root.mvsp = _xscale / 2;
}
if (_root.dead) {
this.gotoAndStop("dead");
setTimeout(function () {
_root.GotoandStop("death2");
}, 1000);
} else {
speed = speed * 0.85;
if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) {
_root.health._x = _root.health._x + speed;
_root.score._x = _root.score._x + speed;
this._x = this._x + speed;
_root._x = _root._x - speed;
}
if (speed > 0) {
dir = "right";
} else if (speed < 0) {
dir = "left";
}
if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) {
_root.health._x = _root.health._x + speed;
_root.score._x = _root.score._x + speed;
this._x = this._x + speed;
_root._x = _root._x - speed;
}
if (Key.isDown(37)) {
if (speed > (-maxmove)) {
speed--;
}
this.gotoAndStop("run");
this._xscale = -100;
} else if (Key.isDown(39)) {
if (speed < maxmove) {
speed++;
}
this._xscale = 100;
this.gotoAndStop("run");
} else if (Key.isDown(17)) {
this.gotoAndStop("attack");
attacking = true;
speed = 0;
} else if (Key.isDown(32)) {
if ((_root.gotgun == true) && (!_root.shooting)) {
_root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25});
_root.shooting = true;
with (_root.bulleter) {
onEnterFrame = function () {
var _local1 = _root;
if (_local1.timer > _local1.maxshoottime) {
_local1.shooting = false;
unloadMovie(this);
}
_local1.timer++;
_x = _x + _local1.mvsp;
};
}
attacking = true;
speed = 0;
this.gotoAndStop("shoot");
}
} else if (((speed < 1) && (speed > -1)) && (!attacking)) {
speed = 0;
this.gotoAndStop("idle");
}
if (Key.isDown(38) && (!jumping)) {
jumpSound = new Sound(this);
jumpSound.attachSound("jump");
jumpSound.start(0, 1);
jumping = true;
}
if (jumping) {
this.gotoAndStop("jump");
this._y = this._y - jump;
jump = jump - 0.5;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = -15;
}
}
if (_root.ground.hitTest(this._x, this._y, true) && (falling)) {
jump = 12;
jumping = false;
falling = false;
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 17) {
attacking = false;
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 380 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
_root.GotoandStop("win2");
unloadMovie (this);
}
}
Instance of Symbol 285 MovieClip "gotak" in Frame 4537
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
akSound = new Sound(this);
akSound.attachSound("gotak");
akSound.start(0, 1);
_root.gotgun = true;
unloadMovie (this);
}
}
Instance of Symbol 293 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 2;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 386 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 4;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 386 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 386 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 386 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 386 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 4537
onClipEvent (load) {
enemyspeed = 6;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 27 MovieClip [boss] in Frame 4537
onClipEvent (load) {
enemyspeed = 4;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
bosshealth = 150;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
if (bosshealth < 0) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
} else {
dieSound = new Sound(this);
dieSound.attachSound("headshot");
dieSound.start(0, 1);
bosshealth = bosshealth - 1;
}
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._y = this._y + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._y = this._y - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Frame 4538
_x = 0;
_y = 0;
dead = false;
stop();
Frame 4539
_x = 0;
_y = 0;
stop();
stopAllSounds();
Frame 5528
stop();
Frame 7029
stop();
score.text = 0;
health.text = 100;
var endlevel = 0;
Instance of Symbol 285 MovieClip "gotak" in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
akSound = new Sound(this);
akSound.attachSound("gotak");
akSound.start(0, 1);
_root.gotgun = true;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 310 MovieClip "char" in Frame 7029
onClipEvent (load) {
jumping = false;
speed = 0;
healthX = _root.health._x;
scoreX = _root.score._x;
Xpos = this._x;
Ypos = this._y;
maxmove = 15;
_root.maxshoottime = 10;
}
onClipEvent (enterFrame) {
_x = (Xpos - _root._x);
_root.score._x = scoreX - _root._x;
_root.health._x = healthX - _root._x;
if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) {
this._y = this._y + 6;
}
if (!_root.shooting) {
_root.timer = 0;
_root.mvsp = _xscale / 2;
}
if (_root.dead) {
this.gotoAndStop("dead");
setTimeout(function () {
_root.GotoandStop("death3");
}, 1000);
} else {
speed = speed * 0.85;
if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) {
_root.health._x = _root.health._x + speed;
_root.score._x = _root.score._x + speed;
this._x = this._x + speed;
_root._x = _root._x - speed;
}
if (speed > 0) {
dir = "right";
} else if (speed < 0) {
dir = "left";
}
if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) {
_root.health._x = _root.health._x + speed;
_root.score._x = _root.score._x + speed;
this._x = this._x + speed;
_root._x = _root._x - speed;
}
if (Key.isDown(37)) {
if (speed > (-maxmove)) {
speed--;
}
this.gotoAndStop("run");
this._xscale = -100;
} else if (Key.isDown(39)) {
if (speed < maxmove) {
speed++;
}
this._xscale = 100;
this.gotoAndStop("run");
} else if (Key.isDown(17)) {
this.gotoAndStop("attack");
attacking = true;
speed = 0;
} else if (Key.isDown(32)) {
if ((_root.gotgun == true) && (!_root.shooting)) {
_root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25});
_root.shooting = true;
with (_root.bulleter) {
onEnterFrame = function () {
var _local1 = _root;
if (_local1.timer > _local1.maxshoottime) {
_local1.shooting = false;
unloadMovie(this);
}
_local1.timer++;
_x = _x + _local1.mvsp;
};
}
attacking = true;
speed = 0;
this.gotoAndStop("shoot");
}
} else if (((speed < 1) && (speed > -1)) && (!attacking)) {
speed = 0;
this.gotoAndStop("idle");
}
if (Key.isDown(38) && (!jumping)) {
jumpSound = new Sound(this);
jumpSound.attachSound("jump");
jumpSound.start(0, 1);
jumping = true;
}
if (jumping) {
this.gotoAndStop("jump");
this._y = this._y - jump;
jump = jump - 0.5;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = -15;
}
}
if (_root.ground.hitTest(this._x, this._y, true) && (falling)) {
jump = 12;
jumping = false;
falling = false;
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 17) {
attacking = false;
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 293 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 5;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 314 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 2;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
bosshealth = 120;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
if (bosshealth < 0) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
} else {
dieSound = new Sound(this);
dieSound.attachSound("headshot");
dieSound.start(0, 1);
bosshealth = bosshealth - 1;
}
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 440 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 6;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._yscale = -100;
this._y = this._y + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._yscale = 100;
this._y = this._y - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 440 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 6;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._yscale = -100;
this._y = this._y + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._yscale = 100;
this._y = this._y - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 440 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 6;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._yscale = -100;
this._y = this._y + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._yscale = 100;
this._y = this._y - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 440 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 6;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._yscale = -100;
this._y = this._y + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._yscale = 100;
this._y = this._y - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 8;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 8;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 8;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 8;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 8;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 8;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 390 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 8;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 293 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 5;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 5;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 5;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 440 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 6;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._yscale = -100;
this._y = this._y + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._yscale = 100;
this._y = this._y - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 5;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 5;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 5;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 293 MovieClip in Frame 7029
onClipEvent (load) {
enemyspeed = 5;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 14 MovieClip [boss3] in Frame 7029
onClipEvent (load) {
enemyspeed = 10;
enemystepsright = 0;
enemystepsleft = 0;
enemystepsup = 0;
enemystepsdown = 0;
enemydir = "left";
bosshealth = 175;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
if (bosshealth < 0) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
} else {
dieSound = new Sound(this);
dieSound.attachSound("headshot");
dieSound.start(0, 1);
bosshealth = bosshealth - 1;
}
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._x = this._x - enemyspeed;
} else if (enemydir == "up") {
enemystepsup = enemystepsup + 1;
this._y = this._y - enemyspeed;
} else if (enemydir == "down") {
enemystepsdown = enemystepsdown + 1;
this._y = this._y + enemyspeed;
}
if (enemystepsright == 20) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 20) {
enemystepsleft = 0;
enemydir = "up";
} else if (enemystepsup == 20) {
enemystepsup = 0;
enemydir = "down";
} else if (enemystepsdown == 20) {
enemystepsdown = 0;
enemydir = "right";
}
}
}
Instance of Symbol 287 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
_root.GotoandStop("win3");
unloadMovie (this);
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 7029
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Frame 7030
_x = 0;
_y = 0;
dead = false;
stop();
Frame 7031
_x = 0;
_y = 0;
stop();
stopAllSounds();
Frame 8820
stop();
Frame 10881
stop();
score.text = 0;
health.text = 100;
var endlevel = 0;
Instance of Symbol 285 MovieClip "gotak" in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
akSound = new Sound(this);
akSound.attachSound("gotak");
akSound.start(0, 1);
_root.gotgun = true;
unloadMovie (this);
}
}
Instance of Symbol 310 MovieClip "char" in Frame 10881
onClipEvent (load) {
jumping = false;
speed = 0;
healthX = _root.health._x;
scoreX = _root.score._x;
Xpos = this._x;
Ypos = this._y;
maxmove = 15;
_root.maxshoottime = 10;
}
onClipEvent (enterFrame) {
_x = (Xpos - _root._x);
_root.score._x = scoreX - _root._x;
_root.health._x = healthX - _root._x;
if ((!_root.ground.hitTest(this._x, this._y, true)) && (!jumping)) {
this._y = this._y + 6;
}
if (!_root.shooting) {
_root.timer = 0;
_root.mvsp = _xscale / 2;
}
if (_root.dead) {
this.gotoAndStop("dead");
setTimeout(function () {
_root.GotoandStop("death4");
}, 1000);
} else {
speed = speed * 0.85;
if ((dir == "right") && (!_root.leftblock.hitTest(this._x + 20, this._y, true))) {
_root.health._x = _root.health._x + speed;
_root.score._x = _root.score._x + speed;
this._x = this._x + speed;
_root._x = _root._x - speed;
}
if (speed > 0) {
dir = "right";
} else if (speed < 0) {
dir = "left";
}
if ((dir == "left") && (!_root.rightblock.hitTest(this._x - 20, this._y, true))) {
_root.health._x = _root.health._x + speed;
_root.score._x = _root.score._x + speed;
this._x = this._x + speed;
_root._x = _root._x - speed;
}
if (Key.isDown(37)) {
if (speed > (-maxmove)) {
speed--;
}
this.gotoAndStop("run");
this._xscale = -100;
} else if (Key.isDown(39)) {
if (speed < maxmove) {
speed++;
}
this._xscale = 100;
this.gotoAndStop("run");
} else if (Key.isDown(17)) {
this.gotoAndStop("attack");
attacking = true;
speed = 0;
} else if (Key.isDown(32)) {
if ((_root.gotgun == true) && (!_root.shooting)) {
_root.attachMovie("bullet", "bulleter", 1, {_x:_root.char._x, _y:_root.char._y - 25});
_root.shooting = true;
with (_root.bulleter) {
onEnterFrame = function () {
var _local1 = _root;
if (_local1.timer > _local1.maxshoottime) {
_local1.shooting = false;
unloadMovie(this);
}
_local1.timer++;
_x = _x + _local1.mvsp;
};
}
attacking = true;
speed = 0;
this.gotoAndStop("shoot");
}
} else if (((speed < 1) && (speed > -1)) && (!attacking)) {
speed = 0;
this.gotoAndStop("idle");
}
if (Key.isDown(38) && (!jumping)) {
jumpSound = new Sound(this);
jumpSound.attachSound("jump");
jumpSound.start(0, 1);
jumping = true;
}
if (jumping) {
this.gotoAndStop("jump");
this._y = this._y - jump;
jump = jump - 0.5;
if (jump < 0) {
falling = true;
}
if (jump < -15) {
jump = -15;
}
}
if (_root.ground.hitTest(this._x, this._y, true) && (falling)) {
jump = 12;
jumping = false;
falling = false;
}
}
}
onClipEvent (keyUp) {
if (Key.getCode() == 17) {
attacking = false;
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
unloadMovie (this);
}
}
Instance of Symbol 287 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
_root.GotoandStop("win");
unloadMovie (this);
}
}
Instance of Symbol 505 MovieClip in Frame 10881
onClipEvent (load) {
enemyspeed = 4;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 20) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 20) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 513 MovieClip in Frame 10881
onClipEvent (load) {
enemyspeed = 4;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
bosshealth = 200;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
unloadMovie (_root.bulleter);
}
if (this.hitTest(_root.bulleter)) {
if (bosshealth < 0) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
_root.gotoAndPlay("win4");
unloadMovie (_root.bullet);
} else {
dieSound = new Sound(this);
dieSound.attachSound("headshot");
dieSound.start(0, 1);
bosshealth = bosshealth - 1;
}
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._y = this._y + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._y = this._y - enemyspeed;
}
if (enemystepsright == 100) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 100) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 428 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
if (_root.health.text <= 0) {
_root.dead = true;
}
if (!_root.dead) {
_root._x = 0;
_root.health.text = _root.health.text - 5;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
}
}
}
Instance of Symbol 505 MovieClip in Frame 10881
onClipEvent (load) {
enemyspeed = 10;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._y = this._y + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._y = this._y - enemyspeed;
}
if (enemystepsright == 40) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 40) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 505 MovieClip in Frame 10881
onClipEvent (load) {
enemyspeed = 10;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._y = this._y - enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._y = this._y + enemyspeed;
}
if (enemystepsright == 40) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 40) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 505 MovieClip in Frame 10881
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x + enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x - enemyspeed;
}
if (enemystepsright == 150) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 150) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 505 MovieClip in Frame 10881
onClipEvent (load) {
enemyspeed = 3;
enemystepsright = 0;
enemystepsleft = 0;
enemydir = "left";
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.char.attackpoint)) {
enemyspeed = 0;
enemystepsright = 0;
enemystepsleft = 0;
dead = true;
this.gotoAndStop("dead");
}
if (this.hitTest(_root.bulleter)) {
}
if (this.hitTest(_root.char) && (!dead)) {
_root.char.jumping = false;
_root.dead = true;
}
if (!dead) {
if (enemydir == "right") {
enemystepsright = enemystepsright + 1;
this._xscale = -100;
this._x = this._x - enemyspeed;
} else if (enemydir == "left") {
enemystepsleft = enemystepsleft + 1;
this._xscale = 100;
this._x = this._x + enemyspeed;
}
if (enemystepsright == 150) {
enemystepsright = 0;
enemydir = "left";
} else if (enemystepsleft == 150) {
enemystepsleft = 0;
enemydir = "right";
}
}
}
Instance of Symbol 514 MovieClip in Frame 10881
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
rSound = new Sound(this);
rSound.attachSound("gotring");
rSound.start(0, 1);
_root.score.text++;
_root.GotoandPlay("disco");
}
}
Frame 10882
_x = 0;
_y = 0;
dead = false;
stop();
Frame 10883
_x = 0;
_y = 0;
stopAllSounds();
Instance of Symbol 519 MovieClip in Frame 10883
/* no clip actions */
Frame 10884
gotoAndPlay (10886);
Frame 10885
stopAllSounds();
gotoAndPlay (11061);
Frame 10886
unloadMovie (_root.bulleter);
stop();
Frame 11061
_x = 0;
_y = 0;
Frame 11762
gotoAndPlay (10881);
Symbol 14 MovieClip [boss3] Frame 1
stop();
Symbol 14 MovieClip [boss3] Frame 2
stop();
Symbol 27 MovieClip [boss] Frame 1
stop();
Symbol 27 MovieClip [boss] Frame 2
stop();
Symbol 60 Button
on (release) {
_root.play();
}
Symbol 63 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 63 MovieClip Frame 2
gotoAndPlay (1);
Symbol 165 Button
on (release) {
stopAllSounds();
gotoAndPlay (925);
}
Symbol 293 MovieClip Frame 1
stop();
Symbol 293 MovieClip Frame 2
stop();
Symbol 310 MovieClip Frame 1
stop();
Symbol 310 MovieClip Frame 2
stop();
Symbol 310 MovieClip Frame 3
stop();
Symbol 310 MovieClip Frame 4
stop();
Symbol 310 MovieClip Frame 5
stop();
Symbol 310 MovieClip Frame 6
stop();
Symbol 314 MovieClip Frame 1
stop();
Symbol 314 MovieClip Frame 2
stop();
Symbol 335 MovieClip Frame 1
stopAllSounds();
Symbol 339 Button
on (release) {
_root._x = 0;
_root.char._x = _root.char.startX;
_root.char._y = _root.char.startY + (Stage.height / 2);
_root.char.speed = 0;
_root.prevframe();
}
Symbol 362 MovieClip Frame 1
stopAllSounds();
Symbol 362 MovieClip Frame 376
stop();
Symbol 363 Button
on (release) {
gotoAndPlay (1801);
}
Symbol 371 MovieClip Frame 675
stop();
Symbol 372 Button
on (release) {
gotoAndPlay (4537);
}
Symbol 386 MovieClip Frame 1
stop();
Symbol 386 MovieClip Frame 2
stop();
Symbol 390 MovieClip Frame 1
stop();
Symbol 390 MovieClip Frame 2
stop();
Symbol 397 MovieClip Frame 1
stopAllSounds();
Symbol 397 MovieClip Frame 376
stop();
Symbol 398 Button
on (release) {
gotoAndPlay (4540);
}
Symbol 400 Button
on (release) {
gotoAndPlay (7029);
}
Symbol 419 Button
on (release) {
gotoAndPlay (7029);
}
Symbol 440 MovieClip Frame 1
stop();
Symbol 440 MovieClip Frame 2
stop();
Symbol 448 MovieClip Frame 1
stopAllSounds();
Symbol 448 MovieClip Frame 376
stop();
Symbol 449 Button
on (release) {
gotoAndPlay (7032);
}
Symbol 450 Button
on (release) {
gotoAndPlay (10881);
}
Symbol 489 Button
on (release) {
gotoAndPlay (10881);
}
Symbol 505 MovieClip Frame 1
stop();
Symbol 505 MovieClip Frame 2
stop();
Symbol 513 MovieClip Frame 1
stop();
Symbol 513 MovieClip Frame 2
stop();
Symbol 540 MovieClip Frame 7
stop();
Symbol 549 MovieClip Frame 1
stop();
Symbol 642 MovieClip Frame 1725
stop();