STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228082
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/12163845?noj=FRM12163845-2DC" width="1" height="1"></div>

Ragdoll Master.swf

This is the info page for
Flash #2818

(Click the ID number above for more basic data on this flash file.)


Text
game loading

PRESENTED BY

CLICK HERE TO PLAY
OVER 1,000 FREE ONLINE GAMES

a GAME BY

GROUND.NET

RAGDOLL MASTER

GAME BY JACOB DZWINEL

- start game

start game

- instructions

instructions

Try to avoid bullets
Every 1000 next points there
will load one new bullet

- options

options

There is no special options
for this game. It should play
on slow computer too

3

2

1

New Game Start

You have been hit in Head

You have been hit in Neck

You have been hit in Waist

You have been hit in Right Hand

You have been hit in Right Elbow

You have been hit in Left Hand

You have been hit in Left Elbow

You have been hit in Right Knee

You have been hit in Left Knee

You have been hit in Right Foot

You have been hit in Left Foot

Round 1

Scores:

0

you are dead

play again

play again

back to menu

back to menu

ANONYMUS

ActionScript [AS1/AS2]

Frame 1
function doSomething() { } function doSomething2() { getURL ("http://flashground.net", _blank); } MENU.customItems.push(Functioned2); MENU = new ContextMenu(); MENU.hideBuiltInItems(); Functioned = new ContextMenuItem("Copyright by Jacob Dzwinel", doSomething); Functioned2 = new ContextMenuItem("Visit Flashground.net", doSomething2); MENU.customItems.push(Functioned); MENU.customItems.push(Functioned2); _root.menu = MENU;
Instance of Symbol 23 MovieClip in Frame 1
onClipEvent (load) { Mouse.hide(); } onClipEvent (mouseMove) { _x = _root._xmouse; _y = _root._ymouse; updateafterevent(); }
Instance of Symbol 23 MovieClip in Frame 3
onClipEvent (load) { Mouse.hide(); } onClipEvent (mouseMove) { _x = _root._xmouse; _y = _root._ymouse; updateafterevent(); }
Frame 162
gotoAndPlay (163);
Frame 163
_root.scores = 0; _root.drager = 0; stop();
Frame 165
stop();
Instance of Symbol 23 MovieClip in Frame 165
onClipEvent (load) { Mouse.hide(); } onClipEvent (mouseMove) { _x = _root._xmouse; _y = _root._ymouse; updateafterevent(); }
Frame 166
_root.scores = 0; _root.drager = 0; play();
Frame 233
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) / 445); _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 77 MovieClip "bullett" in Frame 233
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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } } 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.blood) { gotoAndPlay (2); }; }; } }
Instance of Symbol 97 MovieClip "bullett2" in Frame 233
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 (2); _root.stats = _root.text1; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rknee.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text8; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lknee.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text9; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lfoot.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text11; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rfoot.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text10; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.waist.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text3; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.neck.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 15; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text2; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.relbow.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text5; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lelbow.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text7; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rhand.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text4; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lhand.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text6; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } }
Instance of Symbol 98 MovieClip "bullett3" in Frame 233
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 (2); _root.stats = _root.text1; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rknee.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text8; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lknee.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text9; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lfoot.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text11; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rfoot.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text10; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.waist.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text3; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.neck.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 15; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text2; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.relbow.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text5; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lelbow.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text7; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rhand.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text4; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lhand.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text6; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } }
Instance of Symbol 99 MovieClip "bullett4" in Frame 233
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 (2); _root.stats = _root.text1; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rknee.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text8; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lknee.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text9; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lfoot.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text11; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rfoot.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text10; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.waist.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text3; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.neck.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 15; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text2; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.relbow.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text5; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lelbow.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text7; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rhand.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text4; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lhand.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text6; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } }
Instance of Symbol 100 MovieClip "bullett5" in Frame 233
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 (2); _root.stats = _root.text1; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rknee.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text8; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lknee.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text9; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lfoot.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text11; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rfoot.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text10; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.waist.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text3; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.neck.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 15; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text2; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.relbow.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text5; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lelbow.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text7; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.rhand.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text4; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } } onClipEvent (enterFrame) { if (_root.lhand.hitTest(this.hit)) { _root.silence._width = _root.silence._width - 10; tellTarget (this) { gotoAndPlay (2); _root.stats = _root.text6; tellTarget (_root.blood) { gotoAndPlay (2); }; }; } }
Frame 235
stop(); _root.namese = _root.anonym;
Instance of Symbol 23 MovieClip in Frame 235
onClipEvent (load) { Mouse.hide(); } onClipEvent (mouseMove) { _x = _root._xmouse; _y = _root._ymouse; updateafterevent(); }
Symbol 3 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 > 245) { _y = 245; _local2 = true; } else if (_y < 0) { _y = 0; _local2 = true; } if (_x > 445) { _x = 445; _local2 = true; } else if (_x < 0) { _x = 0; _local2 = true; } } else { var _local3 = _width / 2.5; if (_y > (245 - _local3)) { _y = (245 - _local3); _local2 = true; } else if (_y < _local3) { _y = _local3; _local2 = true; } if (_x > (445 - _local3)) { _x = (445 - _local3); _local2 = true; } else if (_x < _local3) { _x = _local3; _local2 = true; } } if (_local2) { return(force()); } return(false); } function onPress() { _root.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)); } } };
Instance of Symbol 5 MovieClip in Symbol 10 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 7 MovieClip in Symbol 10 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation - 10; }
Instance of Symbol 9 MovieClip in Symbol 10 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 20; }
Instance of Symbol 10 MovieClip in Symbol 11 MovieClip Frame 1
onClipEvent (load) { stop(); }
Symbol 20 Button
on (release) { _root.play(); }
Symbol 21 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop ("loaded"); }
Symbol 21 MovieClip Frame 2
gotoAndPlay (1);
Symbol 32 Button
on (release) { getURL ("http://addictinggames.com", "_blank"); }
Symbol 40 MovieClip Frame 88
_root.play();
Symbol 42 Button
on (release) { getURL ("http://flashground.net", "_blank"); }
Symbol 53 Button
on (release) { gotoAndStop (166); }
Symbol 69 MovieClip Frame 2
_root.shadoww._x = _root.head._x; _root.shadoww._width = _root.head._y;
Symbol 77 MovieClip Frame 1
_root.access = 1;
Symbol 77 MovieClip Frame 2
_root.access = 0;
Symbol 97 MovieClip Frame 1
stop();
Symbol 97 MovieClip Frame 2
_root.access2 = 1;
Symbol 97 MovieClip Frame 3
_root.access2 = 0;
Symbol 97 MovieClip Frame 60
gotoAndPlay (2);
Symbol 98 MovieClip Frame 1
stop();
Symbol 98 MovieClip Frame 2
_root.access3 = 1;
Symbol 98 MovieClip Frame 3
_root.access3 = 0;
Symbol 98 MovieClip Frame 60
gotoAndPlay (2);
Symbol 99 MovieClip Frame 1
stop();
Symbol 99 MovieClip Frame 2
_root.access4 = 1;
Symbol 99 MovieClip Frame 3
_root.access4 = 0;
Symbol 99 MovieClip Frame 60
gotoAndPlay (2);
Symbol 100 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 2
_root.access5 = 1;
Symbol 100 MovieClip Frame 3
_root.access5 = 0;
Symbol 100 MovieClip Frame 60
gotoAndPlay (2);
Symbol 102 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); }; } Mouse.hide(); _root.scores = _root.scores + 1; if (_root.drager == 0) { _root.head._x = _root._xmouse; _root.head._y = _root._ymouse; }
Symbol 102 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); }; } Mouse.hide(); _root.scores = _root.scores + 1; if (_root.drager == 0) { _root.head._x = _root._xmouse; _root.head._y = _root._ymouse; }
Symbol 104 MovieClip Frame 1
stop();
Symbol 104 MovieClip Frame 2
play();
Symbol 104 MovieClip Frame 6
stop();
Symbol 109 Button
on (release) { gotoAndPlay (166); }
Symbol 113 Button
on (release) { gotoAndPlay (165); }

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:3
Symbol 3 MovieClip [Joint]Uses:2Used by:Timeline
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:10
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:10
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:8Used by:10
Symbol 10 MovieClipUses:5 7 9Used by:11  Timeline
Symbol 11 MovieClipUses:10Used by:Timeline
Symbol 12 FontUsed by:13 65 66 67 105 106 107 110 111 114
Symbol 13 TextUses:12Used by:Timeline
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:21
Symbol 16 GraphicUsed by:20
Symbol 17 GraphicUsed by:20
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 ButtonUses:16 17 18 19Used by:21
Symbol 21 MovieClipUses:15 20Used by:Timeline
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:Timeline
Symbol 24 SoundUsed by:Timeline
Symbol 25 GraphicUsed by:Timeline
Symbol 26 FontUsed by:27 28
Symbol 27 TextUses:26Used by:Timeline
Symbol 28 TextUses:26Used by:Timeline
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:Timeline
Symbol 31 GraphicUsed by:32
Symbol 32 ButtonUses:31Used by:Timeline
Symbol 33 FontUsed by:34
Symbol 34 TextUses:33Used by:40
Symbol 35 GraphicUsed by:40 45
Symbol 36 FontUsed by:37
Symbol 37 TextUses:36Used by:40 45
Symbol 38 BitmapUsed by:39
Symbol 39 GraphicUses:38Used by:40
Symbol 40 MovieClipUses:34 35 37 39Used by:Timeline
Symbol 41 GraphicUsed by:42
Symbol 42 ButtonUses:41Used by:Timeline
Symbol 43 SoundUsed by:Timeline
Symbol 44 GraphicUsed by:45
Symbol 45 ButtonUses:35 37 44Used by:Timeline
Symbol 46 FontUsed by:47 48
Symbol 47 TextUses:46Used by:Timeline
Symbol 48 TextUses:46Used by:Timeline
Symbol 49 FontUsed by:50 51 54 55 57 60 61 62
Symbol 50 TextUses:49Used by:53
Symbol 51 TextUses:49Used by:53
Symbol 52 GraphicUsed by:53
Symbol 53 ButtonUses:50 51 52Used by:Timeline
Symbol 54 TextUses:49Used by:59
Symbol 55 TextUses:49Used by:59
Symbol 56 GraphicUsed by:59 64
Symbol 57 TextUses:49Used by:59
Symbol 58 GraphicUsed by:59
Symbol 59 ButtonUses:54 55 56 57 58Used by:Timeline
Symbol 60 TextUses:49Used by:64
Symbol 61 TextUses:49Used by:64
Symbol 62 TextUses:49Used by:64
Symbol 63 GraphicUsed by:64
Symbol 64 ButtonUses:60 56 61 62 63Used by:Timeline
Symbol 65 TextUses:12Used by:Timeline
Symbol 66 TextUses:12Used by:Timeline
Symbol 67 TextUses:12Used by:Timeline
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:Timeline
Symbol 70 GraphicUsed by:77 97 98 99 100
Symbol 71 GraphicUsed by:77 97 98 99 100
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:77 97 98 99 100
Symbol 74 GraphicUsed by:77 97 98 99 100
Symbol 75 GraphicUsed by:76
Symbol 76 MovieClipUses:75Used by:77 97 98 99 100
Symbol 77 MovieClipUses:70 71 73 74 76Used by:Timeline
Symbol 78 GraphicUsed by:79
Symbol 79 MovieClipUses:78Used by:Timeline
Symbol 80 FontUsed by:81 82 83 84 85 86 87 88 89 90 91 92 95 96
Symbol 81 EditableTextUses:80Used by:Timeline
Symbol 82 EditableTextUses:80Used by:Timeline
Symbol 83 EditableTextUses:80Used by:Timeline
Symbol 84 EditableTextUses:80Used by:Timeline
Symbol 85 EditableTextUses:80Used by:Timeline
Symbol 86 EditableTextUses:80Used by:Timeline
Symbol 87 EditableTextUses:80Used by:Timeline
Symbol 88 EditableTextUses:80Used by:Timeline
Symbol 89 EditableTextUses:80Used by:Timeline
Symbol 90 EditableTextUses:80Used by:Timeline
Symbol 91 EditableTextUses:80Used by:Timeline
Symbol 92 EditableTextUses:80Used by:Timeline
Symbol 93 FontUsed by:94
Symbol 94 TextUses:93Used by:Timeline
Symbol 95 TextUses:80Used by:Timeline
Symbol 96 EditableTextUses:80Used by:Timeline
Symbol 97 MovieClipUses:70 71 73 74 76Used by:Timeline
Symbol 98 MovieClipUses:70 71 73 74 76Used by:Timeline
Symbol 99 MovieClipUses:70 71 73 74 76Used by:Timeline
Symbol 100 MovieClipUses:70 71 73 74 76Used by:Timeline
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:101Used by:Timeline
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:Timeline
Symbol 105 TextUses:12Used by:Timeline
Symbol 106 TextUses:12Used by:109
Symbol 107 TextUses:12Used by:109
Symbol 108 GraphicUsed by:109
Symbol 109 ButtonUses:106 107 108Used by:Timeline
Symbol 110 TextUses:12Used by:113
Symbol 111 TextUses:12Used by:113
Symbol 112 GraphicUsed by:113
Symbol 113 ButtonUses:110 111 112Used by:Timeline
Symbol 114 EditableTextUses:12Used by:Timeline

