Frame 1
stop();
Instance of Symbol 7 MovieClip "lode" in Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(17)) {
_root.ammo = 7;
this.gotoAndStop(2);
}
}
Instance of Symbol 25 MovieClip "ammunition" in Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(17)) {
this.gotoAndStop(1);
if (_root.guntype == "pistol") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r1.play();
}
}
if (_root.guntype == "flamethrower") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r2.play();
}
}
if (_root.guntype == "shotgun") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r1.play();
}
}
}
}
Instance of Symbol 27 MovieClip "crosshair" in Frame 1
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = _x;
_y = _y;
}
onClipEvent (mouseDown) {
if (_root.ammo > 0) {
_root.gun.play();
if (_root.guntype == "pistol") {
_root.gun.shotsound.pistolshot.play();
}
if (_root.guntype == "shotgun") {
_root.gun.shotsound.shotgunshot.play();
}
if (_root.guntype == "flamethrower") {
_root.gun.shotsound.flameshot.play();
}
}
if (_root.ammo == 0) {
_root.gun.shotsound.empty.play();
}
}
Instance of Symbol 37 MovieClip in Frame 1
onClipEvent (load) {
xscale = _xscale;
}
onClipEvent (enterFrame) {
_x = (_x + xmove);
_y = (_y + ymove);
if (_root.player._x > _x) {
xmove = (_root.player._x - _x) / 2;
} else if (_root.player._x < _x) {
xmove = (_root.player._x - _x) / 2;
}
if ((_root.player._y - 50) > _y) {
ymove = ((_root.player._y - _y) - 50) / 2;
} else if ((_root.player._y - 50) < _y) {
ymove = ((_root.player._y - _y) - 50) / 2;
}
if (_x > _root._xmouse) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
}
Instance of Symbol 56 MovieClip "gun" in Frame 1
onClipEvent (load) {
stop();
yscale = _yscale;
}
onClipEvent (enterFrame) {
if (_root.guntype == "shotgun") {
_root.gun.firearm.gotoAndStop(2);
_root.gun.muzz.gotoAndStop(2);
}
}
onClipEvent (enterFrame) {
if (_root.guntype == "flamethrower") {
_root.gun.firearm.gotoAndStop(3);
_root.gun.muzz.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
_root.newx = _root.crosshair._y;
_root.newy = _root.crosshair._x;
initx = _x;
inity = _y;
_x = _root.player._x;
_y = (_root.player._y - 30);
_root.angle = Math.atan2(_root.newx - inity, _root.newy - initx) / (Math.PI/180);
_rotation = _root.angle;
if (_root.ammunition._currentframe == "8") {
if (_currentframe == 1) {
if (Key.isDown(17)) {
_root.ammo = 7;
_root.ammunition.gotoAndStop(1);
if (_root.guntype == "pistol") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r1.play();
}
}
if (_root.guntype == "flamethrower") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r2.play();
}
}
if (_root.guntype == "shotgun") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r1.play();
}
}
}
}
} else if (_currentframe == 2) {
_root.bullets.play();
_root.ammo = _root.ammo - 1;
_root.ammunition.nextFrame();
}
if (_rotation > 90) {
_yscale = (-yscale);
} else if (_rotation < -90) {
_yscale = (-yscale);
} else {
_yscale = yscale;
}
}
Instance of Symbol 67 MovieClip "player" in Frame 1
onClipEvent (load) {
xscale = _xscale;
}
onClipEvent (enterFrame) {
if (_root.guntype == "flamethrower") {
_root.player.pack.gotoAndStop(2);
} else {
_root.player.pack.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
_root.keyleft = Key.isDown(37);
if (Key.isDown(37)) {
_root.player.play();
}
_root.keyright = Key.isDown(39);
if (Key.isDown(39)) {
_root.player.play();
}
_root.keyspace = Key.isDown(38);
_root.hitground = _root.ground.hitTest(_x, _y, true);
if (_root.keyleft) {
hori = -5;
} else if (_root.keyright) {
hori = 5;
} else if (hori > 0) {
hori = hori - 0.2;
} else if (hori < 0) {
hori = hori + 0.2;
}
if (!_root.hitground) {
vert = vert + 1;
if (vert > 0) {
if (_root.ground.hitTest(_x, _y + 2, true)) {
_y = (_y + 2);
} else if (_root.ground.hitTest(_x, _y + 4, true)) {
_y = (_y + 4);
} else if (_root.ground.hitTest(_x, _y + 6, true)) {
_y = (_y + 6);
} else if (_root.ground.hitTest(_x, _y + 8, true)) {
_y = (_y + 8);
} else if (_root.ground.hitTest(_x, _y + 10, true)) {
_y = (_y + 10);
}
}
} else {
if (_root.keyspace) {
vert = -10;
} else {
vert = 0;
}
if (_root.ground.hitTest(_x, _y - 10, true)) {
_y = (_y - 10);
} else if (_root.ground.hitTest(_x, _y - 8, true)) {
_y = (_y - 8);
} else if (_root.ground.hitTest(_x, _y - 6, true)) {
_y = (_y - 6);
} else if (_root.ground.hitTest(_x, _y - 4, true)) {
_y = (_y - 4);
} else if (_root.ground.hitTest(_x, _y - 2, true)) {
_y = (_y - 2);
}
}
_y = (_y + vert);
_x = (_x + hori);
if (_root.ground.hitTest(_x + 4, _y - 5, true)) {
hori = hori - 3;
}
if (_root.ground.hitTest(_x - 4, _y - 5, true)) {
hori = hori + 3;
}
if (_root.ground.hitTest(_x + hori, _y - 20, true)) {
if (hori > 0) {
hori = 0;
_x = (_x - 10);
} else {
hori = 0;
_x = (_x + 10);
}
}
if (_x > _root._xmouse) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
if (_x > 400) {
diff = 400 - _x;
_root.ground._x = _root.ground._x + diff;
_root.bullets._x = _root.bullets._x + diff;
_root.crosshair._x = _root.crosshair._x + diff;
_x = (_x + diff);
} else if (_x < 100) {
diff = 100 - _x;
_root.ground._x = _root.ground._x + diff;
_root.bullets._x = _root.bullets._x + diff;
_root.crosshair._x = _root.crosshair._x + diff;
_x = (_x + diff);
}
if (_y > 250) {
diff = 250 - _y;
_root.ground._y = _root.ground._y + diff;
_root.bullets._y = _root.bullets._y + diff;
_root.crosshair._y = _root.crosshair._y + diff;
_y = (_y + diff);
} else if (_y < 100) {
diff = 100 - _y;
_root.ground._y = _root.ground._y + diff;
_root.bullets._y = _root.bullets._y + diff;
_root.crosshair._y = _root.crosshair._y + diff;
_y = (_y + diff);
}
}
Instance of Symbol 72 MovieClip "bullets" in Frame 1
onClipEvent (enterFrame) {
if (_currentframe == 1) {
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
xmove = (-(_x - _root.crosshair._x)) / 10;
ymove = (-(_y - _root.crosshair._y)) / 10;
} else {
_x = (_x + xmove);
_y = (_y + ymove);
if (_currentframe <= 3) {
_root.player.hori = _root.player.hori - (xmove / 10);
_root.player._y = _root.player._y - 2;
_root.player.vert = _root.player.vert - (ymove / 10);
}
if (_root.ground.hitTest(_x, _y, true)) {
gotoAndStop (1);
}
}
}
Frame 2
stop();
Frame 4
stop();
_root.guntype = "pistol";
_root.ammo = 0;
_root.jetpack = "no";
Instance of Symbol 7 MovieClip "lode" in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(17)) {
_root.ammo = 7;
this.gotoAndStop(2);
}
}
Instance of Symbol 25 MovieClip "ammunition" in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(17)) {
this.gotoAndStop(1);
if (_root.guntype == "pistol") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r1.play();
}
}
if (_root.guntype == "flamethrower") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r2.play();
}
}
if (_root.guntype == "shotgun") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r1.play();
}
}
}
}
Instance of Symbol 27 MovieClip "crosshair" in Frame 4
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (enterFrame) {
_x = _x;
_y = _y;
}
onClipEvent (mouseDown) {
if (_root.ammo > 0) {
_root.gun.play();
if (_root.guntype == "pistol") {
_root.gun.shotsound.pistolshot.play();
}
if (_root.guntype == "shotgun") {
_root.gun.shotsound.shotgunshot.play();
}
if (_root.guntype == "flamethrower") {
_root.gun.shotsound.flameshot.play();
}
}
if (_root.ammo == 0) {
_root.gun.shotsound.empty.play();
}
}
Instance of Symbol 56 MovieClip "gun" in Frame 4
onClipEvent (load) {
stop();
yscale = _yscale;
}
onClipEvent (enterFrame) {
if (_root.guntype == "shotgun") {
_root.gun.firearm.gotoAndStop(2);
_root.gun.muzz.gotoAndStop(2);
}
}
onClipEvent (enterFrame) {
if (_root.guntype == "flamethrower") {
_root.gun.firearm.gotoAndStop(3);
_root.gun.muzz.gotoAndStop(3);
}
}
onClipEvent (enterFrame) {
_root.newx = _root.crosshair._y;
_root.newy = _root.crosshair._x;
initx = _x;
inity = _y;
_x = _root.player._x;
_y = (_root.player._y - 30);
_root.angle = Math.atan2(_root.newx - inity, _root.newy - initx) / (Math.PI/180);
_rotation = _root.angle;
if (_root.ammunition._currentframe == "8") {
if (_currentframe == 1) {
if (Key.isDown(17)) {
_root.ammo = 7;
_root.ammunition.gotoAndStop(1);
if (_root.guntype == "pistol") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r1.play();
}
}
if (_root.guntype == "flamethrower") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r2.play();
}
}
if (_root.guntype == "shotgun") {
if (Key.isDown(key.CONTROl)) {
_root.rsc.r1.play();
}
}
}
}
} else if (_currentframe == 2) {
_root.bullets.play();
_root.ammo = _root.ammo - 1;
_root.ammunition.nextFrame();
}
if (_rotation > 90) {
_yscale = (-yscale);
} else if (_rotation < -90) {
_yscale = (-yscale);
} else {
_yscale = yscale;
}
}
Instance of Symbol 67 MovieClip "player" in Frame 4
onClipEvent (load) {
xscale = _xscale;
_xscale = (-_xscale);
flip = -_xscale;
}
onClipEvent (enterFrame) {
if (_root.jetpack == "no") {
_root.keyleft = Key.isDown(37);
if (Key.isDown(37)) {
_root.player.play();
}
_root.keyright = Key.isDown(39);
if (Key.isDown(39)) {
_root.player.play();
}
_root.keyspace = Key.isDown(38);
_root.hitground = _root.ground.hitTest(_x, _y, true);
if (_root.keyleft) {
hori = -5;
} else if (_root.keyright) {
hori = 5;
} else if (hori > 0) {
hori = hori - 0.2;
} else if (hori < 0) {
hori = hori + 0.2;
}
if (!_root.hitground) {
vert = vert + 1;
if (vert > 0) {
if (_root.ground.hitTest(_x, _y + 2, true)) {
_y = (_y + 2);
} else if (_root.ground.hitTest(_x, _y + 4, true)) {
_y = (_y + 4);
} else if (_root.ground.hitTest(_x, _y + 6, true)) {
_y = (_y + 6);
} else if (_root.ground.hitTest(_x, _y + 8, true)) {
_y = (_y + 8);
} else if (_root.ground.hitTest(_x, _y + 10, true)) {
_y = (_y + 10);
}
}
} else {
if (_root.keyspace) {
vert = -10;
} else {
vert = 0;
}
if (_root.ground.hitTest(_x, _y - 10, true)) {
_y = (_y - 10);
} else if (_root.ground.hitTest(_x, _y - 8, true)) {
_y = (_y - 8);
} else if (_root.ground.hitTest(_x, _y - 6, true)) {
_y = (_y - 6);
} else if (_root.ground.hitTest(_x, _y - 4, true)) {
_y = (_y - 4);
} else if (_root.ground.hitTest(_x, _y - 2, true)) {
_y = (_y - 2);
}
}
_y = (_y + vert);
_x = (_x + hori);
if (_root.ground.hitTest(_x + 4, _y - 5, true)) {
hori = hori - 3;
}
if (_root.ground.hitTest(_x - 4, _y - 5, true)) {
hori = hori + 3;
}
if (_root.ground.hitTest(_x + hori, _y - 20, true)) {
if (hori > 0) {
hori = 0;
_x = (_x - 10);
} else {
hori = 0;
_x = (_x + 10);
}
}
if (_x > _root._xmouse) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
if (_x > 400) {
diff = 400 - _x;
_root.ground._x = _root.ground._x + diff;
_root.bullets._x = _root.bullets._x + diff;
_root.crosshair._x = _root.crosshair._x + diff;
_x = (_x + diff);
} else if (_x < 100) {
diff = 100 - _x;
_root.ground._x = _root.ground._x + diff;
_root.bullets._x = _root.bullets._x + diff;
_root.crosshair._x = _root.crosshair._x + diff;
_x = (_x + diff);
}
if (_y > 250) {
diff = 250 - _y;
_root.ground._y = _root.ground._y + diff;
_root.bullets._y = _root.bullets._y + diff;
_root.crosshair._y = _root.crosshair._y + diff;
_y = (_y + diff);
} else if (_y < 100) {
diff = 100 - _y;
_root.ground._y = _root.ground._y + diff;
_root.bullets._y = _root.bullets._y + diff;
_root.crosshair._y = _root.crosshair._y + diff;
_y = (_y + diff);
}
}
if (_root.jetpack == "yes") {
_root.keyleft = Key.isDown(37);
if (Key.isDown(37)) {
_root.player.play();
}
_root.keyright = Key.isDown(39);
if (Key.isDown(39)) {
_root.player.play();
}
_root.keyspace = Key.isDown(38);
_root.hitground = _root.ground.hitTest(_x, _y, true);
if (_root.keyleft) {
hori = hori - 1;
} else if (_root.keyright) {
hori = hori + 1;
} else if (hori > 0) {
hori = hori - 0.05;
} else if (hori < 0) {
hori = hori + 0.05;
}
if (_root.keyspace) {
vert = vert - 1;
} else if (key.isDown(40)) {
vert = vert + 1;
}
if (_root.ground.hitTest(_x - 4, _y + 5, true)) {
vert = vert - 1;
}
if (_root.ground.hitTest(_x, _y - 40, true)) {
vert = 1;
} else if (vert > 0) {
vert = vert - 0.2;
} else if (vert < 0) {
vert = vert + 0.2;
}
if (_root.ground.hitTest(_x - 20, _y + vert, true)) {
if (vert > 0) {
vert = 0;
_y = (_y - 0);
} else {
vert = 0;
_ = _ + 0;
}
}
_y = (_y + vert);
_x = (_x + hori);
if (_root.ground.hitTest(_x + 4, _y - 5, true)) {
hori = hori - 3;
}
if (_root.ground.hitTest(_x - 4, _y - 5, true)) {
hori = hori + 3;
}
if (_root.ground.hitTest(_x + hori, _y - 20, true)) {
if (hori > 0) {
hori = 0;
_x = (_x - 10);
} else {
hori = 0;
_x = (_x + 10);
}
}
if (_x > _root._xmouse) {
_xscale = (-xscale);
if (_root.jetpack == "yes") {
if (Key.isDown(37)) {
_root.player.pack.jetpack.jbleft.gotoAndStop(2);
_root.player.pack.jetpack.jbright.gotoAndStop(1);
}
if (Key.isDown(39)) {
_root.player.pack.jetpack.jbright.gotoAndStop(2);
_root.player.pack.jetpack.jbleft.gotoAndStop(1);
}
}
} else {
_xscale = xscale;
if (_root.jetpack == "yes") {
if (Key.isDown(37)) {
_root.player.pack.jetpack.jbright.gotoAndStop(2);
_root.player.pack.jetpack.jbleft.gotoAndStop(1);
}
if (Key.isDown(39)) {
_root.player.pack.jetpack.jbleft.gotoAndStop(2);
_root.player.pack.jetpack.jbright.gotoAndStop(1);
}
}
}
if (_x > 400) {
diff = 400 - _x;
_root.ground._x = _root.ground._x + diff;
_root.bullets._x = _root.bullets._x + diff;
_root.crosshair._x = _root.crosshair._x + diff;
_x = (_x + diff);
} else if (_x < 100) {
diff = 100 - _x;
_root.ground._x = _root.ground._x + diff;
_root.bullets._x = _root.bullets._x + diff;
_root.crosshair._x = _root.crosshair._x + diff;
_x = (_x + diff);
}
if (_y > 250) {
diff = 250 - _y;
_root.ground._y = _root.ground._y + diff;
_root.bullets._y = _root.bullets._y + diff;
_root.crosshair._y = _root.crosshair._y + diff;
_y = (_y + diff);
} else if (_y < 100) {
diff = 100 - _y;
_root.ground._y = _root.ground._y + diff;
_root.bullets._y = _root.bullets._y + diff;
_root.crosshair._y = _root.crosshair._y + diff;
_y = (_y + diff);
}
}
}
onClipEvent (enterFrame) {
if (_root.jetpack == "yes") {
_root.player.pack.gotoAndStop(3);
if (Key.isDown(38)) {
_root.player.pack.jetpack.jbbot.gotoAndStop(2);
_root.player.pack.jetpack.jbtop.gotoAndStop(1);
}
if (Key.isDown(40)) {
_root.player.pack.jetpack.jbtop.gotoAndStop(2);
_root.player.pack.jetpack.jbbot.gotoAndStop(1);
}
}
}
Instance of Symbol 37 MovieClip in Frame 4
onClipEvent (load) {
xscale = _xscale;
}
onClipEvent (enterFrame) {
_x = (_x + xmove);
_y = (_y + ymove);
if (_root.player._x > _x) {
xmove = (_root.player._x - _x) / 2;
} else if (_root.player._x < _x) {
xmove = (_root.player._x - _x) / 2;
}
if ((_root.player._y - 50) > _y) {
ymove = ((_root.player._y - _y) - 50) / 2;
} else if ((_root.player._y - 50) < _y) {
ymove = ((_root.player._y - _y) - 50) / 2;
}
if (_x > _root._xmouse) {
_xscale = (-xscale);
} else {
_xscale = xscale;
}
}
Instance of Symbol 72 MovieClip "bullets" in Frame 4
onClipEvent (enterFrame) {
if (_currentframe == 1) {
_x = _root.gun._x;
_y = _root.gun._y;
_rotation = _root.gun._rotation;
xmove = (-(_x - _root.crosshair._x)) / 10;
ymove = (-(_y - _root.crosshair._y)) / 10;
} else {
_x = (_x + xmove);
_y = (_y + ymove);
if (_currentframe <= 3) {
_root.player.hori = _root.player.hori - (xmove / 10);
_root.player._y = _root.player._y - 2;
_root.player.vert = _root.player.vert - (ymove / 10);
}
if (_root.ground.hitTest(_x, _y, true)) {
gotoAndStop (4);
}
}
}
Symbol 7 MovieClip Frame 1
stop();
Symbol 7 MovieClip Frame 2
stop();
Symbol 12 MovieClip Frame 1
stop();
Symbol 12 MovieClip Frame 20
stop();
Symbol 12 MovieClip Frame 21
tellTarget ("_root") {
gotoAndPlay (2);
};
Symbol 25 MovieClip Frame 1
stop();
Symbol 29 MovieClip Frame 1
stop();
Symbol 31 MovieClip Frame 1
stop();
Symbol 39 MovieClip Frame 1
stop();
Symbol 41 MovieClip Frame 1
stop();
Symbol 43 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 1
stop();
Symbol 46 MovieClip Frame 1
stop();
Symbol 51 MovieClip Frame 1
stop();
Symbol 55 MovieClip Frame 1
stop();
Symbol 56 MovieClip Frame 1
stop();
Symbol 63 MovieClip Frame 1
stop();
Symbol 64 MovieClip Frame 1
stop();
Symbol 65 MovieClip Frame 1
stop();
Instance of Symbol 64 MovieClip "jetpack" in Symbol 65 MovieClip Frame 3
onClipEvent (enterFrame) {
if (Key.isDown(38)) {
_root.player.pack.jetpack.jbbot.gotoAndStop(2);
}
if (Key.isDown(40)) {
_root.player.pack.jetpack.jbtop.gotoAndStop(2);
}
if (Key.isDown(37)) {
_root.player.pack.jetpack.jbright.gotoAndStop(2);
}
if (Key.isDown(39)) {
_root.player.pack.jetpack.jbleft.gotoAndStop(2);
}
}
Symbol 67 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 1
stop();
Symbol 72 MovieClip Frame 1
stop();
Instance of Symbol 71 MovieClip "wtype" in Symbol 72 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.guntype == "shotgun") {
this.gotoAndStop(2);
}
}
onClipEvent (enterFrame) {
if (_root.guntype == "flamethrower") {
this.gotoAndStop(3);
}
}
Symbol 75 MovieClip Frame 10
this.gotoAndPlay(1);
Symbol 83 MovieClip Frame 1
stop();
Symbol 105 MovieClip Frame 6
_root.score++;
stop();
Symbol 106 MovieClip Frame 1
stop();
Symbol 106 MovieClip Frame 2
stop();
Symbol 106 MovieClip Frame 3
stop();
Symbol 106 MovieClip Frame 4
stop();
Symbol 109 MovieClip Frame 1
stop();
Symbol 114 MovieClip Frame 1
stop();
Symbol 122 MovieClip Frame 1
stop();
Symbol 122 MovieClip Frame 8
stop();
Symbol 126 MovieClip Frame 1
stop();
Symbol 126 MovieClip Frame 3
stop();
Symbol 135 MovieClip Frame 9
_root.score++;
stop();
Symbol 136 MovieClip Frame 1
stop();
Instance of Symbol 75 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.gotoAndStop(1);
this.gotoAndStop(11);
}
}
Instance of Symbol 75 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.gotoAndStop(1);
this.gotoAndStop(11);
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 75 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.gotoAndStop(1);
this.gotoAndStop(11);
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 107 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 109 MovieClip "bchange2" in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.background.gotoAndPlay(12);
this.gotoAndStop(2);
_root.ground.blocker.play();
}
}
Instance of Symbol 111 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.background.gotoAndPlay(2);
}
}
Instance of Symbol 114 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.guntype = "shotgun";
this.nextFrame();
}
}
Instance of Symbol 116 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
tellTarget ("_root") {
gotoAndPlay ("1");
};
}
}
Instance of Symbol 118 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 126 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.nextFrame();
}
}
Instance of Symbol 128 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 129 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 128 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 128 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 136 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 136 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 126 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.nextFrame();
}
}
Instance of Symbol 136 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 126 MovieClip in Symbol 141 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.nextFrame();
}
}
Symbol 150 MovieClip Frame 1
stop();
Symbol 150 MovieClip Frame 11
stop();
Symbol 150 MovieClip Frame 25
this.gotoAndStop(1);
Symbol 155 Button
on (press) {
_root.gotoAndStop(1);
_root.lode.gotoAndStop(1);
_root.score = 0;
_root.ammo = 0;
_root.guntype = "pistol";
_root.background.gotoAndStop(1);
_root.ground.bchange2.gotoAndStop(1);
_root.ground.blocker.gotoAndStop(1);
}
on (press) {
if (_root.pass == "gay") {
gotoAndPlay (4);
_root.ammo = 0;
_root.lode.gotoAndStop(1);
}
}
Symbol 163 MovieClip Frame 1
stop();
Instance of Symbol 83 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 83 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
this.nextFrame();
_root.score++;
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 160 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}
Instance of Symbol 114 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.guntype = "shotgun";
this.nextFrame();
}
}
Instance of Symbol 163 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.jetpack = "yes";
this.nextFrame();
}
}
Instance of Symbol 165 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
tellTarget ("_root") {
gotoAndStop ("lose");
};
}
}
Instance of Symbol 107 MovieClip in Symbol 167 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.bullets)) {
this.death.nextFrame();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.health.nextFrame();
}
}