Frame 1
function doSomething() {
}
function doSomething3() {
getURL ("http://armorgames.com", _blank);
}
function doSomething2() {
getURL ("http://flashground.net", _blank);
}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("Game by Jacob Dzwinel", doSomething);
Functioned2 = new ContextMenuItem("www.FlashGround.net", doSomething2);
Functioned3 = new ContextMenuItem("www.ArmorGames.com", doSomething3);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
MENU.customItems.push(Functioned3);
_root.menu = MENU;
if (_root.bouncegame == 1) {
gotoAndPlay ("dead4");
}
Instance of Symbol 48 MovieClip "cursor" in Frame 1
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateafterevent();
}
Instance of Symbol 49 MovieClip "spirala" in Frame 3
onClipEvent (load) {
skok = 100;
}
onClipEvent (mouseMove) {
}
onClipEvent (enterFrame) {
this._rotation = this._rotation + 2;
}
Instance of Symbol 48 MovieClip "cursor" in Frame 3
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateafterevent();
}
Frame 183
stop();
Frame 184
stop();
Frame 185
_root.scores = 0;
_root.drager = 0;
_root.times = 0;
_root.deaddd = 0;
_root.bouncegame = 0;
function __com_mochibot__(swfid, mc, lv, trk) {
var x;
var g;
var s;
var fv;
var sb;
var u;
var res;
var mb;
var mbc;
mb = "__mochibot__";
mbc = "mochibot.com";
g = (_global ? (_global) : (_level0._root));
if (g[mb + swfid]) {
return(g[mb + swfid]);
}
s = System.security;
x = mc._root.getSWFVersion;
fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5)));
if (!s) {
s = {};
}
sb = s.sandboxType;
if (sb == "localWithFile") {
return(null);
}
x = s.allowDomain;
if (x) {
s.allowDomain(mbc);
}
x = s.allowInsecureDomain;
if (x) {
s.allowInsecureDomain(mbc);
}
u = (((((((((((("http://" + mbc) + "/my/core.swf?mv=7&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "")) + (trk ? "&t=1" : "");
lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv))));
g[mb + "level"] = lv;
if (fv == 5) {
res = "_level" + lv;
if (!eval (res)) {
loadMovieNum (u, lv);
}
} else {
res = mc.createEmptyMovieClip(mb + swfid, lv);
res.loadMovie(u);
}
return(res);
}
__com_mochibot__("3b707ec9", this, 10301, true);
stop();
Instance of Symbol 48 MovieClip "cursor" in Frame 185
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateafterevent();
}
Frame 186
stop();
Frame 187
stop();
Frame 188
stop();
Frame 189
stop();
Frame 190
play();
Frame 270
gotoAndPlay (514);
Frame 271
play();
Frame 351
gotoAndPlay (520);
Frame 352
play();
Frame 432
gotoAndPlay (516);
Frame 433
play();
Frame 513
gotoAndPlay (518);
Frame 514
tellTarget (_root.bullett2) {
stop();
};
tellTarget (_root.bullett3) {
stop();
};
tellTarget (_root.bullett4) {
stop();
};
tellTarget (_root.bullett5) {
stop();
};
tellTarget (_root.bullett6) {
stop();
};
tellTarget (_root.bullett7) {
stop();
};
tellTarget (_root.bullett8) {
stop();
};
function Bullet() {
this.speed = 5;
}
global.bullet_depth = 100;
addBullet = function (x, y, rot) {
_root.attachMovie("bullet", "bullet_" + _global.bullet_depth, _global.bullet_depth, {_x:x, _y:y, _rotation:rot});
_global.bullet_depth++;
};
degToRad = function (deg) {
rad = (Math.PI * deg) / 180;
return(rad);
};
radToDeg = function (rad) {
deg = (rad * 180) / Math.PI;
return(deg);
};
Bullet.prototype = new MovieClip();
Bullet.prototype.onEnterFrame = function () {
var _local3 = degToRad(this._rotation);
this._x = this._x + (this.speed * Math.cos(_local3));
this._y = this._y + (this.speed * Math.sin(_local3));
if (_root.plane1.hitTest(this._x, this._y, true)) {
tellTarget ("_root.plane1.plane2") {
nextFrame();
this.removeMovieClip();
};
}
};
Object.registerClass("bullet", Bullet);
function Vector(x, y) {
this.x = x;
this.y = y;
this.length = Math.sqrt((x * x) + (y * y));
}
function constrain(p0, p1, l) {
var _local4 = 0.025;
var _local9 = p1._x - p0._x;
var _local8 = p1._y - p0._y;
var _local1 = new Vector(_local9, _local8);
var _local5 = (_local1.length - l) / _local1.length;
var _local7 = (_local1.x * 0.5) * _local5;
var _local6 = (_local1.y * 0.5) * _local5;
p1._x = p1._x - (_local7 - _local4);
p1._y = p1._y - _local6;
p0._x = p0._x + (_local7 + _local4);
p0._y = p0._y + _local6;
}
function update() {
var _local3;
var _local2 = 0;
while (_local2 < joints.length) {
this[joints[_local2]].update();
_local2++;
}
}
function collisions() {
var _local2;
var _local6;
var _local5;
var _local4 = false;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = this[joints[_local3]];
if (_local2.collisions()) {
_local4 = true;
_local6 = _local2._x;
_local5 = _local2._y;
}
_local3++;
}
if (_local4) {
if (!soundplaying) {
var _local7 = new Sound(this);
_local7.onSoundComplete = function () {
soundplaying = false;
};
var _local8 = random(3);
var _local9 = -100 + ((head._x * 200) / 545);
_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, 12);
constrain(lelbow, neck, 12);
constrain(rhand, relbow, 12);
constrain(relbow, neck, 12);
constrain(neck, waist, 20);
constrain(lknee, waist, 20);
constrain(lfoot, lknee, 20);
constrain(rknee, waist, 20);
constrain(rfoot, rknee, 20);
constrain(head, neck, 3.5);
_local1++;
}
}
function setup() {
constraints();
var _local2;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = this[joints[_local3]];
_local2.lx = _local2._x;
_local2.ly = _local2._y;
_local3++;
}
}
function drawblood(x, y) {
var _local1;
var _local2 = 0;
while (_local2 <= (random(3) + 3)) {
_local1 = attachMovie("Blood", "Blood" + blooddepth, blooddepth++);
_local1._x = x;
_local1._y = y;
_local2++;
}
}
function drawhead(col) {
var _local4 = 0;
var _local3 = 0;
var _local2 = 7;
head.beginFill(((col == undefined) ? 0 : (col)), 100);
head.moveTo(_local4 + _local2, _local3);
var _local1 = 0;
while (_local1 <= 6.283185) {
head.lineTo(_local4 + (Math.cos(_local1) * _local2), _local3 + (Math.sin(_local1) * _local2));
_local1 = _local1 + 0.069813;
}
head.endFill();
}
function draw(col) {
clear();
lineStyle(5, ((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 _local2 = neck._x - head._x;
var _local1 = neck._y - head._y;
head._rotation = (Math.atan2(_local1, _local2) * 180) / 3.141593;
}
function onEnterFrame() {
update();
constraints();
collisions();
draw(ragdollcolor);
}
MovieClip.prototype.useHandCursor = false;
var dragging = null;
var blooddepth = 0;
var soundplaying = false;
var ragdollcolor = 0;
var joints = new Array("lhand", "lelbow", "rhand", "relbow", "neck", "waist", "lknee", "lfoot", "rknee", "rfoot", "head");
drawhead(ragdollcolor);
setup();
stop();
_root.silence._width = 200;
Instance of Symbol 220 MovieClip "bullett" in Frame 514
onClipEvent (enterFrame) {
if (_root.access == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 225 MovieClip "bullett2" in Frame 514
onClipEvent (enterFrame) {
if (_root.access2 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 226 MovieClip "bullett3" in Frame 514
onClipEvent (enterFrame) {
if (_root.access3 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 227 MovieClip "bullett4" in Frame 514
onClipEvent (enterFrame) {
if (_root.access4 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 228 MovieClip "bullett5" in Frame 514
onClipEvent (enterFrame) {
if (_root.access5 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 229 MovieClip "bullett6" in Frame 514
onClipEvent (enterFrame) {
if (_root.access6 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 230 MovieClip "bullett7" in Frame 514
onClipEvent (enterFrame) {
if (_root.access7 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 231 MovieClip "bullett8" in Frame 514
onClipEvent (enterFrame) {
if (_root.access8 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 237 MovieClip "mc" in Frame 514
onClipEvent (load) {
this.fpsmeter("start", "trace");
}
Frame 516
tellTarget (_root.bullett2) {
stop();
};
tellTarget (_root.bullett3) {
stop();
};
tellTarget (_root.bullett4) {
stop();
};
tellTarget (_root.bullett5) {
stop();
};
tellTarget (_root.bullett6) {
stop();
};
tellTarget (_root.bullett7) {
stop();
};
tellTarget (_root.bullett8) {
stop();
};
function Bullet() {
this.speed = 5;
}
global.bullet_depth = 100;
addBullet = function (x, y, rot) {
_root.attachMovie("bullet", "bullet_" + _global.bullet_depth, _global.bullet_depth, {_x:x, _y:y, _rotation:rot});
_global.bullet_depth++;
};
degToRad = function (deg) {
rad = (Math.PI * deg) / 180;
return(rad);
};
radToDeg = function (rad) {
deg = (rad * 180) / Math.PI;
return(deg);
};
Bullet.prototype = new MovieClip();
Bullet.prototype.onEnterFrame = function () {
var _local3 = degToRad(this._rotation);
this._x = this._x + (this.speed * Math.cos(_local3));
this._y = this._y + (this.speed * Math.sin(_local3));
if (_root.plane1.hitTest(this._x, this._y, true)) {
tellTarget ("_root.plane1.plane2") {
nextFrame();
this.removeMovieClip();
};
}
};
Object.registerClass("bullet", Bullet);
function Vector(x, y) {
this.x = x;
this.y = y;
this.length = Math.sqrt((x * x) + (y * y));
}
function constrain(p0, p1, l) {
var _local4 = 0.025;
var _local9 = p1._x - p0._x;
var _local8 = p1._y - p0._y;
var _local1 = new Vector(_local9, _local8);
var _local5 = (_local1.length - l) / _local1.length;
var _local7 = (_local1.x * 0.5) * _local5;
var _local6 = (_local1.y * 0.5) * _local5;
p1._x = p1._x - (_local7 - _local4);
p1._y = p1._y - _local6;
p0._x = p0._x + (_local7 + _local4);
p0._y = p0._y + _local6;
}
function update() {
var _local3;
var _local2 = 0;
while (_local2 < joints.length) {
this[joints[_local2]].update();
_local2++;
}
}
function collisions() {
var _local2;
var _local6;
var _local5;
var _local4 = false;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = this[joints[_local3]];
if (_local2.collisions()) {
_local4 = true;
_local6 = _local2._x;
_local5 = _local2._y;
}
_local3++;
}
if (_local4) {
if (!soundplaying) {
var _local7 = new Sound(this);
_local7.onSoundComplete = function () {
soundplaying = false;
};
var _local8 = random(3);
var _local9 = -100 + ((head._x * 200) / 545);
_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, 12);
constrain(lelbow, neck, 12);
constrain(rhand, relbow, 12);
constrain(relbow, neck, 12);
constrain(neck, waist, 20);
constrain(lknee, waist, 20);
constrain(lfoot, lknee, 20);
constrain(rknee, waist, 20);
constrain(rfoot, rknee, 20);
constrain(head, neck, 3.5);
_local1++;
}
}
function setup() {
constraints();
var _local2;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = this[joints[_local3]];
_local2.lx = _local2._x;
_local2.ly = _local2._y;
_local3++;
}
}
function drawblood(x, y) {
var _local1;
var _local2 = 0;
while (_local2 <= (random(3) + 3)) {
_local1 = attachMovie("Blood", "Blood" + blooddepth, blooddepth++);
_local1._x = x;
_local1._y = y;
_local2++;
}
}
function drawhead(col) {
var _local4 = 0;
var _local3 = 0;
var _local2 = 7;
head.beginFill(((col == undefined) ? 0 : (col)), 100);
head.moveTo(_local4 + _local2, _local3);
var _local1 = 0;
while (_local1 <= 6.283185) {
head.lineTo(_local4 + (Math.cos(_local1) * _local2), _local3 + (Math.sin(_local1) * _local2));
_local1 = _local1 + 0.069813;
}
head.endFill();
}
function draw(col) {
clear();
lineStyle(5, ((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 _local2 = neck._x - head._x;
var _local1 = neck._y - head._y;
head._rotation = (Math.atan2(_local1, _local2) * 180) / 3.141593;
}
function onEnterFrame() {
update();
constraints();
collisions();
draw(ragdollcolor);
}
MovieClip.prototype.useHandCursor = false;
var dragging = null;
var blooddepth = 0;
var soundplaying = false;
var ragdollcolor = 0;
var joints = new Array("lhand", "lelbow", "rhand", "relbow", "neck", "waist", "lknee", "lfoot", "rknee", "rfoot", "head");
drawhead(ragdollcolor);
setup();
stop();
_root.silence._width = 200;
_root.speedometr = 2;
Instance of Symbol 271 MovieClip "hittex" in Frame 516
onClipEvent (enterFrame) {
if (this.hitTest(_root.walls1)) {
_root.walls1._x = _root.walls1._x + 970;
_root.walls1._y = random(300);
_root.speedometr = _root.speedometr + 0.2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.walls2)) {
_root.walls2._x = _root.walls2._x + 970;
_root.walls2._y = random(300);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.walls3)) {
_root.walls3._x = _root.walls3._x + 970;
_root.walls3._y = random(300);
}
}
Instance of Symbol 237 MovieClip "mc" in Frame 516
onClipEvent (load) {
this.fpsmeter("start", "trace");
}
Frame 518
tellTarget (_root.bullett2) {
stop();
};
tellTarget (_root.bullett3) {
stop();
};
tellTarget (_root.bullett4) {
stop();
};
tellTarget (_root.bullett5) {
stop();
};
tellTarget (_root.bullett6) {
stop();
};
tellTarget (_root.bullett7) {
stop();
};
tellTarget (_root.bullett8) {
stop();
};
function Bullet() {
this.speed = 5;
}
global.bullet_depth = 100;
addBullet = function (x, y, rot) {
_root.attachMovie("bullet", "bullet_" + _global.bullet_depth, _global.bullet_depth, {_x:x, _y:y, _rotation:rot});
_global.bullet_depth++;
};
degToRad = function (deg) {
rad = (Math.PI * deg) / 180;
return(rad);
};
radToDeg = function (rad) {
deg = (rad * 180) / Math.PI;
return(deg);
};
Bullet.prototype = new MovieClip();
Bullet.prototype.onEnterFrame = function () {
var _local3 = degToRad(this._rotation);
this._x = this._x + (this.speed * Math.cos(_local3));
this._y = this._y + (this.speed * Math.sin(_local3));
if (_root.plane1.hitTest(this._x, this._y, true)) {
tellTarget ("_root.plane1.plane2") {
nextFrame();
this.removeMovieClip();
};
}
};
Object.registerClass("bullet", Bullet);
function Vector(x, y) {
this.x = x;
this.y = y;
this.length = Math.sqrt((x * x) + (y * y));
}
function constrain(p0, p1, l) {
var _local4 = 0.025;
var _local9 = p1._x - p0._x;
var _local8 = p1._y - p0._y;
var _local1 = new Vector(_local9, _local8);
var _local5 = (_local1.length - l) / _local1.length;
var _local7 = (_local1.x * 0.5) * _local5;
var _local6 = (_local1.y * 0.5) * _local5;
p1._x = p1._x - (_local7 - _local4);
p1._y = p1._y - _local6;
p0._x = p0._x + (_local7 + _local4);
p0._y = p0._y + _local6;
}
function update() {
var _local3;
var _local2 = 0;
while (_local2 < joints.length) {
this[joints[_local2]].update();
_local2++;
}
}
function collisions() {
var _local2;
var _local6;
var _local5;
var _local4 = false;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = this[joints[_local3]];
if (_local2.collisions()) {
_local4 = true;
_local6 = _local2._x;
_local5 = _local2._y;
}
_local3++;
}
if (_local4) {
if (!soundplaying) {
var _local7 = new Sound(this);
_local7.onSoundComplete = function () {
soundplaying = false;
};
var _local8 = random(3);
var _local9 = -100 + ((head._x * 200) / 545);
_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, 12);
constrain(lelbow, neck, 12);
constrain(rhand, relbow, 12);
constrain(relbow, neck, 12);
constrain(neck, waist, 20);
constrain(lknee, waist, 20);
constrain(lfoot, lknee, 20);
constrain(rknee, waist, 20);
constrain(rfoot, rknee, 20);
constrain(head, neck, 3.5);
_local1++;
}
}
function setup() {
constraints();
var _local2;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = this[joints[_local3]];
_local2.lx = _local2._x;
_local2.ly = _local2._y;
_local3++;
}
}
function drawblood(x, y) {
var _local1;
var _local2 = 0;
while (_local2 <= (random(3) + 3)) {
_local1 = attachMovie("Blood", "Blood" + blooddepth, blooddepth++);
_local1._x = x;
_local1._y = y;
_local2++;
}
}
function drawhead(col) {
var _local4 = 0;
var _local3 = 0;
var _local2 = 7;
head.beginFill(((col == undefined) ? 0 : (col)), 100);
head.moveTo(_local4 + _local2, _local3);
var _local1 = 0;
while (_local1 <= 6.283185) {
head.lineTo(_local4 + (Math.cos(_local1) * _local2), _local3 + (Math.sin(_local1) * _local2));
_local1 = _local1 + 0.069813;
}
head.endFill();
}
function draw(col) {
clear();
lineStyle(5, ((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 _local2 = neck._x - head._x;
var _local1 = neck._y - head._y;
head._rotation = (Math.atan2(_local1, _local2) * 180) / 3.141593;
}
function onEnterFrame() {
update();
constraints();
collisions();
draw(ragdollcolor);
}
MovieClip.prototype.useHandCursor = false;
var dragging = null;
var blooddepth = 0;
var soundplaying = false;
var ragdollcolor = 0;
var joints = new Array("lhand", "lelbow", "rhand", "relbow", "neck", "waist", "lknee", "lfoot", "rknee", "rfoot", "head");
drawhead(ragdollcolor);
setup();
stop();
_root.deaddd = 0;
_root.silence._width = 200;
_root.speedometr = 2;
_root.bouncegame = 1;
Instance of Symbol 271 MovieClip "hittex" in Frame 518
onClipEvent (enterFrame) {
if (this.hitTest(_root.walls1)) {
_root.walls1._x = _root.walls1._x + 970;
_root.walls1._y = random(300);
_root.speedometr = _root.speedometr + 0.2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.walls2)) {
_root.walls2._x = _root.walls2._x + 970;
_root.walls2._y = random(300);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.walls3)) {
_root.walls3._x = _root.walls3._x + 970;
_root.walls3._y = random(300);
}
}
Instance of Symbol 5 MovieClip [ball] "ball" in Frame 518
onClipEvent (load) {
xspeed = 5;
yspeed = 5;
_x = random(540);
_y = random(365);
}
onClipEvent (enterFrame) {
_y = (_y + yspeed);
_x = (_x + xspeed);
if (_y > 355) {
_y = 355;
yspeed = yspeed * -1;
}
if (_y < 0) {
_y = 0;
yspeed = yspeed * -1;
}
if (_x > 530) {
_x = 530;
xspeed = xspeed * -1;
}
if (_x < 0) {
_x = 0;
xspeed = xspeed * -1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.cursor)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
}
}
onClipEvent (load) {
if (this.hitTest(_root.cleaner)) {
this._x = this._x + 10000;
}
}
Instance of Symbol 310 MovieClip in Frame 518
onClipEvent (load) {
count = 1;
}
onClipEvent (enterFrame) {
if (_currentframe == 200) {
count++;
_root.ball.duplicateMovieClip("ball" + count, count);
_root.thing.gotoAndPlay(2);
_root["ball" + count]._visible = true;
}
}
Instance of Symbol 237 MovieClip "mc" in Frame 518
onClipEvent (load) {
this.fpsmeter("start", "trace");
}
Frame 520
tellTarget (_root.bullett2) {
stop();
};
tellTarget (_root.bullett3) {
stop();
};
tellTarget (_root.bullett4) {
stop();
};
tellTarget (_root.bullett5) {
stop();
};
tellTarget (_root.bullett6) {
stop();
};
tellTarget (_root.bullett7) {
stop();
};
tellTarget (_root.bullett8) {
stop();
};
function Bullet() {
this.speed = 5;
}
global.bullet_depth = 100;
addBullet = function (x, y, rot) {
_root.attachMovie("bullet", "bullet_" + _global.bullet_depth, _global.bullet_depth, {_x:x, _y:y, _rotation:rot});
_global.bullet_depth++;
};
degToRad = function (deg) {
rad = (Math.PI * deg) / 180;
return(rad);
};
radToDeg = function (rad) {
deg = (rad * 180) / Math.PI;
return(deg);
};
Bullet.prototype = new MovieClip();
Bullet.prototype.onEnterFrame = function () {
var _local3 = degToRad(this._rotation);
this._x = this._x + (this.speed * Math.cos(_local3));
this._y = this._y + (this.speed * Math.sin(_local3));
if (_root.plane1.hitTest(this._x, this._y, true)) {
tellTarget ("_root.plane1.plane2") {
nextFrame();
this.removeMovieClip();
};
}
};
Object.registerClass("bullet", Bullet);
function Vector(x, y) {
this.x = x;
this.y = y;
this.length = Math.sqrt((x * x) + (y * y));
}
function constrain(p0, p1, l) {
var _local4 = 0.025;
var _local9 = p1._x - p0._x;
var _local8 = p1._y - p0._y;
var _local1 = new Vector(_local9, _local8);
var _local5 = (_local1.length - l) / _local1.length;
var _local7 = (_local1.x * 0.5) * _local5;
var _local6 = (_local1.y * 0.5) * _local5;
p1._x = p1._x - (_local7 - _local4);
p1._y = p1._y - _local6;
p0._x = p0._x + (_local7 + _local4);
p0._y = p0._y + _local6;
}
function update() {
var _local3;
var _local2 = 0;
while (_local2 < joints.length) {
this[joints[_local2]].update();
_local2++;
}
}
function collisions() {
var _local2;
var _local6;
var _local5;
var _local4 = false;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = this[joints[_local3]];
if (_local2.collisions()) {
_local4 = true;
_local6 = _local2._x;
_local5 = _local2._y;
}
_local3++;
}
if (_local4) {
if (!soundplaying) {
var _local7 = new Sound(this);
_local7.onSoundComplete = function () {
soundplaying = false;
};
var _local8 = random(3);
var _local9 = -100 + ((head._x * 200) / 545);
_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, 12);
constrain(lelbow, neck, 12);
constrain(rhand, relbow, 12);
constrain(relbow, neck, 12);
constrain(neck, waist, 20);
constrain(lknee, waist, 20);
constrain(lfoot, lknee, 20);
constrain(rknee, waist, 20);
constrain(rfoot, rknee, 20);
constrain(head, neck, 3.5);
_local1++;
}
}
function setup() {
constraints();
var _local2;
var _local3 = 0;
while (_local3 < joints.length) {
_local2 = this[joints[_local3]];
_local2.lx = _local2._x;
_local2.ly = _local2._y;
_local3++;
}
}
function drawblood(x, y) {
var _local1;
var _local2 = 0;
while (_local2 <= (random(3) + 3)) {
_local1 = attachMovie("Blood", "Blood" + blooddepth, blooddepth++);
_local1._x = x;
_local1._y = y;
_local2++;
}
}
function drawhead(col) {
var _local4 = 0;
var _local3 = 0;
var _local2 = 7;
head.beginFill(((col == undefined) ? 0 : (col)), 100);
head.moveTo(_local4 + _local2, _local3);
var _local1 = 0;
while (_local1 <= 6.283185) {
head.lineTo(_local4 + (Math.cos(_local1) * _local2), _local3 + (Math.sin(_local1) * _local2));
_local1 = _local1 + 0.069813;
}
head.endFill();
}
function draw(col) {
clear();
lineStyle(5, ((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 _local2 = neck._x - head._x;
var _local1 = neck._y - head._y;
head._rotation = (Math.atan2(_local1, _local2) * 180) / 3.141593;
}
function onEnterFrame() {
update();
constraints();
collisions();
draw(ragdollcolor);
}
MovieClip.prototype.useHandCursor = false;
var dragging = null;
var blooddepth = 0;
var soundplaying = false;
var ragdollcolor = 0;
var joints = new Array("lhand", "lelbow", "rhand", "relbow", "neck", "waist", "lknee", "lfoot", "rknee", "rfoot", "head");
drawhead(ragdollcolor);
setup();
stop();
_root.silence._width = 90;
Instance of Symbol 220 MovieClip "bullett" in Frame 520
onClipEvent (enterFrame) {
if (_root.access == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 225 MovieClip "bullett2" in Frame 520
onClipEvent (enterFrame) {
if (_root.access2 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 226 MovieClip "bullett3" in Frame 520
onClipEvent (enterFrame) {
if (_root.access3 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 227 MovieClip "bullett4" in Frame 520
onClipEvent (enterFrame) {
if (_root.access4 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 228 MovieClip "bullett5" in Frame 520
onClipEvent (enterFrame) {
if (_root.access5 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 229 MovieClip "bullett6" in Frame 520
onClipEvent (enterFrame) {
if (_root.access6 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 230 MovieClip "bullett7" in Frame 520
onClipEvent (enterFrame) {
if (_root.access7 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 231 MovieClip "bullett8" in Frame 520
onClipEvent (enterFrame) {
if (_root.access8 == 1) {
this._rotation = _root.radToDeg(Math.atan2(_root.head._y - this._y, _root.head._x - this._x));
}
}
onClipEvent (enterFrame) {
if (_root.head.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 20;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text1;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.head._x;
_root.blood2._y = _root.head._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text8;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rknee._x;
_root.blood2._y = _root.rknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text9;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lknee._x;
_root.blood2._y = _root.lknee._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text11;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lfoot._x;
_root.blood2._y = _root.lfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text10;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rfoot._x;
_root.blood2._y = _root.rfoot._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text3;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.waist._x;
_root.blood2._y = _root.waist._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.neck.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 15;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text2;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.neck._x;
_root.blood2._y = _root.neck._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text5;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.relbow._x;
_root.blood2._y = _root.relbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text7;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lelbow._x;
_root.blood2._y = _root.lelbow._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text4;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.rhand._x;
_root.blood2._y = _root.rhand._y;
};
};
};
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this.hit)) {
_root.silence._width = _root.silence._width - 10;
tellTarget (this) {
gotoAndPlay (1);
_root.stats = _root.text6;
tellTarget (_root.blood2) {
gotoAndPlay (1);
tellTarget (_root.blood) {
gotoAndPlay (2);
_root.blood2._x = _root.lhand._x;
_root.blood2._y = _root.lhand._y;
};
};
};
}
}
Instance of Symbol 237 MovieClip "mc" in Frame 520
onClipEvent (load) {
this.fpsmeter("start", "trace");
}
Frame 522
stop();
Instance of Symbol 48 MovieClip "cursor" in Frame 522
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateafterevent();
}
Frame 524
stop();
Instance of Symbol 48 MovieClip "cursor" in Frame 524
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateafterevent();
}
Frame 526
stop();
Instance of Symbol 48 MovieClip "cursor" in Frame 526
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateafterevent();
}
Frame 528
stop();
_root.bouncegame = 1;
Instance of Symbol 48 MovieClip "cursor" in Frame 528
onClipEvent (load) {
Mouse.hide();
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
updateafterevent();
}
Symbol 5 MovieClip [ball] Frame 33
stop();
Instance of Symbol 4 MovieClip in Symbol 5 MovieClip [ball] Frame 33
onClipEvent (enterFrame) {
if (_root.head.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this)) {
_root.gotoAndPlay("dead4");
this.removeMovieClip();
removeMovieClip(ball);
}
}
Symbol 7 MovieClip [Joint] Frame 1
function update() {
if (_root.dragging == this) {
xs = _root._xmouse - _x;
ys = _root._ymouse - _y;
} else {
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 > 345) {
_y = 345;
_local2 = true;
} else if (_y < 0) {
_y = 0;
_local2 = true;
}
if (_x > 545) {
_x = 545;
_local2 = true;
} else if (_x < 0) {
_x = 0;
_local2 = true;
}
} else {
var _local3 = _width / 2.5;
if (_y > (345 - _local3)) {
_y = (345 - _local3);
_local2 = true;
} else if (_y < _local3) {
_y = _local3;
_local2 = true;
}
if (_x > (545 - _local3)) {
_x = (545 - _local3);
_local2 = true;
} else if (_x < _local3) {
_x = _local3;
_local2 = true;
}
}
if (_local2) {
return(force());
}
return(false);
}
function onPress() {
_root.drager = 1;
_root.dragging = this;
}
_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 _local4 = _x - _root._xmouse;
var _local3 = _y - _root._ymouse;
var _local2 = Math.sqrt((_local4 * _local4) + (_local3 * _local3));
if (_local2 < 50) {
_x = (_x + ((_local4 / _local2) * ms));
_y = (_y + ((_local3 / _local2) * ms));
}
}
};
Symbol 13 Button
on (release) {
getURL ("http://armorgames.com", "_blank");
}
Symbol 16 Button
on (release) {
getURL ("http://ragdollsoft.com", "_blank");
}
Symbol 19 Button
on (release) {
getURL ("http://newgrounds.com", "_blank");
}
Symbol 38 Button
on (release) {
_root.play();
}
Symbol 39 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 39 MovieClip Frame 2
gotoAndPlay (1);
Symbol 49 MovieClip Frame 1
d = 0.8;
a = 3;
c = 28;
s = -1;
r = 0;
p = 0;
enabled = true;
DrawSpiral = function () {
if (enabled) {
var _local2 = r + (((this.i * 2) * 3.141593) / c);
this.lineTo(Math.cos(_local2) * p, Math.sin(_local2) * p);
}
};
this.onEnterFrame = function () {
if (enabled) {
r = r + (0.1 * s);
p = Math.pow(Math.abs(r), a) * d;
if (spiral._width >= 765) {
enabled = false;
}
}
};
startNew = function () {
r = 0;
enabled = true;
this.createEmptyMovieClip("spiral", 1);
spiral._x = (spiral._y = 0);
var _local2 = 0;
while (_local2 < c) {
var _local3 = spiral.createEmptyMovieClip("line" + _local2, _local2);
_local3.i = _local2;
_local3.onEnterFrame = DrawSpiral;
_local3.lineStyle(0, Math.floor(Math.random() * 1118481), random(100));
_local2++;
}
};
startNew();
Symbol 51 Button
on (release) {
getURL ("http://flashground.net", "_blank");
}
Symbol 66 Button
on (release) {
getURL ("http://www.armorgames.com", "blank");
}
Symbol 71 MovieClip Frame 125
_root.play();
_root.play();
Symbol 78 MovieClip Frame 134
_root.play();
Symbol 80 Button
on (release) {
getURL ("http://ragdollsoft.com", "_blank");
}
Symbol 86 Button
on (release) {
gotoAndStop (188);
}
Symbol 89 Button
on (press) {
_root.gotoAndStop("instructions");
}
Symbol 91 Button
on (press) {
_root.gotoAndStop("options");
}
Symbol 93 Button
on (release) {
getURL ("http://armorgames.com", "_blank");
}
Symbol 95 Button
on (press) {
_root.gotoAndStop("credits");
}
Symbol 149 MovieClip Frame 31
stop();
Symbol 150 MovieClip Frame 60
stop();
Symbol 157 Button
on (press) {
_root.gotoAndStop("options");
}
Symbol 161 Button
on (release) {
_quality = "LOW";
}
Symbol 165 Button
on (release) {
_quality = "MEDIUM";
}
Symbol 169 Button
on (release) {
_quality = "HIGH";
}
Symbol 173 Button
on (release) {
_quality = "BEST";
}
Symbol 176 Button
on (release) {
_root.gotoAndPlay("licznik", 1);
}
Symbol 178 Button
on (release) {
_root.gotoAndPlay("licznik2", 1);
}
Symbol 180 Button
on (release) {
gotoAndPlay (185);
}
Symbol 184 Button
on (release) {
_root.gotoAndPlay("licznik3", 1);
}
Symbol 187 Button
on (release) {
_root.gotoAndPlay("licznik4", 1);
}
Symbol 198 MovieClip Frame 2
_root.shadoww._x = _root.head._x;
_root.shadoww._width = _root.head._y - 0.3;
Symbol 217 MovieClip Frame 1
stop();
Symbol 220 MovieClip Frame 1
_root.access = 1;
Symbol 220 MovieClip Frame 2
_root.access = 0;
Symbol 225 MovieClip Frame 1
_root.access2 = 1;
Symbol 225 MovieClip Frame 2
_root.access2 = 0;
Symbol 226 MovieClip Frame 1
_root.access3 = 1;
Symbol 226 MovieClip Frame 2
_root.access3 = 0;
Symbol 227 MovieClip Frame 1
_root.access4 = 1;
Symbol 227 MovieClip Frame 2
_root.access4 = 0;
Symbol 228 MovieClip Frame 1
_root.access5 = 1;
Symbol 228 MovieClip Frame 2
_root.access5 = 0;
Symbol 229 MovieClip Frame 1
_root.access6 = 1;
Symbol 229 MovieClip Frame 2
_root.access6 = 0;
Symbol 230 MovieClip Frame 1
_root.access7 = 1;
Symbol 230 MovieClip Frame 2
_root.access7 = 0;
Symbol 231 MovieClip Frame 1
_root.access8 = 1;
Symbol 231 MovieClip Frame 2
_root.access8 = 0;
Symbol 235 MovieClip Frame 1
if (_root.silence._width < 15) {
_root.gotoAndPlay("dead");
}
if (_root.scores == 1000) {
tellTarget (_root.bullett2) {
gotoAndPlay (2);
};
}
if (_root.scores == 2000) {
tellTarget (_root.bullett3) {
gotoAndPlay (2);
};
}
if (_root.scores == 3000) {
tellTarget (_root.bullett4) {
gotoAndPlay (2);
};
}
if (_root.scores == 4000) {
tellTarget (_root.bullett5) {
gotoAndPlay (2);
};
}
if (_root.scores == 5000) {
tellTarget (_root.bullett6) {
gotoAndPlay (2);
};
}
if (_root.scores == 6000) {
tellTarget (_root.bullett7) {
gotoAndPlay (2);
};
}
if (_root.scores == 7000) {
tellTarget (_root.bullett8) {
gotoAndPlay (2);
};
}
Mouse.hide();
_root.scores = _root.scores + 1;
if (_root.drager == 0) {
_root.head._x = _root._xmouse;
_root.head._y = _root._ymouse;
}
Symbol 235 MovieClip Frame 2
if (_root.scores == 1000) {
tellTarget (_root.bullett2) {
gotoAndPlay (2);
};
}
if (_root.scores == 2000) {
tellTarget (_root.bullett3) {
gotoAndPlay (2);
};
}
if (_root.scores == 3000) {
tellTarget (_root.bullett4) {
gotoAndPlay (2);
};
}
if (_root.scores == 4000) {
tellTarget (_root.bullett5) {
gotoAndPlay (2);
};
}
if (_root.scores == 5000) {
tellTarget (_root.bullett6) {
gotoAndPlay (2);
};
}
if (_root.scores == 6000) {
tellTarget (_root.bullett7) {
gotoAndPlay (2);
};
}
if (_root.scores == 7000) {
tellTarget (_root.bullett8) {
gotoAndPlay (2);
};
}
Mouse.hide();
_root.scores = _root.scores + 1;
if (_root.drager == 0) {
_root.head._x = _root._xmouse;
_root.head._y = _root._ymouse;
}
Symbol 254 MovieClip Frame 16
stop();
Symbol 259 MovieClip Frame 1
MovieClip.prototype.fpsmeter = function () {
this.zaehler = 0;
this.onEnterFrame = function () {
this.zaehler++;
};
anzeigen = function () {
this.display_txt.text = this.zaehler;
this.zaehler = 0;
};
setInterval(this, "anzeigen", 1000);
};
ASSetPropFlags(MovieClip.prototype, "fpsmeter", 1);
this.fpsmeter();
Symbol 261 MovieClip Frame 1
stop();
Instance of Symbol 263 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.head.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
Instance of Symbol 265 MovieClip in Symbol 266 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.head.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
Instance of Symbol 263 MovieClip in Symbol 269 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.head.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
Instance of Symbol 265 MovieClip in Symbol 269 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.head.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
Instance of Symbol 268 MovieClip in Symbol 269 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.head.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
Instance of Symbol 272 MovieClip in Symbol 274 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.head.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
Instance of Symbol 273 MovieClip in Symbol 274 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.head.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lknee.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rfoot.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.waist.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.relbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lelbow.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.rhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
onClipEvent (enterFrame) {
if (_root.lhand.hitTest(this)) {
_root.gotoAndPlay("dead3");
}
}
Symbol 292 MovieClip Frame 1
_root.walls1._x = _root.walls1._x - _root.speedometr;
_root.walls2._x = _root.walls2._x - _root.speedometr;
_root.walls3._x = _root.walls3._x - _root.speedometr;
Symbol 292 MovieClip Frame 2
_root.walls1._x = _root.walls1._x - _root.speedometr;
_root.walls2._x = _root.walls2._x - _root.speedometr;
_root.walls3._x = _root.walls3._x - _root.speedometr;
Symbol 328 MovieClip Frame 1
if (_root.silence._width < 15) {
_root.gotoAndPlay("dead2");
}
if (_root.scores == 10) {
tellTarget (_root.bullett2) {
gotoAndPlay (2);
};
}
if (_root.scores == 20) {
tellTarget (_root.bullett3) {
gotoAndPlay (2);
};
}
if (_root.scores == 30) {
tellTarget (_root.bullett4) {
gotoAndPlay (2);
};
}
if (_root.scores == 40) {
tellTarget (_root.bullett5) {
gotoAndPlay (2);
};
}
if (_root.scores == 50) {
tellTarget (_root.bullett6) {
gotoAndPlay (2);
};
}
if (_root.scores == 60) {
tellTarget (_root.bullett7) {
gotoAndPlay (2);
};
}
if (_root.scores == 70) {
tellTarget (_root.bullett8) {
gotoAndPlay (2);
};
}
Mouse.hide();
_root.scores = _root.scores + 1;
if (_root.scores == 33) {
_root.scores = 0;
_root.times = _root.times + 1;
}
if (_root.drager == 0) {
_root.head._x = _root._xmouse;
_root.head._y = _root._ymouse;
}
Symbol 328 MovieClip Frame 2
if (_root.times == 1) {
tellTarget (_root.bullett2) {
gotoAndPlay (2);
};
}
if (_root.times == 2) {
tellTarget (_root.bullett3) {
gotoAndPlay (2);
};
}
if (_root.times == 3) {
tellTarget (_root.bullett4) {
gotoAndPlay (2);
};
}
if (_root.times == 4) {
tellTarget (_root.bullett5) {
gotoAndPlay (2);
};
}
if (_root.times == 5) {
tellTarget (_root.bullett6) {
gotoAndPlay (2);
};
}
if (_root.times == 6) {
tellTarget (_root.bullett7) {
gotoAndPlay (2);
};
}
if (_root.times == 7) {
tellTarget (_root.bullett8) {
gotoAndPlay (2);
};
}
Mouse.hide();
_root.scores = _root.scores + 1;
if (_root.scores == 33) {
_root.scores = 0;
_root.times = _root.times + 1;
}
if (_root.drager == 0) {
_root.head._x = _root._xmouse;
_root.head._y = _root._ymouse;
}
Symbol 330 Button
on (release) {
_root.gotoAndPlay("licznik", 1);
_root.scores = 0;
_root.drager = 0;
}
Symbol 335 Button
on (release) {
gotoAndPlay (185);
_root.scores = 0;
_root.drager = 0;
}
Symbol 337 MovieClip Frame 16
stop();
Symbol 338 Button
on (release) {
_root.gotoAndPlay("licznik2", 1);
_root.scores = 0;
_root.drager = 0;
_root.times = 0;
}
Symbol 341 Button
on (release) {
_root.gotoAndPlay("licznik3", 1);
_root.scores = 0;
_root.drager = 0;
_root.times = 0;
}
Symbol 344 Button
on (release) {
_root.gotoAndPlay("licznik4", 1);
_root.scores = 0;
_root.drager = 0;
_root.times = 0;
_root.deaddd = 0;
}