Instance Names

"shadoww"Frame 233Symbol 69 MovieClip
"lhand"Frame 233Symbol 3 MovieClip [Joint]
"neck"Frame 233Symbol 3 MovieClip [Joint]
"rhand"Frame 233Symbol 3 MovieClip [Joint]
"waist"Frame 233Symbol 3 MovieClip [Joint]
"lelbow"Frame 233Symbol 3 MovieClip [Joint]
"relbow"Frame 233Symbol 3 MovieClip [Joint]
"lknee"Frame 233Symbol 3 MovieClip [Joint]
"lfoot"Frame 233Symbol 3 MovieClip [Joint]
"rknee"Frame 233Symbol 3 MovieClip [Joint]
"rfoot"Frame 233Symbol 3 MovieClip [Joint]
"head"Frame 233Symbol 3 MovieClip [Joint]
"bullett"Frame 233Symbol 77 MovieClip
"silence"Frame 233Symbol 79 MovieClip
"bullett2"Frame 233Symbol 97 MovieClip
"bullett3"Frame 233Symbol 98 MovieClip
"bullett4"Frame 233Symbol 99 MovieClip
"bullett5"Frame 233Symbol 100 MovieClip
"blood"Frame 233Symbol 104 MovieClip
"head"Symbol 3 MovieClip [Joint] Frame 1Symbol 2 MovieClip
"bar"Symbol 21 MovieClip Frame 1Symbol 15 MovieClip
"hit"Symbol 77 MovieClip Frame 1Symbol 76 MovieClip
"hit"Symbol 97 MovieClip Frame 2Symbol 76 MovieClip
"hit"Symbol 98 MovieClip Frame 2Symbol 76 MovieClip
"hit"Symbol 99 MovieClip Frame 2Symbol 76 MovieClip
"hit"Symbol 100 MovieClip Frame 2Symbol 76 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 233Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 234Symbol 3 as "Joint"

Labels

"dead"Frame 235
"loaded"Symbol 21 MovieClip Frame 3

Dynamic Text Variables

statsSymbol 81 EditableText"New Game Start"
text1Symbol 82 EditableText"You have been hit in Head"
text2Symbol 83 EditableText"You have been hit in Neck"
text3Symbol 84 EditableText"You have been hit in Waist"
text4Symbol 85 EditableText"You have been hit in Right Hand"
text5Symbol 86 EditableText"You have been hit in Right Elbow"
text6Symbol 87 EditableText"You have been hit in Left Hand"
text7Symbol 88 EditableText"You have been hit in Left Elbow"
text8Symbol 89 EditableText"You have been hit in Right Knee"
text9Symbol 90 EditableText"You have been hit in Left Knee"
text10Symbol 91 EditableText"You have been hit in Right Foot"
text11Symbol 92 EditableText"You have been hit in Left Foot"
scoresSymbol 96 EditableText"0"
anonymSymbol 114 EditableText"ANONYMUS"




http://swfchan.com/1/2818/info.shtml
Created: 17/6 -2019 12:15:40 Last modified: 17/6 -2019 12:15:40 Server time: 02/05 -2024 09:26:34