Frame 1 (3.01 KiB) ●
function createBox() {
currentBox = _root.attachMovie("enemy", "box" + boxArray.length, _root.getNextHighestDepth());
currentBox._x = random(620) - 50;
currentBox._y = 194;
boxArray.push(currentBox);
}
function createSprout() {
currentSprout = _root.attachMovie("sprout", "spr" + sproutArray.length, _root.getNextHighestDepth());
currentSprout._x = 620;
currentSprout._y = 294;
SproutArray.push(currentSprout);
}
function fireWeapon() {
if (reloadComplete && (mouseClicked)) {
var _local3 = _root.attachMovie("bullet1", "b" + _root.getNextHighestDepth(), _root.getNextHighestDepth());
_local3._x = char._x;
_local3._y = char._y;
_local3.bulletLifeTimer = 0;
randomNum = random(bulletOffset) - (bulletOffset / 2);
bulletAngle = (((char._rotation + randomNum) - 90) * Math.PI) / 180;
_local3.xSpeed = Math.cos(bulletAngle) * bulletSpeed;
_local3.ySpeed = Math.sin(bulletAngle) * bulletSpeed;
_local3.onEnterFrame = function () {
if (this._x >= 710) {
this.removeMovieClip();
}
this._rotation = rotationDirection;
if (flamethrower == true) {
cuttershot = false;
this.gotoAndStop(2);
} else if (cuttershot == true) {
flamethrower = false;
this.gotoAndStop(3);
}
while (ground.hitTest(this._x, this._y, true)) {
this.removeMovieClip();
}
if (life == 0) {
_root.target.removeMovieClip();
this.removeMovieClip();
}
this._x = this._x + this.xSpeed;
this._y = this._y + this.ySpeed;
if (this.bulletLifeTimer >= bulletLifeTimerTotal) {
this.removeMovieClip();
}
this.bulletLifeTimer++;
};
startReloading();
}
}
function startReloading() {
reloadComplete = false;
reloadTimer = setInterval(this, "gunReloaded", reloadSpeed);
}
function gunReloaded() {
clearInterval(reloadTimer);
reloadComplete = true;
}
function rotatePlayer() {
playerX = char._x;
playerY = char._y;
rotationDirection = Math.round(180 - ((Math.atan2(_root._xmouse - playerX, _root._ymouse - playerY) * 180) / Math.PI));
char._rotation = rotationDirection;
}
var bulletOffset = 0;
var bulletLifeTimerTotal = 30;
var bulletSpeed = 18;
var reloadSpeed = 120;
var bulletNumber = 1;
var reloadTimer;
var reloadComplete = true;
var bulletAngle;
var randomNum;
var playerX;
var playerY;
var rotationDirection;
var mouseClicked = false;
var dead = false;
var flamethrower = false;
var cuttershot = false;
var bullx = this._x;
var bully = this._y;
playerX = this._x;
playerY = this._y;
var ground = _root.ground;
var boxArray = [];
var sproutArray = [];
c = 0;
while (c < 1) {
d = 0;
while (d < 3) {
createBox();
d++;
}
c++;
}
mouseListener = new Object();
mouseListener.onMouseDown = function () {
mouseClicked = true;
};
mouseListener.onMouseUp = function () {
mouseClicked = false;
};
mouseListener.onMouseMove = function () {
rotatePlayer();
};
_root.onEnterFrame = function () {
fireWeapon();
rotatePlayer();
updateBullets();
};
Mouse.addListener(mouseListener);
Instance of Symbol 243 MovieClip "lifebar" in Frame 1 (163 B)
onClipEvent (enterFrame) {
this._xscale = _root.life * 1;
if (_root.life < 0) {
unloadMovie (_root.hero);
unloadMovie (_root.char);
_root.life = 0;
}
}
Instance of Symbol 248 MovieClip "hero" in Frame 1 (1.22 KiB) ●
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 0.8;
var speed = 8;
var maxJump = -17;
var touchingGround = false;
}
onClipEvent (enterFrame) {
if (this._x >= 550) {
this._x = 549;
_root.ground._x = _root.ground._x - speed;
_root._root.bg._x = _root._root.bg._x - 0.4;
}
if (this._x <= 150) {
this._x = 151;
_root.ground._x = _root.ground._x + speed;
_root.bg._x = _root.bg._x + 0.4;
}
_root.char._x = this._x;
_root.char._y = this._y - 40;
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (Key.isDown(68)) {
_root.char._xscale = 100;
this._xscale = 100;
_x = (_x + speed);
}
if (Key.isDown(65)) {
_root.char._xscale = -100;
this._xscale = -100;
_x = (_x - speed);
}
if (Key.isDown(87) && (touchingGround)) {
grav = maxJump;
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
if (ground.hitTest(_x, _y - _height, true)) {
grav = 3;
}
}
Instance of Symbol 243 MovieClip "bulletbar" in Frame 1 (165 B)
onClipEvent (enterFrame) {
this._xscale = _root.bull * 1;
if (_root.life < 0) {
unloadMovie (_root.bullet);
unloadMovie (_root.char);
_root.bull = 0;
}
}
Instance of Symbol 258 MovieClip in Frame 1 (178 B)
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (enterFrame) {
_x = _root._xmouse;
_y = _root._ymouse;
updateAfterEvent();
this.swapDepths(_root.getNextHighestDepth());
}
Symbol 15 MovieClip Frame 6 (21 B)
_parent.prevFrame();
Symbol 16 MovieClip [sprout] Frame 1 (8 B)
stop();
Symbol 31 MovieClip Frame 6 (21 B)
_parent.prevFrame();
Symbol 32 MovieClip [sprout1] Frame 1 (8 B)
stop();
Symbol 44 MovieClip [dia_explode] Frame 10 (33 B)
this.removeMovieClip();
stop();
Symbol 45 MovieClip [bullet_explode] Frame 20 (44 B)
_parent._parent.removeMovieClip();
stop();
Symbol 60 MovieClip Frame 53 (44 B)
stop();
_parent._parent.removeMovieClip();
Symbol 66 MovieClip Frame 1 (184 B)
var ySp = 1;
var xSp = 1;
var fall = 29;
var gravi = ((this.gravi = random(1) - 0.85));
var explode = function () {
this._rotation = this.rota;
};
this.rota = random(50) - 20;
Symbol 66 MovieClip Frame 16 (8 B)
stop();
Symbol 67 MovieClip Frame 1 (39 B)
stop();
this.gotoAndStop(random(11));
Symbol 69 MovieClip Frame 1 (384 B)
var ySp = 1;
var xSp = 1;
var fall = 29;
var gravi = ((this.gravi = random(1) - 0.85));
var explode = function () {
this._x = this._x + this.xSp;
this.ySp = this.ySp - gravi;
this._y = this._y + this.ySp;
this._rotation = this._rotation + this.rota;
};
this.xSp = random(21) - 10;
this.ySp = random(22) - 15;
this.rota = random(50) - 20;
this.onEnterFrame = explode;
Symbol 73 MovieClip Frame 10 (8 B)
stop();
Symbol 84 MovieClip Frame 1 (391 B)
var fall = 6;
var gravi = ((this.gravi = random(1) - 0.55));
var explode = function () {
this._x = this._x + this.xSp;
this.ySp = this.ySp - gravi;
this._y = this._y + this.ySp;
this._rotation = this._rotation + this.rota;
};
this.xSp = random(20) - 10;
this.ySp = random(20) - 15;
this.rota = random(50) - 20;
this.onEnterFrame = explode;
stop();
gotoAndStop(random(11));
Symbol 97 MovieClip Frame 1 (380 B)
gotoAndStop(random(6));
var fall = 2;
var gravi = ((this.gravi = random(0.5) - 0.5));
var explode = function () {
this._x = this._x + this.xSp;
this.ySp = this.ySp - gravi;
this._y = this._y + this.ySp;
this._rotation = this._rotation + this.rota;
};
this.xSp = random(10) - 5;
this.ySp = random(18) - 14;
this.rota = random(50) - 20;
this.onEnterFrame = explode;
Symbol 100 MovieClip Frame 1 (528 B)
var counter = 500;
counter--;
this.onEnterFrame == function () {
counter--;
if (counter <= 0) {
this.removeMovieClip();
}
};
this.gotoAndStop(random(11));
var fall = 6;
var gravi = ((this.gravi = random(1) - 0.55));
var explode = function () {
this._x = this._x + this.xSp;
this.ySp = this.ySp - gravi;
this._y = this._y + this.ySp;
this._rotation = this._rotation + this.rota;
};
this.xSp = random(20) - 10;
this.ySp = random(20) - 15;
this.rota = random(50) - 20;
this.onEnterFrame = explode;
Symbol 100 MovieClip Frame 2 (8 B)
stop();
Symbol 101 MovieClip Frame 55 (27 B)
_parent.removeMovieClip();
Symbol 102 MovieClip Frame 39 (36 B)
stop();
_parent.removeMovieClip();
Symbol 103 MovieClip Frame 1 (33 B)
stop();
gotoAndStop(random(5));
Symbol 116 MovieClip Frame 1 (278 B)
var fall = 2;
var gravi = ((this.gravi = random(0.3) - 0.1));
var explode = function () {
this._x = this._x + this.xSp;
this.ySp = this.ySp - gravi;
this._y = this._y + this.ySp;
};
this.xSp = random(10) - 5;
this.ySp = random(45) - 10;
this.onEnterFrame = explode;
Symbol 116 MovieClip Frame 23 (288 B)
var fall = 2;
var gravi = ((this.gravi = random(0.3) - 0.1));
var explode = function () {
this._x = this._x + this.xSp;
this.ySp = this.ySp - gravi;
this._y = this._y + this.ySp;
};
this.xSp = random(10) - 5;
this.ySp = random(45) - 10;
this.onEnterFrame = explode;
stop();
Symbol 117 MovieClip Frame 51 (44 B)
stop();
_parent._parent.removeMovieClip();
Symbol 170 MovieClip Frame 1 (19 B)
this._alpha = "0";
Symbol 170 MovieClip Frame 50 (47 B)
this._alpha = "0";
_parent.removeMovieClip();
Symbol 171 MovieClip Frame 55 (18 B)
stop();
stop();
Symbol 172 MovieClip Frame 1 (33 B)
stop();
gotoAndStop(random(5));
Symbol 172 MovieClip Frame 2 (8 B)
stop();
Symbol 172 MovieClip Frame 3 (8 B)
stop();
Symbol 173 MovieClip [enemy] Frame 1 (1.16 KiB) ●
stop();
var ground = _root.ground;
var grav = 0;
var gravity = 1;
var speed = 2;
var maxJump = -12;
var touchingGround = false;
onEnterFrame = function () {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
};
var ground = _root.ground;
var grav = 0;
var gravity = 1;
var speed = 7;
var maxJump = -18;
var touchingGround = false;
onEnterFrame = function () {
_y = (_y + grav);
grav = grav + gravity;
while (ground.hitTest(_x, _y, true)) {
_y = (_y - gravity);
grav = 0;
}
if (ground.hitTest(_x, _y + 5, true)) {
touchingGround = true;
} else {
touchingGround = false;
}
if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) {
_x = (_x - speed);
}
if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) {
_x = (_x + speed);
}
};
Instance of Symbol 32 MovieClip [sprout1] "sprout_main" in Symbol 173 MovieClip [enemy] Frame 1 (543 B)
onClipEvent (load) {
var mspeed = 1;
var ground = _root.ground;
var grav = 0;
var gravity = 1;
var speed = 7;
var maxJump = -18;
var touchingGround = false;
}
onClipEvent (enterFrame) {
if (_parent._x > _root.hero._x) {
_parent._xscale = 100;
_parent._x = _parent._x - mspeed;
}
if (_parent._x < _root.hero._x) {
_parent._xscale = -100;
_parent._x = _parent._x + mspeed;
}
if (_parent._x > _root.hero._x) {
_parent._x = _parent._x - 1;
}
if (_parent._x < _root.hero._x) {
_parent._x = _parent._x + 1;
}
}
Instance of Symbol 34 MovieClip [box_alive] "box_alive" in Symbol 173 MovieClip [enemy] Frame 1 (192 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.life = _root.life - 1;
_root.lifebar.nextFrame();
_root.hero._x = _root.hero._x - 5;
_parent._x = _parent._x + 7;
}
}
Instance of Symbol 34 MovieClip [box_alive] "box_alive" in Symbol 173 MovieClip [enemy] Frame 1 (192 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.life = _root.life - 1;
_root.lifebar.nextFrame();
_root.hero._x = _root.hero._x + 5;
_parent._x = _parent._x - 7;
}
}
Instance of Symbol 34 MovieClip [box_alive] "box_alive" in Symbol 173 MovieClip [enemy] Frame 2 (161 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.life = _root.life - 1;
_root.lifebar.nextFrame();
_root.hero._x = _root.hero._x - 5;
}
}
Symbol 189 MovieClip Frame 1 (24 B)
gotoAndStop(random(3));
Symbol 190 MovieClip [particle] Frame 1 (278 B)
var fall = 3;
var gravi = ((this.gravi = random(0.3) - 0.1));
var explode = function () {
this._x = this._x + this.xSp;
this.ySp = this.ySp - gravi;
this._y = this._y + this.ySp;
};
this.xSp = random(10) - 5;
this.ySp = random(45) - 10;
this.onEnterFrame = explode;
Instance of Symbol 189 MovieClip in Symbol 190 MovieClip [particle] Frame 1 (152 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.ground._x, _y)) {
_parent.rota = 0;
_parent.gravi = 1;
_parent.xSp = 0;
_parent.ySp = 0;
}
}
Symbol 191 MovieClip [particle_explode] Frame 70 (8 B)
stop();
Symbol 195 MovieClip Frame 1 (8 B)
stop();
Symbol 200 MovieClip Frame 1 (19 B)
this._alpha = "0";
Symbol 203 MovieClip Frame 28 (8 B)
stop();
Symbol 208 MovieClip [bullet1] Frame 1 (8 B)
stop();
Instance of Symbol 195 MovieClip in Symbol 208 MovieClip [bullet1] Frame 1 (1.72 KiB) ●
onClipEvent (enterFrame) {
c = 0;
while (c < _root.boxArray.length) {
if (this.shot.hitTest(_root["box" + c].box_alive)) {
_root.boxArray[c].sprout_main.nextFrame();
_root.boxArray[c].nextFrame();
removeMovieClip(_parent);
}
c++;
}
if (this.shot.hitTest(_root.ground.crate.crate_alive)) {
_root.ground.crate.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate2.crate_alive)) {
_root.ground.crate2.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate3.crate_alive)) {
_root.ground.crate3.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate4.crate_alive)) {
_root.ground.crate4.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate5.crate_alive)) {
_root.ground.crate5.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate6.crate_alive)) {
_root.ground.crate6.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate7.crate_alive)) {
_root.ground.crate7.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate8.crate_alive)) {
_root.ground.crate8.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate9.crate_alive)) {
_root.ground.crate9.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate10.crate_alive)) {
_root.ground.crate10.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate11.crate_alive)) {
_root.ground.crate11.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate12.crate_alive)) {
_root.ground.crate12.nextFrame();
removeMovieClip(_parent);
}
}
Symbol 208 MovieClip [bullet1] Frame 2 (8 B)
stop();
Instance of Symbol 203 MovieClip "bullet2" in Symbol 208 MovieClip [bullet1] Frame 2 (1.79 KiB) ●
onClipEvent (load) {
var ground = _root.ground;
var grav = 0;
var gravity = 1;
var speed = 7;
var maxJump = -18;
var touchingGround = false;
}
onClipEvent (enterFrame) {
c = 0;
while (c < _root.boxArray.length) {
if (this.rose.hitTest(_root["box" + c].box_alive)) {
_root.boxArray[c].gotoAndStop(6);
removeMovieClip(_parent);
}
c++;
}
if (this.shot.hitTest(_root.ground.crate.crate_alive)) {
_root.ground.crate.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate2.crate_alive)) {
_root.ground.crate2.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate3.crate_alive)) {
_root.ground.crate3.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate4.crate_alive)) {
_root.ground.crate4.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate5.crate_alive)) {
_root.ground.crate5.nextFrame();
removeMovieClip(_parent);
}
if (this.shot.hitTest(_root.ground.crate6.crate_alive)) {
_root.ground.crate6.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate7.crate_alive)) {
_root.ground.crate7.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate8.crate_alive)) {
_root.ground.crate8.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate9.crate_alive)) {
_root.ground.crate9.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate10.crate_alive)) {
_root.ground.crate10.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate11.crate_alive)) {
_root.ground.crate11.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate12.crate_alive)) {
_root.ground.crate12.nextFrame();
removeMovieClip(_parent);
}
}
Symbol 208 MovieClip [bullet1] Frame 3 (8 B)
stop();
Instance of Symbol 207 MovieClip in Symbol 208 MovieClip [bullet1] Frame 3 (1.71 KiB) ●
onClipEvent (enterFrame) {
c = 0;
while (c < _root.boxArray.length) {
if (this.hitTest(_root["box" + c].box_alive)) {
_root.boxArray[c].gotoAndStop(4);
removeMovieClip(_parent);
}
c++;
}
if (this.hitTest(_root.crate.crate_alive)) {
_root.crate.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate.crate_alive)) {
_root.ground.crate.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate2.crate_alive)) {
_root.ground.crate2.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate3.crate_alive)) {
_root.ground.crate3.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate4.crate_alive)) {
_root.ground.crate4.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate5.crate_alive)) {
_root.ground.crate5.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate6.crate_alive)) {
_root.ground.crate6.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate7.crate_alive)) {
_root.ground.crate7.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate8.crate_alive)) {
_root.ground.crate8.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate9.crate_alive)) {
_root.ground.crate9.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate10.crate_alive)) {
_root.ground.crate10.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate11.crate_alive)) {
_root.ground.crate11.nextFrame();
removeMovieClip(_parent);
}
if (this.hitTest(_root.ground.crate12.crate_alive)) {
_root.ground.crate12.nextFrame();
removeMovieClip(_parent);
}
}
Symbol 216 MovieClip Frame 1 (28 B)
stop();
this._alpha = "0";
Symbol 221 MovieClip Frame 1 (456 B)
var fall = 2;
var gravi = ((this.gravi = random(0.5) - 0.5));
var explode = function () {
this._x = this._x + this.xSp;
this.ySp = this.ySp - gravi;
this._y = this._y + this.ySp;
this._rotation = this._rotation + this.rota;
};
this._xscale = random(210) - 120;
this._yscale = random(210) - 120;
this.xSp = random(10) - 5;
this.ySp = random(18) - 18;
this.rota = random(50) - 20;
this.onEnterFrame = explode;
this.gotoAndStop(random(4));
Symbol 222 MovieClip Frame 1 (8 B)
stop();
Symbol 222 MovieClip Frame 2 (8 B)
play();
Symbol 234 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 233 MovieClip "gem" in Symbol 234 MovieClip Frame 1 (21 B)
/* no clip actions */
Symbol 235 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (142 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.life = _root.life - 40;
_root.hero._y = 210;
_root.hero._x = 350;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (142 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.life = _root.life - 40;
_root.hero._y = 210;
_root.hero._x = 350;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (142 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.life = _root.life - 40;
_root.hero._y = 210;
_root.hero._x = 350;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (300 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.cuttershot = false;
_root.flamethrower = true;
}
if (this.hitTest(_root.hero)) {
_root.char.gotoAndStop(2);
_root.bulletLifeTimerTotal = 21;
_root.bulletSpeed = 15;
_root.bulletOffset = 13;
_root.reloadSpeed = 20;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (142 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.life = _root.life - 40;
_root.hero._y = 210;
_root.hero._x = 350;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (300 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.cuttershot = false;
_root.flamethrower = true;
}
if (this.hitTest(_root.hero)) {
_root.char.gotoAndStop(2);
_root.bulletLifeTimerTotal = 21;
_root.bulletSpeed = 15;
_root.bulletOffset = 13;
_root.reloadSpeed = 20;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (299 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.flamethrower = false;
_root.cuttershot = true;
}
if (this.hitTest(_root.hero)) {
_root.char.gotoAndStop(3);
_root.bulletLifeTimerTotal = 40;
_root.bulletSpeed = 20;
_root.bulletOffset = 0;
_root.reloadSpeed = 70;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (300 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.cuttershot = false;
_root.flamethrower = true;
}
if (this.hitTest(_root.hero)) {
_root.char.gotoAndStop(2);
_root.bulletLifeTimerTotal = 21;
_root.bulletSpeed = 15;
_root.bulletOffset = 13;
_root.reloadSpeed = 20;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (300 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.cuttershot = false;
_root.flamethrower = true;
}
if (this.hitTest(_root.hero)) {
_root.char.gotoAndStop(2);
_root.bulletLifeTimerTotal = 21;
_root.bulletSpeed = 15;
_root.bulletOffset = 13;
_root.reloadSpeed = 20;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (299 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.flamethrower = false;
_root.cuttershot = true;
}
if (this.hitTest(_root.hero)) {
_root.char.gotoAndStop(3);
_root.bulletLifeTimerTotal = 40;
_root.bulletSpeed = 20;
_root.bulletOffset = 0;
_root.reloadSpeed = 70;
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 216 MovieClip in Symbol 235 MovieClip Frame 1 (143 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.createBox();
}
if (this.hitTest(_root.hero)) {
unloadMovie (this);
}
}
Instance of Symbol 234 MovieClip in Symbol 235 MovieClip Frame 1 (319 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.flamethrower = false;
_root.cuttershot = true;
this.nextFrame();
}
if (this.hitTest(_root.hero)) {
_root.char.gotoAndStop(3);
_root.bulletLifeTimerTotal = 70;
_root.bulletSpeed = 25;
_root.bulletOffset = 0;
_root.reloadSpeed = 80;
}
}
Instance of Symbol 234 MovieClip in Symbol 235 MovieClip Frame 1 (320 B)
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.cuttershot = false;
_root.flamethrower = true;
this.nextFrame();
}
if (this.hitTest(_root.hero)) {
_root.char.gotoAndStop(2);
_root.bulletLifeTimerTotal = 21;
_root.bulletSpeed = 15;
_root.bulletOffset = 13;
_root.reloadSpeed = 20;
}
}
Symbol 239 MovieClip Frame 1 (8 B)
stop();
Symbol 239 MovieClip Frame 2 (8 B)
stop();
Symbol 243 MovieClip Frame 1 (8 B)
stop();
Instance of Symbol 246 MovieClip "head" in Symbol 248 MovieClip Frame 1 (212 B)
onClipEvent (enterFrame) {
playerX = this._x;
playerY = this._y;
rotationDirection = Math.round(90 - ((Math.atan2(_xmouse - playerX, _ymouse - playerY) * 90) / Math.PI));
this._rotation = rotationDirection;
}