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

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

967577396.swf

This is the info page for
Flash #12941

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


Text
game loading

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

- more games

more games

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

0

you are dead

play again

play again

play again with highscore

play again with highscore

back to menu

back to menu

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(); }
Frame 3
_root.scores = 0; _root.drager = 0; stop();
Frame 5
stop();
Instance of Symbol 23 MovieClip in Frame 5
onClipEvent (load) { Mouse.hide(); } onClipEvent (mouseMove) { _x = _root._xmouse; _y = _root._ymouse; updateafterevent(); }
Frame 6
_root.scores = 0; _root.drager = 0; play();
Frame 73
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 73 MovieClip "bullett" in Frame 73
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 93 MovieClip "bullett2" in Frame 73
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 94 MovieClip "bullett3" in Frame 73
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 95 MovieClip "bullett4" in Frame 73
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 96 MovieClip "bullett5" in Frame 73
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 75
stop();
Instance of Symbol 23 MovieClip in Frame 75
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 MovieClip Frame 88
_root.play();
Symbol 34 Button
on (release) { getURL ("http://flashground.net", "_blank"); }
Symbol 45 Button
on (release) { gotoAndStop (6); }
Symbol 60 Button
on (release) { getURL ("http://flashground.net", "_blank"); }
Symbol 65 MovieClip Frame 2
_root.shadoww._x = _root.head._x; _root.shadoww._width = _root.head._y;
Symbol 73 MovieClip Frame 1
_root.access = 1;
Symbol 73 MovieClip Frame 2
_root.access = 0;
Symbol 93 MovieClip Frame 1
stop();
Symbol 93 MovieClip Frame 2
_root.access2 = 1;
Symbol 93 MovieClip Frame 3
_root.access2 = 0;
Symbol 93 MovieClip Frame 60
gotoAndPlay (2);
Symbol 94 MovieClip Frame 1
stop();
Symbol 94 MovieClip Frame 2
_root.access3 = 1;
Symbol 94 MovieClip Frame 3
_root.access3 = 0;
Symbol 94 MovieClip Frame 60
gotoAndPlay (2);
Symbol 95 MovieClip Frame 1
stop();
Symbol 95 MovieClip Frame 2
_root.access4 = 1;
Symbol 95 MovieClip Frame 3
_root.access4 = 0;
Symbol 95 MovieClip Frame 60
gotoAndPlay (2);
Symbol 96 MovieClip Frame 1
stop();
Symbol 96 MovieClip Frame 2
_root.access5 = 1;
Symbol 96 MovieClip Frame 3
_root.access5 = 0;
Symbol 96 MovieClip Frame 60
gotoAndPlay (2);
Symbol 98 MovieClip Frame 1
if (_root.silence._width < 20) { _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 98 MovieClip Frame 2
if (_root.silence._width < 20) { _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); }; } Mouse.hide(); _root.scores = _root.scores + 1; if (_root.drager == 0) { _root.head._x = _root._xmouse; _root.head._y = _root._ymouse; }
Symbol 100 MovieClip Frame 1
stop();
Symbol 100 MovieClip Frame 2
play();
Symbol 100 MovieClip Frame 6
stop();
Symbol 106 Button
on (release) { gotoAndPlay (6); }
Symbol 110 Button
on (release) { getURL ("http://flashground.net", "_blank"); }
Symbol 114 Button
on (release) { gotoAndPlay (5); }

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
Symbol 11 MovieClipUses:10Used by:Timeline
Symbol 12 FontUsed by:13 61 62 63 102 103 104 107 108 111 112
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 FontUsed by:26
Symbol 26 TextUses:25Used by:32
Symbol 27 GraphicUsed by:32 37
Symbol 28 FontUsed by:29
Symbol 29 TextUses:28Used by:32 37
Symbol 30 BitmapUsed by:31
Symbol 31 GraphicUses:30Used by:32
Symbol 32 MovieClipUses:26 27 29 31Used by:Timeline
Symbol 33 GraphicUsed by:34
Symbol 34 ButtonUses:33Used by:Timeline
Symbol 35 SoundUsed by:Timeline
Symbol 36 GraphicUsed by:37
Symbol 37 ButtonUses:27 29 36Used by:Timeline
Symbol 38 FontUsed by:39 40
Symbol 39 TextUses:38Used by:Timeline
Symbol 40 TextUses:38Used by:Timeline
Symbol 41 FontUsed by:42 43 46 47 49 52 53 54 57 58
Symbol 42 TextUses:41Used by:45
Symbol 43 TextUses:41Used by:45
Symbol 44 GraphicUsed by:45
Symbol 45 ButtonUses:42 43 44Used by:Timeline
Symbol 46 TextUses:41Used by:51
Symbol 47 TextUses:41Used by:51
Symbol 48 GraphicUsed by:51 56
Symbol 49 TextUses:41Used by:51
Symbol 50 GraphicUsed by:51
Symbol 51 ButtonUses:46 47 48 49 50Used by:Timeline
Symbol 52 TextUses:41Used by:56
Symbol 53 TextUses:41Used by:56
Symbol 54 TextUses:41Used by:56
Symbol 55 GraphicUsed by:56
Symbol 56 ButtonUses:52 48 53 54 55Used by:Timeline
Symbol 57 TextUses:41Used by:60
Symbol 58 TextUses:41Used by:60
Symbol 59 GraphicUsed by:60
Symbol 60 ButtonUses:57 58 59Used by:Timeline
Symbol 61 TextUses:12Used by:Timeline
Symbol 62 TextUses:12Used by:Timeline
Symbol 63 TextUses:12Used by:Timeline
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:Timeline
Symbol 66 GraphicUsed by:73 93 94 95 96
Symbol 67 GraphicUsed by:73 93 94 95 96
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:73 93 94 95 96
Symbol 70 GraphicUsed by:73 93 94 95 96
Symbol 71 GraphicUsed by:72
Symbol 72 MovieClipUses:71Used by:73 93 94 95 96
Symbol 73 MovieClipUses:66 67 69 70 72Used by:Timeline
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:Timeline
Symbol 76 FontUsed by:77 78 79 80 81 82 83 84 85 86 87 88 91 92 101
Symbol 77 EditableTextUses:76Used by:Timeline
Symbol 78 EditableTextUses:76Used by:Timeline
Symbol 79 EditableTextUses:76Used by:Timeline
Symbol 80 EditableTextUses:76Used by:Timeline
Symbol 81 EditableTextUses:76Used by:Timeline
Symbol 82 EditableTextUses:76Used by:Timeline
Symbol 83 EditableTextUses:76Used by:Timeline
Symbol 84 EditableTextUses:76Used by:Timeline
Symbol 85 EditableTextUses:76Used by:Timeline
Symbol 86 EditableTextUses:76Used by:Timeline
Symbol 87 EditableTextUses:76Used by:Timeline
Symbol 88 EditableTextUses:76Used by:Timeline
Symbol 89 FontUsed by:90
Symbol 90 TextUses:89Used by:Timeline
Symbol 91 TextUses:76Used by:Timeline
Symbol 92 EditableTextUses:76Used by:Timeline
Symbol 93 MovieClipUses:66 67 69 70 72Used by:Timeline
Symbol 94 MovieClipUses:66 67 69 70 72Used by:Timeline
Symbol 95 MovieClipUses:66 67 69 70 72Used by:Timeline
Symbol 96 MovieClipUses:66 67 69 70 72Used by:Timeline
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:97Used by:Timeline
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:99Used by:Timeline
Symbol 101 EditableTextUses:76Used by:Timeline
Symbol 102 TextUses:12Used by:Timeline
Symbol 103 TextUses:12Used by:106
Symbol 104 TextUses:12Used by:106
Symbol 105 GraphicUsed by:106
Symbol 106 ButtonUses:103 104 105Used by:Timeline
Symbol 107 TextUses:12Used by:110
Symbol 108 TextUses:12Used by:110
Symbol 109 GraphicUsed by:110
Symbol 110 ButtonUses:107 108 109Used by:Timeline
Symbol 111 TextUses:12Used by:114
Symbol 112 TextUses:12Used by:114
Symbol 113 GraphicUsed by:114
Symbol 114 ButtonUses:111 112 113Used by:Timeline

