Frame 1
function spawnTarget() {
bulletCounter++;
target_master.duplicateMovieClip("target_" + bulletCounter, bulletCounter);
eval ("target_" + bulletCounter)._x = random(400);
eval ("target_" + bulletCounter)._y = random(550);
eval ("target_" + bulletCounter).hitpoints = 15;
trace("hitpoint assignment 1");
var jimmy = targetList.push("target_" + bulletCounter);
}
function checkForImpact(myx, myy, bulletname) {
var times = targetList.length;
var temp = "";
i = 0;
while (i < times) {
temp = targetList[i];
if (eval (temp).hitTest(myx, myy, 1) == 1) {
eval (temp).bullethit();
i = times;
}
i++;
}
}
Stage.scaleMode = "noScale";
Stage.align = "TL";
Stage.showMenu = false;
nudity = 1;
this.onMouseUp = function () {
_root.pressed = 0;
};
this.onMouseDown = function () {
_root.pressed = 1;
};
shootSOBJ = new Sound();
shootSOBJ.setVolume(100);
shootSOBJ.attachSound("pew");
Frame 3
stop();
Frame 12
stop();
Frame 17
stop();
Frame 18
morphex.gotoAndPlay("CCW");
screwex.gotoAndPlay("CCW Loop");
Frame 21
stop();
Frame 25
stop();
Frame 30
stop();
Frame 32
reticle_base.duplicateMovieClip("reticle", 20000);
bulletCounter = 1;
anim = 0;
animTimer = getTimer();
targetList = new Array();
hitpointList = new Array();
samusHitPoints = samusHpStun;
samusTimer = getTimer();
attackTimer = getTimer();
weaponPower = 100;
samusPower = 100;
healthMeter.updatePerc(100);
gunMeter.updatePerc(100);
weapon = "";
var armorCount = numOfArmorPieces;
var ok = "";
i = 1;
while (i <= armorCount) {
ok = targetList.push("armor_" + i);
hitpointList[i] = samusHpPer;
i++;
}
ok = targetList.push("morph");
ok = targetList.push("screw");
_root.pressed = 0;
bulletTimer = getTimer();
Frame 42
gotoAndPlay (43);
Frame 44
reticle._y = _ymouse;
reticle._x = _xmouse;
if (anim != 1) {
if (getTimer() > animTimer) {
anim = 1;
attackTimer = getTimer() + 500;
var rand = (random(totalAnims) + 1);
if (rand == 1) {
weapon = "bomb";
morph.gotoAndPlay("pattern_1");
}
if (rand == 2) {
weapon = "bomb";
morph.gotoAndPlay("pattern_2");
}
if (rand == 3) {
weapon = "bomb";
morph.gotoAndPlay("pattern_3");
}
if (rand == 4) {
weapon = "bomb";
morph.gotoAndPlay("pattern_4");
}
if (rand == 5) {
weapon = "missile";
screw.gotoAndPlay("pattern_5");
}
if (rand == 6) {
weapon = "missile";
screw.gotoAndPlay("pattern_6");
}
if (rand == 7) {
weapon = "";
morph.gotoAndPlay("pattern_1");
}
if (rand == 8) {
weapon = "";
morph.gotoAndPlay("pattern_2");
}
if (rand == 9) {
weapon = "";
screw.gotoAndPlay("pattern_5");
}
if (rand == 10) {
weapon = "";
screw.gotoAndPlay("pattern_6");
}
}
} else if (getTimer() > attackTimer) {
if (weapon == "missile") {
var rand = 1;
var newWeapon = "";
bulletCounter++;
if (rand >= 5) {
attackTimer = getTimer() + 2400;
newWeapon = "smiss_" + bulletCounter;
smiss_master.duplicateMovieClip(newWeapon, bulletCounter);
eval (newWeapon).hitpoints = 2;
} else {
attackTimer = getTimer() + 800;
newWeapon = "miss_" + bulletCounter;
miss_master.duplicateMovieClip(newWeapon, bulletCounter);
eval (newWeapon).hitpoints = 2;
}
var edgeTest = (screw.jump._x + 600);
if ((edgeTest > 50) && (edgeTest <= 500)) {
eval (newWeapon)._x = edgeTest;
eval (newWeapon)._y = screw.jump._y + 300;
eval (newWeapon).gotoAndPlay("start");
ok = targetList.push(newWeapon);
} else {
removeMovieClip(eval (newWeapon));
}
}
if (weapon == "bomb") {
var rand = (random(5) + 1);
var newWeapon = "";
bulletCounter++;
if (rand >= 5) {
attackTimer = getTimer() + 2400;
newWeapon = "sbomb_" + bulletCounter;
sbomb_master.duplicateMovieClip(newWeapon, bulletCounter);
eval (newWeapon).hitpoints = 3;
} else {
attackTimer = getTimer() + 500;
newWeapon = "bomb_" + bulletCounter;
bomb_master.duplicateMovieClip(newWeapon, bulletCounter);
eval (newWeapon).hitpoints = 1;
}
var edgeTest = (morph.morph._x + 650);
if ((edgeTest > 50) && (edgeTest <= 500)) {
eval (newWeapon)._x = edgeTest;
eval (newWeapon)._y = morph.morph._y + 155;
eval (newWeapon).gotoAndPlay("start");
ok = targetList.push(newWeapon);
} else {
removeMovieClip(eval (newWeapon));
}
}
}
if (_root.pressed == 1) {
weaponPower = weaponPower - 0.75;
if (weaponPower <= 0) {
weaponPower = 0;
}
gunMeter.updatePerc(weaponPower);
var temptimer = getTimer();
if (temptimer >= bulletTimer) {
if (weaponPower <= 0) {
bulletTimer = getTimer() + 450;
} else {
bulletTimer = getTimer() + 150;
}
bulletCounter++;
var tempname = ("playershot_" + bulletCounter);
_root.playershot_1.duplicateMovieClip("playershot_" + bulletCounter, bulletCounter);
eval ("playershot_" + bulletCounter)._x = _xmouse;
eval ("playershot_" + bulletCounter)._y = _ymouse;
eval ("playershot_" + bulletCounter)._rotation = random(360);
eval ("playershot_" + bulletCounter)._xscale = 100;
eval ("playershot_" + bulletCounter)._yscale = 100;
eval ("playershot_" + bulletCounter).gotoAndPlay("active");
shootSOBJ.start();
}
} else {
weaponPower = weaponPower + 3;
if (weaponPower >= 100) {
weaponPower = 100;
}
gunMeter.updatePerc(weaponPower);
}
if (samusPower <= 0) {
gotoAndPlay (57);
}
healthMeter.updatePerc(samusPower);
Frame 45
gotoAndPlay (44);
Frame 46
var steps = hitpointList.length;
var pieceName = "";
var pieceValue = 0;
i = 1;
while (i < steps) {
pieceName = "armor_" + i;
pieceValue = hitpointList[i];
if (pieceValue > 0) {
eval (pieceName).hitpoints = pieceValue;
} else {
eval (pieceName).gotoAndPlay("hide");
}
i++;
}
if (hitpointList[5] <= 0) {
hair_1.gotoAndPlay("hair");
}
var targetCount = targetList.length;
var tempName = "";
i = 0;
while (i < targetCount) {
tempName = targetList[i];
if (tempName.indexOf("playershot") == -1) {
removeMovieClip(eval (tempName));
}
i++;
}
Frame 52
reticle._y = _ymouse;
reticle._x = _xmouse;
if (samusTimer < getTimer()) {
anim = 0;
gotoAndPlay (43);
}
if (_root.pressed == 1) {
weaponPower = weaponPower - 0.75;
if (weaponPower <= 0) {
weaponPower = 0;
}
gunMeter.updatePerc(weaponPower);
var temptimer = getTimer();
if (temptimer >= bulletTimer) {
if (weaponPower <= 0) {
bulletTimer = getTimer() + 450;
} else {
bulletTimer = getTimer() + 150;
}
bulletCounter++;
var tempname = ("playershot_" + bulletCounter);
_root.playershot_1.duplicateMovieClip("playershot_" + bulletCounter, bulletCounter);
eval ("playershot_" + bulletCounter)._x = _xmouse;
eval ("playershot_" + bulletCounter)._y = _ymouse;
eval ("playershot_" + bulletCounter)._rotation = random(360);
eval ("playershot_" + bulletCounter)._xscale = 100;
eval ("playershot_" + bulletCounter)._yscale = 100;
eval ("playershot_" + bulletCounter).gotoAndPlay("active");
shootSOBJ.start();
}
} else {
weaponPower = weaponPower + 3;
if (weaponPower >= 100) {
weaponPower = 100;
}
gunMeter.updatePerc(weaponPower);
}
if (samusPower <= 0) {
gotoAndPlay (57);
}
healthMeter.updatePerc(samusPower);
var targetCount = targetList.length;
var tempName = "";
var bottleneck = 0;
i = 0;
while (i < targetCount) {
tempName = targetList[i];
if (tempName.indexOf("armor") != -1) {
bottleneck++;
}
i++;
}
if (bottleneck == 0) {
if (difficulty == 1) {
gotoAndPlay (65);
}
if (difficulty == 2) {
gotoAndPlay (113);
}
if (difficulty == 3) {
gotoAndPlay (161);
}
}
Frame 53
gotoAndPlay (52);
Frame 58
morph.gotoAndPlay("hide");
screw.gotoAndPlay("hide");
var targetCount = targetList.length;
var tempName = "";
i = 0;
while (i < targetCount) {
tempName = targetList[i];
removeMovieClip(eval (tempName));
i++;
}
reticle._x = -1000;
reticle._y = -1000;
mouse.show();
Frame 64
stop();
Frame 66
morph.gotoAndPlay("hide");
screw.gotoAndPlay("hide");
var targetCount = targetList.length;
var tempName = "";
i = 0;
while (i < targetCount) {
tempName = targetList[i];
removeMovieClip(eval (tempName));
i++;
}
reticle._x = -1000;
reticle._y = -1000;
mouse.show();
Frame 107
stop();
Frame 111
stop();
Frame 114
morph.gotoAndPlay("hide");
screw.gotoAndPlay("hide");
var targetCount = targetList.length;
var tempName = "";
i = 0;
while (i < targetCount) {
tempName = targetList[i];
removeMovieClip(eval (tempName));
i++;
}
reticle._x = -1000;
reticle._y = -1000;
mouse.show();
Frame 155
stop();
Frame 159
stop();
Frame 162
morph.gotoAndPlay("hide");
screw.gotoAndPlay("hide");
var targetCount = targetList.length;
var tempName = "";
i = 0;
while (i < targetCount) {
tempName = targetList[i];
removeMovieClip(eval (tempName));
i++;
}
reticle._x = -1000;
reticle._y = -1000;
mouse.show();
Frame 203
stop();
Frame 367
stop();
Frame 376
Frame 456
metroid_1.gotoAndPlay("shift");
metroid_2.gotoAndPlay("shift");
metroid_3.gotoAndPlay("shift");
metroid_4.gotoAndPlay("shift");
metroid_5.gotoAndPlay("shift");
metroid_6.gotoAndPlay("shift");
metroid_7.gotoAndPlay("shift");
metroid_8.gotoAndPlay("shift");
Frame 509
stop();
Symbol 3 MovieClip Frame 1
Symbol 3 MovieClip Frame 2
stop();
Symbol 3 MovieClip Frame 3
_rotation = (_rotation + 30);
if (_xscale >= 24) {
_xscale = (_xscale - 8);
_yscale = (_yscale - 8);
} else {
_root.checkForImpact(_x, _y, this._name);
this.removeMovieClip();
}
Symbol 3 MovieClip Frame 4
gotoAndPlay(_currentframe - 1);
Symbol 16 MovieClip Frame 8
stop();
Symbol 18 MovieClip Frame 2
stop();
Symbol 18 MovieClip Frame 3
function bulletHit() {
if (_currentframe < 48) {
gotoAndPlay (58);
}
}
Symbol 18 MovieClip Frame 48
_root.samusPower = _root.samusPower - 3;
Symbol 18 MovieClip Frame 57
this.removeMovieClip();
Symbol 18 MovieClip Frame 67
this.removeMovieClip();
Symbol 25 MovieClip Frame 2
stop();
Symbol 25 MovieClip Frame 8
gotoAndPlay (1);
Symbol 32 MovieClip Frame 1
function bulletHit() {
hitpoints--;
if (hitpoints <= 0) {
if (_currentframe < 68) {
gotoAndPlay (93);
}
} else {
ouch.gotoAndPlay("ouch");
}
}
Symbol 32 MovieClip Frame 2
stop();
Symbol 32 MovieClip Frame 86
_root.samusPower = _root.samusPower - 2;
Symbol 32 MovieClip Frame 87
_root.samusPower = _root.samusPower - 3;
Symbol 32 MovieClip Frame 88
_root.samusPower = _root.samusPower - 2;
Symbol 32 MovieClip Frame 89
_root.samusPower = _root.samusPower - 3;
Symbol 32 MovieClip Frame 90
_root.samusPower = _root.samusPower - 2;
Symbol 32 MovieClip Frame 92
this.removeMovieClip();
Symbol 32 MovieClip Frame 102
this.removeMovieClip();
Symbol 38 MovieClip Frame 6
gotoAndPlay (1);
Symbol 41 MovieClip Frame 6
gotoAndPlay (1);
Symbol 44 MovieClip Frame 1
function bulletHit() {
hitpoints--;
if (hitpoints <= 0) {
if (_currentframe < 53) {
gotoAndPlay (64);
}
} else {
ouch.gotoAndPlay("ouch");
}
}
Symbol 44 MovieClip Frame 2
stop();
Symbol 44 MovieClip Frame 53
_root.samusPower = _root.samusPower - 8;
Symbol 44 MovieClip Frame 63
this.removeMovieClip();
Symbol 44 MovieClip Frame 74
this.removeMovieClip();
Symbol 51 MovieClip Frame 2
stop();
Symbol 51 MovieClip Frame 9
gotoAndPlay (1);
Symbol 59 MovieClip Frame 2
stop();
Symbol 59 MovieClip Frame 15
gotoAndPlay (3);
Symbol 59 MovieClip Frame 28
gotoAndPlay (16);
Symbol 61 MovieClip Frame 1
function bulletHit() {
_root.samusHitPoints--;
_root.samusTimer = getTimer() + 12000;
jump.ouch._rotation = random(360);
jump.ouch.gotoAndPlay("ouch");
if (_root.samusHitPoints <= 0) {
_root.samusHitPoints = _root.samusHpStun;
gotoAndPlay (86);
_root.gotoAndPlay("decostume");
}
}
Symbol 61 MovieClip Frame 2
stop();
Symbol 61 MovieClip Frame 3
jump.gotoAndPlay("CCW Loop");
Symbol 61 MovieClip Frame 85
_root.anim = 0;
_root.animTimer = getTimer() + 800;
stop();
Symbol 61 MovieClip Frame 87
stop();
Symbol 61 MovieClip Frame 90
jump.gotoAndPlay("CW Loop");
Symbol 61 MovieClip Frame 172
_root.anim = 0;
_root.animTimer = getTimer() + 800;
stop();
Symbol 68 MovieClip Frame 2
stop();
Symbol 68 MovieClip Frame 10
stop();
Symbol 69 MovieClip Frame 2
stop();
Symbol 69 MovieClip Frame 7
gotoAndPlay (3);
Symbol 69 MovieClip Frame 12
gotoAndPlay (8);
Symbol 70 MovieClip Frame 1
function bulletHit() {
_root.samusHitPoints--;
_root.samusTimer = getTimer() + 12000;
morph.ouch.gotoAndPlay("ouch");
if (_root.samusHitPoints <= 0) {
_root.samusHitPoints = _root.samusHpStun;
gotoAndPlay (124);
_root.gotoAndPlay("decostume");
}
}
Symbol 70 MovieClip Frame 2
stop();
Symbol 70 MovieClip Frame 3
morph.gotoAndPlay("CCW");
Symbol 70 MovieClip Frame 62
_root.anim = 0;
_root.animTimer = getTimer() + 800;
stop();
Symbol 70 MovieClip Frame 63
morph.gotoAndPlay("CW");
Symbol 70 MovieClip Frame 123
_root.anim = 0;
_root.animTimer = getTimer() + 800;
stop();
Symbol 70 MovieClip Frame 125
stop();
Symbol 70 MovieClip Frame 126
morph.gotoAndPlay("CCW");
Symbol 70 MovieClip Frame 192
_root.anim = 0;
_root.animTimer = getTimer() + 800;
stop();
Symbol 70 MovieClip Frame 193
morph.gotoAndPlay("CW");
Symbol 70 MovieClip Frame 259
_root.anim = 0;
_root.animTimer = getTimer() + 800;
stop();
Symbol 73 MovieClip Frame 1
stop();
Symbol 74 MovieClip Frame 1
function updatePerc(myPerc) {
bar._x = leftmost - (barwidth * (1 - (myPerc / 100)));
bar.gotoAndStop(100 - myPerc);
}
leftmost = bar._x;
barwidth = 152;
Symbol 98 Button
on (release) {
gotoAndPlay (4);
}
Symbol 99 Button
on (release) {
gotoAndPlay (14);
}
Symbol 109 Button
on (release) {
Mouse.hide();
samusHpStun = 1;
samusHpPer = 1;
totalAnims = 10;
numOfArmorPieces = 14;
difficulty = 1;
gotoAndPlay (31);
}
Symbol 110 Button
on (release) {
Mouse.hide();
samusHpStun = 1;
samusHpPer = 1;
totalAnims = 8;
difficulty = 2;
numOfArmorPieces = 35;
gotoAndPlay (31);
}
Symbol 111 Button
on (release) {
Mouse.hide();
samusHpStun = 1;
samusHpPer = 1;
totalAnims = 6;
difficulty = 3;
numOfArmorPieces = 37;
gotoAndPlay (31);
}
Symbol 114 Button
on (release) {
gotoAndPlay (18);
}
Symbol 115 Button
on (release) {
gotoAndPlay (2);
}
Symbol 117 Button
on (release) {
gotoAndPlay (22);
}
Symbol 118 Button
on (release) {
gotoAndPlay (14);
}
Symbol 137 MovieClip Frame 2
if (_root.nudity == 1) {
gotoAndPlay (4);
}
Symbol 137 MovieClip Frame 3
stop();
Symbol 137 MovieClip Frame 5
stop();
Symbol 143 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[37] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 143 MovieClip Frame 2
stop();
Symbol 143 MovieClip Frame 9
gotoAndPlay (1);
Symbol 143 MovieClip Frame 39
stop();
Symbol 149 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[36] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 149 MovieClip Frame 2
stop();
Symbol 149 MovieClip Frame 9
gotoAndPlay (1);
Symbol 149 MovieClip Frame 39
stop();
Symbol 152 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[35] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 152 MovieClip Frame 2
stop();
Symbol 152 MovieClip Frame 9
gotoAndPlay (1);
Symbol 152 MovieClip Frame 28
stop();
Symbol 154 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[30] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 154 MovieClip Frame 2
stop();
Symbol 154 MovieClip Frame 9
gotoAndPlay (1);
Symbol 154 MovieClip Frame 28
stop();
Symbol 156 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[34] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 156 MovieClip Frame 2
stop();
Symbol 156 MovieClip Frame 9
gotoAndPlay (1);
Symbol 156 MovieClip Frame 28
stop();
Symbol 158 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[29] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 158 MovieClip Frame 2
stop();
Symbol 158 MovieClip Frame 9
gotoAndPlay (1);
Symbol 158 MovieClip Frame 28
stop();
Symbol 160 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[26] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 160 MovieClip Frame 2
stop();
Symbol 160 MovieClip Frame 9
gotoAndPlay (1);
Symbol 160 MovieClip Frame 28
stop();
Symbol 162 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[27] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 162 MovieClip Frame 2
stop();
Symbol 162 MovieClip Frame 9
gotoAndPlay (1);
Symbol 162 MovieClip Frame 28
stop();
Symbol 164 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[33] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 164 MovieClip Frame 2
stop();
Symbol 164 MovieClip Frame 9
gotoAndPlay (1);
Symbol 164 MovieClip Frame 28
stop();
Symbol 166 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[32] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 166 MovieClip Frame 2
stop();
Symbol 166 MovieClip Frame 9
gotoAndPlay (1);
Symbol 166 MovieClip Frame 28
stop();
Symbol 168 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[24] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 168 MovieClip Frame 2
stop();
Symbol 168 MovieClip Frame 9
gotoAndPlay (1);
Symbol 168 MovieClip Frame 28
stop();
Symbol 170 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[31] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 170 MovieClip Frame 2
stop();
Symbol 170 MovieClip Frame 9
gotoAndPlay (1);
Symbol 170 MovieClip Frame 28
stop();
Symbol 172 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[28] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 172 MovieClip Frame 2
stop();
Symbol 172 MovieClip Frame 9
gotoAndPlay (1);
Symbol 172 MovieClip Frame 28
stop();
Symbol 174 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[25] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 174 MovieClip Frame 2
stop();
Symbol 174 MovieClip Frame 9
gotoAndPlay (1);
Symbol 174 MovieClip Frame 28
stop();
Symbol 176 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[23] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 176 MovieClip Frame 2
stop();
Symbol 176 MovieClip Frame 9
gotoAndPlay (1);
Symbol 176 MovieClip Frame 28
stop();
Symbol 178 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[22] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 178 MovieClip Frame 2
stop();
Symbol 178 MovieClip Frame 9
gotoAndPlay (1);
Symbol 178 MovieClip Frame 28
stop();
Symbol 180 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[17] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 180 MovieClip Frame 2
stop();
Symbol 180 MovieClip Frame 9
gotoAndPlay (1);
Symbol 180 MovieClip Frame 28
stop();
Symbol 182 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[18] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 182 MovieClip Frame 2
stop();
Symbol 182 MovieClip Frame 9
gotoAndPlay (1);
Symbol 182 MovieClip Frame 28
stop();
Symbol 184 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[19] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 184 MovieClip Frame 2
stop();
Symbol 184 MovieClip Frame 9
gotoAndPlay (1);
Symbol 184 MovieClip Frame 28
stop();
Symbol 186 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[20] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 186 MovieClip Frame 2
stop();
Symbol 186 MovieClip Frame 9
gotoAndPlay (1);
Symbol 186 MovieClip Frame 28
stop();
Symbol 188 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[21] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 188 MovieClip Frame 2
stop();
Symbol 188 MovieClip Frame 9
gotoAndPlay (1);
Symbol 188 MovieClip Frame 28
stop();
Symbol 191 MovieClip Frame 3
stop();
Symbol 191 MovieClip Frame 6
stop();
Symbol 192 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[15] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
if (difficulty >= 3) {
breast.gotoAndPlay("nip");
} else {
breast.gotoAndPlay("no nip");
}
Symbol 192 MovieClip Frame 2
stop();
Symbol 192 MovieClip Frame 9
gotoAndPlay (1);
Symbol 192 MovieClip Frame 28
stop();
Symbol 195 MovieClip Frame 3
stop();
Symbol 195 MovieClip Frame 6
stop();
Symbol 196 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[16] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
if (difficulty >= 3) {
breast.gotoAndPlay("nip");
} else {
breast.gotoAndPlay("no nip");
}
Symbol 196 MovieClip Frame 2
stop();
Symbol 196 MovieClip Frame 9
gotoAndPlay (1);
Symbol 196 MovieClip Frame 28
stop();
Symbol 199 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[13] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 199 MovieClip Frame 2
stop();
Symbol 199 MovieClip Frame 9
gotoAndPlay (1);
Symbol 199 MovieClip Frame 42
stop();
Symbol 200 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[14] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 200 MovieClip Frame 2
stop();
Symbol 200 MovieClip Frame 9
gotoAndPlay (1);
Symbol 200 MovieClip Frame 42
stop();
Symbol 205 MovieClip Frame 15
stop();
Symbol 206 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[12] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (12);
}
}
Symbol 206 MovieClip Frame 2
stop();
Symbol 206 MovieClip Frame 9
gotoAndPlay (1);
Symbol 206 MovieClip Frame 42
stop();
Symbol 208 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[10] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 208 MovieClip Frame 2
stop();
Symbol 208 MovieClip Frame 9
gotoAndPlay (1);
Symbol 208 MovieClip Frame 42
stop();
Symbol 210 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[11] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 210 MovieClip Frame 2
stop();
Symbol 210 MovieClip Frame 9
gotoAndPlay (1);
Symbol 210 MovieClip Frame 42
stop();
Symbol 212 MovieClip Frame 2
stop();
Symbol 212 MovieClip Frame 4
stop();
Symbol 214 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[8] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 214 MovieClip Frame 2
stop();
Symbol 214 MovieClip Frame 9
gotoAndPlay (1);
Symbol 214 MovieClip Frame 42
stop();
Symbol 216 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[7] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 216 MovieClip Frame 2
stop();
Symbol 216 MovieClip Frame 9
gotoAndPlay (1);
Symbol 216 MovieClip Frame 42
stop();
Symbol 218 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[9] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 218 MovieClip Frame 2
stop();
Symbol 218 MovieClip Frame 9
gotoAndPlay (1);
Symbol 218 MovieClip Frame 42
stop();
Symbol 223 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[6] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (12);
}
}
Symbol 223 MovieClip Frame 2
stop();
Symbol 223 MovieClip Frame 9
gotoAndPlay (1);
Symbol 223 MovieClip Frame 42
stop();
Symbol 225 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[1] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 225 MovieClip Frame 2
stop();
Symbol 225 MovieClip Frame 9
gotoAndPlay (1);
Symbol 225 MovieClip Frame 42
stop();
Symbol 227 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[3] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 227 MovieClip Frame 2
stop();
Symbol 227 MovieClip Frame 9
gotoAndPlay (1);
Symbol 227 MovieClip Frame 42
stop();
Symbol 229 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[4] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 229 MovieClip Frame 2
stop();
Symbol 229 MovieClip Frame 9
gotoAndPlay (1);
Symbol 229 MovieClip Frame 42
stop();
Symbol 232 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[5] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 232 MovieClip Frame 2
stop();
Symbol 232 MovieClip Frame 9
gotoAndPlay (1);
Symbol 232 MovieClip Frame 12
_root.hair_1.gotoAndPlay("hair");
Symbol 232 MovieClip Frame 42
stop();
Symbol 234 MovieClip Frame 1
function bullethit() {
hitpoints--;
_root.hitpointList[2] = hitpoints;
gotoAndPlay (3);
if (hitpoints <= 0) {
var temp = this._name;
var test = "";
var listCount = _root.targetList.length;
i = 0;
while (i < listCount) {
test = _root.targetList[i];
if (temp == test) {
_root.targetList.splice(i, 1);
}
i++;
}
gotoAndPlay (11);
}
}
Symbol 234 MovieClip Frame 2
stop();
Symbol 234 MovieClip Frame 9
gotoAndPlay (1);
Symbol 234 MovieClip Frame 42
stop();
Symbol 243 Button
on (release) {
gotoAndPlay (1);
}
Symbol 248 Button
on (release) {
gotoAndPlay (108);
}
Symbol 249 Button
on (release) {
gotoAndPlay (1);
}
Symbol 252 Button
on (release) {
gotoAndPlay (156);
}
Symbol 254 Button
on (release) {
gotoAndPlay (204);
}
Symbol 261 MovieClip Frame 2
if (_root.nudity == 1) {
gotoAndPlay (4);
}
Symbol 261 MovieClip Frame 3
stop();
Symbol 261 MovieClip Frame 5
stop();
Symbol 270 MovieClip Frame 2
Symbol 270 MovieClip Frame 52
stop();
Symbol 274 MovieClip Frame 2
Symbol 274 MovieClip Frame 52
stop();
Symbol 278 MovieClip Frame 2
Symbol 278 MovieClip Frame 52
stop();
Symbol 282 MovieClip Frame 2
Symbol 282 MovieClip Frame 52
stop();
Symbol 286 MovieClip Frame 2
Symbol 286 MovieClip Frame 52
stop();
Symbol 290 MovieClip Frame 2
Symbol 290 MovieClip Frame 52
stop();
Symbol 294 MovieClip Frame 2
Symbol 294 MovieClip Frame 52
stop();
Symbol 298 MovieClip Frame 2
Symbol 298 MovieClip Frame 52
stop();
Symbol 302 MovieClip Frame 9
gotoAndPlay (1);