Frame 1
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded / bytes_total;
_root.loadBar._width = getPercent * 100;
_root.loadText = Math.round(getPercent * 100) + "%";
if (bytes_loaded == bytes_total) {
_root.gotoAndPlay(3);
}
Frame 2
gotoAndPlay (1);
Frame 3
stop();
Frame 5
Stage.showMenu = false;
function Vector(x, y) {
var _local4 = this;
var _local3 = y;
var _local2 = x;
_local4.x = _local2;
_local4.y = _local3;
_local4.length = Math.sqrt((_local2 * _local2) + (_local3 * _local3));
}
function constrain(p0, p1, l) {
var _local5 = 0.025;
var _local9 = p1._x - p0._x;
var _local8 = p1._y - p0._y;
var _local3 = new Vector(_local9, _local8);
var _local4 = (_local3.length - l) / _local3.length;
var _local7 = (_local3.x * 0.5) * _local4;
var _local6 = (_local3.y * 0.5) * _local4;
p1._x = p1._x - (_local7 - _local5);
p1._y = p1._y - _local6;
p0._x = p0._x + (_local7 + _local5);
p0._y = p0._y + _local6;
}
function update() {
var _local3 = this;
var _local4;
var _local2 = 0;
while (_local2 < joints.length) {
_local3[joints[_local2]].update();
_local2++;
}
}
function collisions() {
var _local3;
var _local6;
var _local5;
var _local4 = false;
var _local2 = 0;
while (_local2 < joints.length) {
_local3 = this[joints[_local2]];
if (_local3.collisions()) {
_local4 = true;
_local6 = _local3._x;
_local5 = _local3._y;
}
_local2++;
}
if (_local4) {
if (!soundplaying) {
var _local7 = new Sound(this);
_local7.onSoundComplete = function () {
soundplaying = false;
};
var _local8 = random(3);
var _local9 = -100 + ((head._x * 200) / 440);
_local7.attachSound("break" + _local8);
_local7.start(0, 0);
_local7.setVolume(75);
_local7.setPan(_local9);
soundplaying = true;
}
drawblood(_local6, _local5);
}
}
function constraints() {
var _local1 = 0;
while (_local1 < 2) {
constrain(lhand, lelbow, 8);
constrain(lelbow, neck, 19);
constrain(rhand, relbow, 8);
constrain(relbow, neck, 19);
constrain(neck, waist, 15);
constrain(lknee, waist, 15);
constrain(lfoot, lknee, 15);
constrain(rknee, waist, 15);
constrain(rfoot, rknee, 15);
constrain(head, neck, 3.5);
_local1++;
}
}
function setup() {
var _local4 = this;
constraints();
var _local2;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = _local4[joints[_local3]];
_local2.lx = _local2._x;
_local2.ly = _local2._y;
_local3++;
}
}
function drawblood(x, y) {
var _local3 = y;
var _local2;
var _local1 = 0;
while (_local1 <= (random(3) + 3)) {
_local2 = attachMovie("Blood", "Blood" + blooddepth, blooddepth++);
_local2._x = x;
_local2._y = _local3;
_local1++;
}
}
function drawhead(col) {
var _local3 = 0;
var _local4 = 0;
var _local2 = 7;
head.beginFill(((col == undefined) ? 0 : (col)), 100);
head.moveTo(_local3 + _local2, _local4);
var _local1 = 0;
while (_local1 <= 6.283185) {
head.lineTo(_local3 + (Math.cos(_local1) * _local2), _local4 + (Math.sin(_local1) * _local2));
_local1 = _local1 + 0.06981317;
}
head.endFill();
}
function draw(col) {
clear();
lineStyle(3, ((col == undefined) ? 0 : (col)), 100);
moveTo(lhand._x, lhand._y);
lineTo(lelbow._x, lelbow._y);
lineTo(neck._x, neck._y);
lineTo(relbow._x, relbow._y);
lineTo(rhand._x, rhand._y);
moveTo(neck._x, neck._y);
lineTo(waist._x, waist._y);
lineTo(lknee._x, lknee._y);
lineTo(lfoot._x, lfoot._y);
moveTo(waist._x, waist._y);
lineTo(rknee._x, rknee._y);
lineTo(rfoot._x, rfoot._y);
var _local1 = neck._x - head._x;
var _local2 = neck._y - head._y;
head._rotation = (Math.atan2(_local2, _local1) * 180) / 3.141593;
}
function onEnterFrame() {
update();
constraints();
collisions();
draw(ragdollcolor);
}
stop();
MovieClip.prototype.useHandCursor = false;
var dragging = null;
var blooddepth = 0;
var soundplaying = false;
var ragdollcolor = 1;
var joints = new Array("lhand", "lelbow", "rhand", "relbow", "neck", "waist", "lknee", "lfoot", "rknee", "rfoot", "head");
drawhead(ragdollcolor);
setup();
stop();
Mouse.hide();
stop();
stop();
stop();
text3 = 1;
Frame 6
function Vector(x, y) {
var _local4 = this;
var _local3 = y;
var _local2 = x;
_local4.x = _local2;
_local4.y = _local3;
_local4.length = Math.sqrt((_local2 * _local2) + (_local3 * _local3));
}
function constrain(p0, p1, l) {
var _local5 = 0.025;
var _local9 = p1._x - p0._x;
var _local8 = p1._y - p0._y;
var _local3 = new Vector(_local9, _local8);
var _local4 = (_local3.length - l) / _local3.length;
var _local7 = (_local3.x * 0.5) * _local4;
var _local6 = (_local3.y * 0.5) * _local4;
p1._x = p1._x - (_local7 - _local5);
p1._y = p1._y - _local6;
p0._x = p0._x + (_local7 + _local5);
p0._y = p0._y + _local6;
}
function update() {
var _local3 = this;
var _local4;
var _local2 = 0;
while (_local2 < joints.length) {
_local3[joints[_local2]].update();
_local2++;
}
}
function collisions() {
var _local3;
var _local6;
var _local5;
var _local4 = false;
var _local2 = 0;
while (_local2 < joints.length) {
_local3 = this[joints[_local2]];
if (_local3.collisions()) {
_local4 = true;
_local6 = _local3._x;
_local5 = _local3._y;
}
_local2++;
}
if (_local4) {
if (!soundplaying) {
var _local7 = new Sound(this);
_local7.onSoundComplete = function () {
soundplaying = false;
};
var _local8 = random(3);
var _local9 = -100 + ((head._x * 200) / 440);
_local7.attachSound("break" + _local8);
_local7.start(0, 0);
_local7.setVolume(75);
_local7.setPan(_local9);
soundplaying = true;
}
drawblood(_local6, _local5);
}
}
function constraints() {
var _local1 = 0;
while (_local1 < 2) {
constrain(lhand, lelbow, 8);
constrain(lelbow, neck, 19);
constrain(rhand, relbow, 8);
constrain(relbow, neck, 19);
constrain(neck, waist, 15);
constrain(lknee, waist, 15);
constrain(lfoot, lknee, 15);
constrain(rknee, waist, 15);
constrain(rfoot, rknee, 15);
constrain(head, neck, 3.5);
_local1++;
}
}
function setup() {
var _local4 = this;
constraints();
var _local2;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = _local4[joints[_local3]];
_local2.lx = _local2._x;
_local2.ly = _local2._y;
_local3++;
}
}
function drawblood(x, y) {
var _local3 = y;
var _local2;
var _local1 = 0;
while (_local1 <= (random(3) + 3)) {
_local2 = attachMovie("Blood", "Blood" + blooddepth, blooddepth++);
_local2._x = x;
_local2._y = _local3;
_local1++;
}
}
function drawhead(col) {
var _local3 = 0;
var _local4 = 0;
var _local2 = 7;
head.beginFill(((col == undefined) ? 0 : (col)), 100);
head.moveTo(_local3 + _local2, _local4);
var _local1 = 0;
while (_local1 <= 6.283185) {
head.lineTo(_local3 + (Math.cos(_local1) * _local2), _local4 + (Math.sin(_local1) * _local2));
_local1 = _local1 + 0.06981317;
}
head.endFill();
}
function draw(col) {
clear();
lineStyle(3, ((col == undefined) ? 0 : (col)), 100);
moveTo(lhand._x, lhand._y);
lineTo(lelbow._x, lelbow._y);
lineTo(neck._x, neck._y);
lineTo(relbow._x, relbow._y);
lineTo(rhand._x, rhand._y);
moveTo(neck._x, neck._y);
lineTo(waist._x, waist._y);
lineTo(lknee._x, lknee._y);
lineTo(lfoot._x, lfoot._y);
moveTo(waist._x, waist._y);
lineTo(rknee._x, rknee._y);
lineTo(rfoot._x, rfoot._y);
var _local1 = neck._x - head._x;
var _local2 = neck._y - head._y;
head._rotation = (Math.atan2(_local2, _local1) * 180) / 3.141593;
}
function onEnterFrame() {
update();
constraints();
collisions();
draw(ragdollcolor);
}
stop();
MovieClip.prototype.useHandCursor = false;
var dragging = null;
var blooddepth = 0;
var soundplaying = false;
var ragdollcolor = 1;
var joints = new Array("lhand", "lelbow", "rhand", "relbow", "neck", "waist", "lknee", "lfoot", "rknee", "rfoot", "head");
drawhead(ragdollcolor);
setup();
stop();
Mouse.hide();
stop();
stop();
stop();
text3 = 1;
Frame 7
numb3 = 100;
i = 0;
score = 0;
health = 100;
lives = 1;
hitt = "none";
inv = 0;
onEnterFrame = function () {
if (inv > 19) {
sounds.gotoAndPlay(2);
}
inv = inv - 1;
timer = timer + 1;
if (random(5) == 1) {
i = i + 1;
duplicateMovieClip (icefirst, "iceic" + i, i);
}
if (timer == 10) {
if (10 < num3) {
timer = 0;
num3 = num3 - 1;
}
}
};
function Vector(x, y) {
var _local4 = this;
var _local3 = y;
var _local2 = x;
_local4.x = _local2;
_local4.y = _local3;
_local4.length = Math.sqrt((_local2 * _local2) + (_local3 * _local3));
}
function constrain(p0, p1, l) {
var _local5 = 0.025;
var _local9 = p1._x - p0._x;
var _local8 = p1._y - p0._y;
var _local3 = new Vector(_local9, _local8);
var _local4 = (_local3.length - l) / _local3.length;
var _local7 = (_local3.x * 0.5) * _local4;
var _local6 = (_local3.y * 0.5) * _local4;
p1._x = p1._x - (_local7 - _local5);
p1._y = p1._y - _local6;
p0._x = p0._x + (_local7 + _local5);
p0._y = p0._y + _local6;
}
function update() {
var _local3 = this;
var _local4;
var _local2 = 0;
while (_local2 < joints.length) {
_local3[joints[_local2]].update();
_local2++;
}
}
function collisions() {
var _local3;
var _local6;
var _local5;
var _local4 = false;
var _local2 = 0;
while (_local2 < joints.length) {
_local3 = this[joints[_local2]];
if (_local3.collisions()) {
_local4 = true;
_local6 = _local3._x;
_local5 = _local3._y;
}
_local2++;
}
if (_local4) {
if (!soundplaying) {
var _local7 = new Sound(this);
_local7.onSoundComplete = function () {
soundplaying = false;
};
var _local8 = random(3);
var _local9 = -100 + ((head._x * 200) / 440);
_local7.attachSound("break" + _local8);
_local7.start(0, 0);
_local7.setVolume(75);
_local7.setPan(_local9);
soundplaying = true;
}
drawblood(_local6, _local5);
}
}
function constraints() {
var _local1 = 0;
while (_local1 < 2) {
constrain(lhand, lelbow, 8);
constrain(lelbow, neck, 19);
constrain(rhand, relbow, 8);
constrain(relbow, neck, 19);
constrain(neck, waist, 15);
constrain(lknee, waist, 15);
constrain(lfoot, lknee, 15);
constrain(rknee, waist, 15);
constrain(rfoot, rknee, 15);
constrain(head, neck, 3.5);
_local1++;
}
}
function setup() {
var _local4 = this;
constraints();
var _local2;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = _local4[joints[_local3]];
_local2.lx = _local2._x;
_local2.ly = _local2._y;
_local3++;
}
}
function drawblood(x, y) {
var _local3 = y;
var _local2;
var _local1 = 0;
while (_local1 <= (random(3) + 3)) {
_local2 = attachMovie("Blood", "Blood" + blooddepth, blooddepth++);
_local2._x = x;
_local2._y = _local3;
_local1++;
}
}
function drawhead(col) {
var _local3 = 0;
var _local4 = 0;
var _local2 = 7;
head.beginFill(((col == undefined) ? 0 : (col)), 100);
head.moveTo(_local3 + _local2, _local4);
var _local1 = 0;
while (_local1 <= 6.283185) {
head.lineTo(_local3 + (Math.cos(_local1) * _local2), _local4 + (Math.sin(_local1) * _local2));
_local1 = _local1 + 0.06981317;
}
head.endFill();
}
function draw(col) {
clear();
lineStyle(3, ((col == undefined) ? 0 : (col)), 100);
moveTo(lhand._x, lhand._y);
lineTo(lelbow._x, lelbow._y);
lineTo(neck._x, neck._y);
lineTo(relbow._x, relbow._y);
lineTo(rhand._x, rhand._y);
moveTo(neck._x, neck._y);
lineTo(waist._x, waist._y);
lineTo(lknee._x, lknee._y);
lineTo(lfoot._x, lfoot._y);
moveTo(waist._x, waist._y);
lineTo(rknee._x, rknee._y);
lineTo(rfoot._x, rfoot._y);
var _local1 = neck._x - head._x;
var _local2 = neck._y - head._y;
head._rotation = (Math.atan2(_local2, _local1) * 180) / 3.141593;
}
function onEnterFrame() {
update();
constraints();
collisions();
draw(ragdollcolor);
}
stop();
MovieClip.prototype.useHandCursor = false;
var dragging = null;
var blooddepth = 0;
var soundplaying = false;
var ragdollcolor = 1;
var joints = new Array("lhand", "lelbow", "rhand", "relbow", "neck", "waist", "lknee", "lfoot", "rknee", "rfoot", "head");
drawhead(ragdollcolor);
setup();
stop();
Mouse.hide();
stop();
stop();
stop();
text3 = 1;
Instance of Symbol 53 MovieClip "circ" in Frame 7
onClipEvent (load) {
up = 0;
}
onClipEvent (enterFrame) {
up = up + 1;
if (up == 15) {
_x = random(450);
_y = random(300);
up = 0;
}
}
Instance of Symbol 53 MovieClip "circ" in Frame 7
onClipEvent (load) {
up = 0;
}
onClipEvent (enterFrame) {
up = up + 1;
if (up == 15) {
_x = random(450);
_y = random(300);
up = 0;
}
}
Instance of Symbol 53 MovieClip "circ" in Frame 7
onClipEvent (load) {
up = 0;
}
onClipEvent (enterFrame) {
up = up + 1;
if (up == 15) {
_x = random(450);
_y = random(300);
up = 0;
}
}
Instance of Symbol 53 MovieClip "circ" in Frame 7
onClipEvent (load) {
up = 0;
}
onClipEvent (enterFrame) {
up = up + 1;
if (up == 15) {
_x = random(450);
_y = random(300);
up = 0;
}
}
Instance of Symbol 53 MovieClip "circ" in Frame 7
onClipEvent (load) {
up = 0;
}
onClipEvent (enterFrame) {
up = up + 1;
if (up == 15) {
_x = random(450);
_y = random(300);
up = 0;
}
}
Instance of Symbol 62 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (_x < -2126) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
_root.inv = _root.inv - 1;
_x = (_x - 2);
if (_root.inv < 1) {
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_root.head.hat.play();
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Head";
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_root.hitt = "Neck";
_root.head.hat.play();
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
_root.health = _root.health - 5;
_root.inv = 20;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_root.hitt = "Right Elbow";
_root.head.hat.play();
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_root.hitt = "Left Elbow";
_root.head.hat.play();
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_root.hitt = "Left Hand";
_root.head.hat.play();
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_root.hitt = "Right Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.head.hat.play();
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.head.hat.play();
_root.hitt = "Waist";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_root.inv = 20;
_root.head.hat.play();
_root.health = _root.health - 5;
_root.hitt = "Right Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.head.hat.play();
_root.hitt = "Right Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Knee";
_root.head.hat.play();
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.head.hat.play();
_root.hitt = "Left Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
}
}
Instance of Symbol 70 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (0 > _root.health) {
_root.lives = _root.lives + 1;
_root.health = 100;
}
gotoAndStop(_root.health);
}
Instance of Symbol 78 MovieClip in Frame 7
onClipEvent (enterFrame) {
gotoAndStop(_root.lives);
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 97 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (_x < -2026) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
_root.inv = _root.inv - 1;
_x = (_x - 2);
if (_root.inv < 1) {
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Head";
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_root.hitt = "Neck";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
_root.health = _root.health - 5;
_root.inv = 20;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_root.hitt = "Right Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_root.hitt = "Left Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_root.hitt = "Left Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_root.hitt = "Right Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Waist";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
}
}
Instance of Symbol 100 MovieClip in Frame 8
onClipEvent (enterFrame) {
_alpha = (_alpha - 1);
}
Instance of Symbol 106 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (_x < -2226) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
_root.inv = _root.inv - 1;
_x = (_x - 2);
if (_root.inv < 1) {
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Head";
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_root.hitt = "Neck";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
_root.health = _root.health - 5;
_root.inv = 20;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_root.hitt = "Right Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_root.hitt = "Left Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_root.hitt = "Left Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_root.hitt = "Right Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Waist";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
}
}
Instance of Symbol 108 MovieClip in Frame 9
onClipEvent (enterFrame) {
_alpha = (_alpha - 1);
}
Instance of Symbol 111 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (_x < -1126) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
_root.inv = _root.inv - 1;
_x = (_x - 2);
if (_root.inv < 1) {
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Head";
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_root.hitt = "Neck";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
_root.health = _root.health - 5;
_root.inv = 20;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_root.hitt = "Right Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_root.hitt = "Left Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_root.hitt = "Left Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_root.hitt = "Right Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Waist";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
}
}
Instance of Symbol 113 MovieClip in Frame 10
onClipEvent (enterFrame) {
_alpha = (_alpha - 1);
}
Instance of Symbol 116 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (_x < -2126) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
_root.inv = _root.inv - 1;
_x = (_x - 2);
if (_root.inv < 1) {
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Head";
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_root.hitt = "Neck";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
_root.health = _root.health - 5;
_root.inv = 20;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_root.hitt = "Right Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_root.hitt = "Left Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_root.hitt = "Left Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_root.hitt = "Right Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Waist";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
}
}
Instance of Symbol 118 MovieClip in Frame 11
onClipEvent (enterFrame) {
_alpha = (_alpha - 1);
}
Instance of Symbol 133 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (_x < -2726) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
_root.inv = _root.inv - 1;
_x = (_x - 2);
if (_root.inv < 1) {
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Head";
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_root.hitt = "Neck";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
_root.health = _root.health - 5;
_root.inv = 20;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_root.hitt = "Right Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_root.hitt = "Left Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_root.hitt = "Left Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_root.hitt = "Right Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Waist";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
}
}
Instance of Symbol 135 MovieClip in Frame 12
onClipEvent (enterFrame) {
_alpha = (_alpha - 1);
}
Instance of Symbol 138 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - 2);
}
Instance of Symbol 140 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (_x < -1526) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
_root.inv = _root.inv - 1;
_x = (_x - 2);
if (_root.inv < 1) {
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Head";
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_root.hitt = "Neck";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
_root.health = _root.health - 5;
_root.inv = 20;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_root.hitt = "Right Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_root.hitt = "Left Elbow";
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_root.hitt = "Left Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_root.hitt = "Right Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Waist";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Right Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
}
}
Instance of Symbol 142 MovieClip in Frame 13
onClipEvent (enterFrame) {
_alpha = (_alpha - 1);
}
Instance of Symbol 152 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (_x < -2126) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 4));
}
_root.inv = _root.inv - 1;
_x = (_x - 2);
if (_root.inv < 1) {
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_root.head.hat.play();
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Head";
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_root.hitt = "Neck";
_root.head.hat.play();
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
_root.health = _root.health - 5;
_root.inv = 20;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_root.hitt = "Right Elbow";
_root.head.hat.play();
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_root.hitt = "Left Elbow";
_root.head.hat.play();
_root.inv = 20;
_root.health = _root.health - 5;
_root.sounds.gotoAndPlay(2);
_root.inv = 20;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_root.hitt = "Left Hand";
_root.head.hat.play();
_root.inv = 20;
_root.health = _root.health - 5;
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_root.hitt = "Right Hand";
_root.inv = 20;
_root.health = _root.health - 5;
_root.head.hat.play();
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.head.hat.play();
_root.hitt = "Waist";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_root.inv = 20;
_root.head.hat.play();
_root.health = _root.health - 5;
_root.hitt = "Right Knee";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.head.hat.play();
_root.hitt = "Right Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.hitt = "Left Knee";
_root.head.hat.play();
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_root.inv = 20;
_root.health = _root.health - 5;
_root.head.hat.play();
_root.hitt = "Left Foot";
_root.inv = 20;
_root.sounds.gotoAndPlay(2);
}
}
}
Instance of Symbol 154 MovieClip in Frame 14
onClipEvent (enterFrame) {
_alpha = (_alpha - 1);
}
Frame 15
Mouse.show();
fish = score / 100;
hl = 100 - health;
ll = 6 - lives;
ll2 = ll * 100;
hl2 = 0;
hscore = 0;
tsco = score + hscore;
Frame 16
nname = "Input Name";
Instance of Symbol 185 MovieClip in Frame 16
on (release) {
function __rankz_send__(par1, par2, par3, par4) {
par227 = new LoadVars();
par228 = new LoadVars();
par227.flashkey = par2;
par227.SU0249 = par1;
par227.bmFtZTE = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par3);
par227.c2NvcmUx = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par4 + "j%e%a%n%s");
par227.flashkey = par227.flashkey.split("=").join("");
par227.SU0249 = par227.SU0249.split("=").join("");
par228.onLoad = function (success) {
if (success) {
trace(par228.msg);
} else {
trace(par228.loaded);
}
};
par227.sendAndLoad("http://rankz.armorbot.com/submit/", par228, "POST");
}
bXlnYW1lX25hbWVfdmFyaWFibGU = _root.nname;
bXlnYW1lX3Njb3JlX3ZhcmlhYmxl = _root.tsco;
__rankz_send__("MjI5OWolZSVhJW4lcw==", "WE5rWEJra3Q=", bXlnYW1lX25hbWVfdmFyaWFibGU, bXlnYW1lX3Njb3JlX3ZhcmlhYmxl);
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
Frame 17
rankz_t10_send = new LoadVars();
rankz_t10_receive = new LoadVars();
rankz_t10_send.SU0249 = "MjI5OWolZSVhJW4lcw==";
rankz_t10_send.flashkey = "WE5rWEJra3Q=";
rankz_t10_receive.onLoad = function (success) {
if (success) {
_rankz_ar_ = rankz_t10_receive.top10.split("<u/*/u>");
i = 0;
while (i < _rankz_ar_.length) {
tempv = _rankz_ar_[i].split("</*/>");
_root["rankz_n" + (i + 1)].text = tempv[0];
_root["rankz_v" + (i + 1)].text = tempv[1];
i++;
}
} else {
trace("ERROR");
}
};
rankz_t10_send.sendAndLoad("http://rankz.armorbot.com/get/top10.php", rankz_t10_receive, "POST");
Frame 18
Mouse.show();
fish = score / 100;
hl = 100 - health;
ll = 6 - lives;
ll2 = ll * 100;
hl2 = hl + ll2;
hscore = hl2 * 5;
tsco = score + hscore;
Frame 19
nname = "Input Name";
Instance of Symbol 185 MovieClip in Frame 19
on (release) {
function __rankz_send__(par1, par2, par3, par4) {
par227 = new LoadVars();
par228 = new LoadVars();
par227.flashkey = par2;
par227.SU0249 = par1;
par227.bmFtZTE = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par3);
par227.c2NvcmUx = ab3.rankz.Armor_Bot_30_En_AS1.Encode(par4 + "j%e%a%n%s");
par227.flashkey = par227.flashkey.split("=").join("");
par227.SU0249 = par227.SU0249.split("=").join("");
par228.onLoad = function (success) {
if (success) {
trace(par228.msg);
} else {
trace(par228.loaded);
}
};
par227.sendAndLoad("http://rankz.armorbot.com/submit/", par228, "POST");
}
bXlnYW1lX25hbWVfdmFyaWFibGU = _root.nname;
bXlnYW1lX3Njb3JlX3ZhcmlhYmxl = _root.tsco;
__rankz_send__("MjI5OWolZSVhJW4lcw==", "WE5rWEJra3Q=", bXlnYW1lX25hbWVfdmFyaWFibGU, bXlnYW1lX3Njb3JlX3ZhcmlhYmxl);
_root.gotoAndStop((_root._currentframe = _root._currentframe - 2));
}
Symbol 3 Button
on (release) {
getURL ("http://www.gamesreloaded.com", _blank);
}
Symbol 230 MovieClip [__Packages.ab3.rankz.Armor_Bot_30_En_AS1] Frame 0
class ab3.rankz.Armor_Bot_30_En_AS1 extends Object
{
static var _CharsReverseLookup;
var _Armor_Bot_30_En_AS1Str, _Armor_Bot_30_En_AS1Count;
function Armor_Bot_30_En_AS1 () {
super();
}
static function Encode(str) {
var _local1 = new ab3.rankz.Armor_Bot_30_En_AS1();
return(_local1.encodeArmor_Bot_30_En_AS1(str));
}
static function Decode(str) {
var _local1 = new ab3.rankz.Armor_Bot_30_En_AS1();
return(_local1.decodeArmor_Bot_30_En_AS1(str));
}
static function StringReplaceAll(source, find, replacement) {
return(source.split(find).join(replacement));
}
static function InitReverseChars() {
_CharsReverseLookup = new Array();
var _local1 = 0;
while (_local1 < _Chars.length) {
_CharsReverseLookup[_Chars[_local1]] = _local1;
_local1++;
}
return(true);
}
static function UrlDecode(str) {
str = StringReplaceAll(str, "\\", " ");
str = unescape(str);
return(str);
}
static function UrlEncode(str) {
str = escape(str);
str = StringReplaceAll(str, "\\", "%2B");
str = StringReplaceAll(str, "%20", "+");
return(str);
}
function setArmor_Bot_30_En_AS1Str(str) {
_Armor_Bot_30_En_AS1Str = str;
_Armor_Bot_30_En_AS1Count = 0;
}
function readArmor_Bot_30_En_AS1() {
if (!_Armor_Bot_30_En_AS1Str) {
return(_EndOfInput);
}
if (_Armor_Bot_30_En_AS1Count >= _Armor_Bot_30_En_AS1Str.length) {
return(_EndOfInput);
}
var _local2 = _Armor_Bot_30_En_AS1Str.charCodeAt(_Armor_Bot_30_En_AS1Count) & 255;
_Armor_Bot_30_En_AS1Count++;
return(_local2);
}
function encodeArmor_Bot_30_En_AS1(str) {
setArmor_Bot_30_En_AS1Str(str);
var _local3 = "";
var _local2 = new Array(3);
var _local5 = 0;
var _local4 = false;
while ((!_local4) && (((_local2[0] = readArmor_Bot_30_En_AS1())) != _EndOfInput)) {
_local2[1] = readArmor_Bot_30_En_AS1();
_local2[2] = readArmor_Bot_30_En_AS1();
_local3 = _local3 + _Chars[_local2[0] >> 2];
if (_local2[1] != _EndOfInput) {
_local3 = _local3 + _Chars[((_local2[0] << 4) & 48) | (_local2[1] >> 4)];
if (_local2[2] != _EndOfInput) {
_local3 = _local3 + _Chars[((_local2[1] << 2) & 60) | (_local2[2] >> 6)];
_local3 = _local3 + _Chars[_local2[2] & 63];
} else {
_local3 = _local3 + _Chars[(_local2[1] << 2) & 60];
_local3 = _local3 + "=";
_local4 = true;
}
} else {
_local3 = _local3 + _Chars[(_local2[0] << 4) & 48];
_local3 = _local3 + "=";
_local3 = _local3 + "=";
_local4 = true;
}
_local5 = _local5 + 4;
if (_local5 >= 76) {
_local3 = _local3 + newline;
_local5 = 0;
}
}
return(_local3);
}
function readReverseArmor_Bot_30_En_AS1() {
if (!_Armor_Bot_30_En_AS1Str) {
return(_EndOfInput);
}
while (true) {
if (_Armor_Bot_30_En_AS1Count >= _Armor_Bot_30_En_AS1Str.length) {
return(_EndOfInput);
}
var _local2 = _Armor_Bot_30_En_AS1Str.charAt(_Armor_Bot_30_En_AS1Count);
_Armor_Bot_30_En_AS1Count++;
if (_CharsReverseLookup[_local2]) {
return(_CharsReverseLookup[_local2]);
}
if (_local2 == "A") {
return(0);
}
}
}
function ntos(n) {
var _local1 = n.toString(16);
if (_local1.length == 1) {
_local1 = "0" + _local1;
}
_local1 = "%" + _local1;
return(unescape(_local1));
}
function decodeArmor_Bot_30_En_AS1(str) {
setArmor_Bot_30_En_AS1Str(str);
var _local3 = "";
var _local2 = new Array(4);
var _local4 = false;
while (((!_local4) && (((_local2[0] = readReverseArmor_Bot_30_En_AS1())) != _EndOfInput)) && (((_local2[1] = readReverseArmor_Bot_30_En_AS1())) != _EndOfInput)) {
_local2[2] = readReverseArmor_Bot_30_En_AS1();
_local2[3] = readReverseArmor_Bot_30_En_AS1();
_local3 = _local3 + ntos(((_local2[0] << 2) & 255) | (_local2[1] >> 4));
if (_local2[2] != _EndOfInput) {
_local3 = _local3 + ntos(((_local2[1] << 4) & 255) | (_local2[2] >> 2));
if (_local2[3] != _EndOfInput) {
_local3 = _local3 + ntos(((_local2[2] << 6) & 255) | _local2[3]);
} else {
_local4 = true;
}
} else {
_local4 = true;
}
}
return(_local3);
}
function toHex(n) {
var _local4 = "";
var _local3 = true;
var _local1 = 32;
while (_local1 > 0) {
_local1 = _local1 - 4;
var _local2 = (n >> _local1) & 15;
if ((!_local3) || (_local2 != 0)) {
_local3 = false;
_local4 = _local4 + _Digits[_local2];
}
}
return(((_local4 == "") ? "0" : (_local4)));
}
function pad(str, len, pad) {
var _local2 = str;
var _local1 = str.length;
while (_local1 < len) {
_local2 = pad + _local2;
_local1++;
}
return(_local2);
}
function encodeHex(str) {
var _local4 = "";
var _local2 = 0;
while (_local2 < str.length) {
_local4 = _local4 + pad(toHex(str.charCodeAt(_local2) & 255), 2, "0");
_local2++;
}
return(_local4);
}
function decodeHex(str) {
var _local5 = "";
var _local3 = "";
var _local2 = 0;
while (_local2 < str.length) {
_local3 = _local3 + str.charAt(_local2);
if (_local3.length == 2) {
_local5 = _local5 + ntos(parseInt("0x" + _local3));
_local3 = "";
}
_local2++;
}
return(_local5);
}
static var _EndOfInput = -1;
static var _Chars = new Array("A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "+", "/");
static var _CharsReverseLookupInited = InitReverseChars();
static var _Digits = new Array("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f");
}
Symbol 13 MovieClip Frame 178
_root.gotoAndPlay((_root._currentframe = _root._currentframe + 1));
Symbol 20 MovieClip Frame 1
stop();
Symbol 21 MovieClip [Joint] Frame 1
function update() {
_loc2.dragging == this;
var _loc2 = _root;
if (_name == "head") {
xs = _loc2._xmouse - _x;
ys = _loc2._ymouse - _y;
} else {
hat._alpha = 0;
xs = _x - lx;
ys = _y - ly;
}
var _local3 = Math.sqrt((xs * xs) + (ys * ys));
if (_local3 > ms) {
xs = xs * (ms / _local3);
ys = ys * (ms / _local3);
}
if (Math.abs(xs) < 1) {
xs = 0;
}
if (Math.abs(ys) < 0.25) {
ys = 0;
}
lx = _x;
ly = _y;
_x = (_x + (xs * 0.94));
_y = (_y + (ys + 0.5));
}
function force() {
var _local3 = Math.sqrt((xs * xs) + (ys * ys));
return((_local3 >= 12) && (_root.dragging != this));
}
function collisions() {
var _local2 = false;
if (this._name != "head") {
if (_y > 245) {
_y = 245;
_local2 = true;
} else if (_y < 0) {
_y = 0;
_local2 = true;
}
if (_x > 445) {
_x = 445;
_local2 = true;
} else if (_x < 0) {
_x = 0;
_local2 = true;
}
} else {
var _local3 = _width / 2.5;
if (_y > (245 - _local3)) {
_y = (245 - _local3);
_local2 = true;
} else if (_y < _local3) {
_y = _local3;
_local2 = true;
}
if (_x > (445 - _local3)) {
_x = (445 - _local3);
_local2 = true;
} else if (_x < _local3) {
_x = _local3;
_local2 = true;
}
}
if (_local2) {
return(force());
}
return(false);
}
function onPress() {
_root.dragging = this;
}
function onRelease() {
_root.dragging = null;
}
var lx = _x;
var ly = _y;
var xs = 0;
var ys = 0;
var ms = 30;
var kl = {};
Key.addListener(kl);
kl.onKeyUp = function () {
var _local5 = Key.getCode();
if (_local5 == 32) {
var _local2 = _x - _root._xmouse;
var _local3 = _y - _root._ymouse;
var _local4 = Math.sqrt((_local2 * _local2) + (_local3 * _local3));
if (_local4 < 50) {
_x = (_x + ((_local2 / _local4) * ms));
_y = (_y + ((_local3 / _local4) * ms));
}
}
};
onReleaseOutside = onRelease;
_loc2.dragging == this;
Symbol 25 Button
on (release) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 2));
}
Symbol 29 Button
on (release) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
Symbol 33 Button
on (release) {
getURL ("http://www.gamesreloaded.com", _blank);
}
Symbol 47 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 50 Button
on (release) {
gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
Symbol 53 MovieClip Frame 15
_root.circ._x = random(450);
_root.circ._y = random(300);
Instance of Symbol 57 MovieClip in Symbol 62 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 1);
}
Instance of Symbol 61 MovieClip in Symbol 62 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 1);
}
Symbol 65 MovieClip Frame 1
stop();
Symbol 70 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 7
_root.mover.play();
Symbol 88 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 33
_root.gotoAndStop("gameover");
Symbol 88 MovieClip Frame 34
stop();
Instance of Symbol 92 MovieClip in Symbol 97 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 1);
}
Instance of Symbol 96 MovieClip in Symbol 97 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation - 1);
}
Instance of Symbol 85 MovieClip in Symbol 101 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 57 MovieClip in Symbol 106 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 1);
}
Instance of Symbol 57 MovieClip in Symbol 106 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 1);
}
Instance of Symbol 85 MovieClip in Symbol 109 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Symbol 114 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Symbol 119 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 122 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 0.8);
}
Instance of Symbol 125 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 1.6);
}
Instance of Symbol 57 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 1);
}
Instance of Symbol 57 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 2);
}
Instance of Symbol 57 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
}
Instance of Symbol 59 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
}
Instance of Symbol 59 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
}
Instance of Symbol 59 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
}
Instance of Symbol 59 MovieClip in Symbol 133 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 3);
}
Instance of Symbol 85 MovieClip in Symbol 136 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 85 MovieClip in Symbol 143 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Instance of Symbol 151 MovieClip in Symbol 152 MovieClip Frame 1
onClipEvent (enterFrame) {
_rotation = (_rotation + 2);
}
Instance of Symbol 85 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
_x = (_x - 2);
if (this.hitTest(_root.head._x, _root.head._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.neck._x, _root.neck._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.relbow._x, _root.relbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lelbow._x, _root.lelbow._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lhand._x, _root.lhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rhand._x, _root.rhand._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.waist._x, _root.waist._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rknee._x, _root.rknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.rfoot._x, _root.rfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lknee._x, _root.lknee._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
if (this.hitTest(_root.lfoot._x, _root.lfoot._y, true)) {
_y = (_y + 1000);
_root.score = _root.score + 100;
}
}
Symbol 168 Button
on (release) {
_root.gotoAndStop((_root._currentframe = _root._currentframe + 1));
}
Symbol 171 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 173 Button
on (release) {
getURL ("http://www.gamesreloaded.com", _blank);
}
Symbol 174 MovieClip Frame 32
stop();
Symbol 178 Button
on (release) {
getURL ("http://www.gamesreloaded.com", _blank);
}
Symbol 185 MovieClip Frame 1
stop();
Symbol 218 Button
on (release) {
_root.gotoAndStop("menu");
}
Symbol 219 Button
on (release) {
getURL ("http://www.gamesreloaded.com", _blank);
}