Instance Names

"shadoww"Frame 73Symbol 65 MovieClip
"lhand"Frame 73Symbol 3 MovieClip [Joint]
"neck"Frame 73Symbol 3 MovieClip [Joint]
"rhand"Frame 73Symbol 3 MovieClip [Joint]
"waist"Frame 73Symbol 3 MovieClip [Joint]
"lelbow"Frame 73Symbol 3 MovieClip [Joint]
"relbow"Frame 73Symbol 3 MovieClip [Joint]
"lknee"Frame 73Symbol 3 MovieClip [Joint]
"lfoot"Frame 73Symbol 3 MovieClip [Joint]
"rknee"Frame 73Symbol 3 MovieClip [Joint]
"rfoot"Frame 73Symbol 3 MovieClip [Joint]
"head"Frame 73Symbol 3 MovieClip [Joint]
"bullett"Frame 73Symbol 73 MovieClip
"silence"Frame 73Symbol 75 MovieClip
"bullett2"Frame 73Symbol 93 MovieClip
"bullett3"Frame 73Symbol 94 MovieClip
"bullett4"Frame 73Symbol 95 MovieClip
"bullett5"Frame 73Symbol 96 MovieClip
"blood"Frame 73Symbol 100 MovieClip
"head"Symbol 3 MovieClip [Joint] Frame 1Symbol 2 MovieClip
"bar"Symbol 21 MovieClip Frame 1Symbol 15 MovieClip
"hit"Symbol 73 MovieClip Frame 1Symbol 72 MovieClip
"hit"Symbol 93 MovieClip Frame 2Symbol 72 MovieClip
"hit"Symbol 94 MovieClip Frame 2Symbol 72 MovieClip
"hit"Symbol 95 MovieClip Frame 2Symbol 72 MovieClip
"hit"Symbol 96 MovieClip Frame 2Symbol 72 MovieClip

Special Tags

ExportAssets (56)Timeline Frame 1Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 73Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"
ExportAssets (56)Timeline Frame 74Symbol 3 as "Joint"

Labels

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

Dynamic Text Variables

statsSymbol 77 EditableText"New Game Start"
text1Symbol 78 EditableText"You have been hit in Head"
text2Symbol 79 EditableText"You have been hit in Neck"
text3Symbol 80 EditableText"You have been hit in Waist"
text4Symbol 81 EditableText"You have been hit in Right Hand"
text5Symbol 82 EditableText"You have been hit in Right Elbow"
text6Symbol 83 EditableText"You have been hit in Left Hand"
text7Symbol 84 EditableText"You have been hit in Left Elbow"
text8Symbol 85 EditableText"You have been hit in Right Knee"
text9Symbol 86 EditableText"You have been hit in Left Knee"
text10Symbol 87 EditableText"You have been hit in Right Foot"
text11Symbol 88 EditableText"You have been hit in Left Foot"
scoresSymbol 92 EditableText"0"
scoresSymbol 101 EditableText"0"




http://swfchan.com/3/12941/info.shtml
Created: 5/6 -2019 10:00:48 Last modified: 5/6 -2019 10:00:48 Server time: 11/05 -2024 09:04:27