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/73674166?noj=FRM73674166-11DC" width="1" height="1"></div>

Ragdoll Lincoln.swf

This is the info page for
Flash #47102

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


Text
Created By Kyle Thompson
2008

Abraham Lincoln has fallen
asleep and is hallucinating.
Collect dead fish to gain points.
Dodge obstacles and maintain
your health.  There are 8 stages.
Get through them all and you
win.  Lose all your lives and its
game over.  Use the mouse to
move, and good luck.

How To Play...

Menu

Play Game

none

Game Over

Wow, you died?  Try again or submit your score.

Score:

h

Remaining Health x 5

h

Total Score:

h

Submit

Replay

Play More Games

h

h

h

Input Name

Submit

Submitted!

Highscore Submitted!

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

loading

#1

#2

#3

#4

#5

#6

#7

#8

#9

#10

Nice Job!

Nice job, you won!  Try again or submit your score.

h

h

h

h

h

h

Input Name

ActionScript [AS1/AS2]

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

Library Items

Symbol 1 GraphicUsed by:Timeline
Symbol 2 GraphicUsed by:3 13  Timeline
Symbol 3 ButtonUses:2Used by:13  Timeline
Symbol 4 FontUsed by:5 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
Symbol 5 EditableTextUses:4Used by:Timeline
Symbol 6 GraphicUsed by:Timeline
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:Timeline
Symbol 9 BitmapUsed by:10
Symbol 10 GraphicUses:9Used by:13  Timeline
Symbol 230 MovieClip [__Packages.ab3.rankz.Armor_Bot_30_En_AS1]
Symbol 11 SoundUsed by:13
Symbol 12 SoundUsed by:13
Symbol 13 MovieClipUses:2 10 3 11 12Used by:Timeline
Symbol 14 SoundUsed by:Timeline
Symbol 15 GraphicUsed by:Timeline
Symbol 16 GraphicUsed by:20
Symbol 17 GraphicUsed by:20  Timeline
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:16 17 18 19Used by:21
Symbol 21 MovieClip [Joint]Uses:20Used by:Timeline
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:25
Symbol 24 GraphicUsed by:25
Symbol 25 ButtonUses:23 24Used by:Timeline
Symbol 26 GraphicUsed by:27
Symbol 27 MovieClipUses:26Used by:29
Symbol 28 GraphicUsed by:29
Symbol 29 ButtonUses:27 28Used by:Timeline
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:33
Symbol 32 GraphicUsed by:33
Symbol 33 ButtonUses:31 32Used by:Timeline
Symbol 34 GraphicUsed by:35
Symbol 35 MovieClipUses:34Used by:Timeline
Symbol 36 FontUsed by:37 39 79
Symbol 37 TextUses:36Used by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 TextUses:36Used by:Timeline
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:Timeline
Symbol 42 FontUsed by:43 45 48 161 163
Symbol 43 TextUses:42Used by:Timeline
Symbol 44 GraphicUsed by:46 47 49 50 168
Symbol 45 TextUses:42Used by:46 47
Symbol 46 MovieClipUses:44 45Used by:47
Symbol 47 ButtonUses:46 44 45Used by:Timeline
Symbol 48 TextUses:42Used by:49 50
Symbol 49 MovieClipUses:44 48Used by:50
Symbol 50 ButtonUses:49 44 48Used by:Timeline
Symbol 51 ShapeTweeningUsed by:53
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:51 52Used by:Timeline
Symbol 54 GraphicUsed by:Timeline
Symbol 55 GraphicUsed by:62
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClipUses:56Used by:62 106 133
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClipUses:58Used by:62 133
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:62
Symbol 62 MovieClipUses:55 57 59 61Used by:Timeline
Symbol 63 GraphicUsed by:65
Symbol 64 SoundUsed by:65
Symbol 65 MovieClipUses:63 64Used by:Timeline
Symbol 66 GraphicUsed by:70
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:70
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:66 68 69Used by:Timeline
Symbol 71 GraphicUsed by:78
Symbol 72 GraphicUsed by:78
Symbol 73 GraphicUsed by:78
Symbol 74 GraphicUsed by:78
Symbol 75 GraphicUsed by:78
Symbol 76 GraphicUsed by:78
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:71 72 73 74 75 76 77Used by:Timeline
Symbol 79 EditableTextUses:36Used by:Timeline
Symbol 80 GraphicUsed by:85
Symbol 81 GraphicUsed by:85
Symbol 82 GraphicUsed by:85
Symbol 83 GraphicUsed by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:80 81 82 83 84Used by:101 109 114 119 136 143 155  Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:88 174
Symbol 88 MovieClipUses:87Used by:Timeline
Symbol 89 GraphicUsed by:Timeline
Symbol 90 GraphicUsed by:97
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:91Used by:97
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:95
Symbol 95 MovieClipUses:94Used by:96
Symbol 96 MovieClipUses:95Used by:97
Symbol 97 MovieClipUses:90 92 96Used by:Timeline
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:100
Symbol 100 MovieClipUses:99Used by:Timeline
Symbol 101 MovieClipUses:85Used by:Timeline
Symbol 102 GraphicUsed by:106
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:105
Symbol 105 MovieClipUses:104Used by:106
Symbol 106 MovieClipUses:102 57 105Used by:Timeline
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClipUses:107Used by:Timeline
Symbol 109 MovieClipUses:85Used by:Timeline
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:Timeline
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:Timeline
Symbol 114 MovieClipUses:85Used by:Timeline
Symbol 115 GraphicUsed by:116
Symbol 116 MovieClipUses:115Used by:Timeline
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:Timeline
Symbol 119 MovieClipUses:85Used by:Timeline
Symbol 120 GraphicUsed by:133
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:133
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClipUses:123Used by:125
Symbol 125 MovieClipUses:124Used by:133
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:130
Symbol 128 GraphicUsed by:129
Symbol 129 MovieClipUses:128Used by:130
Symbol 130 MovieClipUses:127 129Used by:133
Symbol 131 GraphicUsed by:132
Symbol 132 MovieClipUses:131Used by:133
Symbol 133 MovieClipUses:120 122 125 130 132 57 59Used by:Timeline
Symbol 134 GraphicUsed by:135
Symbol 135 MovieClipUses:134Used by:Timeline
Symbol 136 MovieClipUses:85Used by:Timeline
Symbol 137 GraphicUsed by:138
Symbol 138 MovieClipUses:137Used by:Timeline
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:139Used by:Timeline
Symbol 141 GraphicUsed by:142
Symbol 142 MovieClipUses:141Used by:Timeline
Symbol 143 MovieClipUses:85Used by:Timeline
Symbol 144 GraphicUsed by:152
Symbol 145 GraphicUsed by:146
Symbol 146 MovieClipUses:145Used by:147
Symbol 147 MovieClipUses:146Used by:152
Symbol 148 ShapeTweeningUsed by:151
Symbol 149 ShapeTweeningUsed by:151
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClipUses:148 149 150Used by:152
Symbol 152 MovieClipUses:144 147 151Used by:Timeline
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:153Used by:Timeline
Symbol 155 MovieClipUses:85Used by:Timeline
Symbol 156 GraphicUsed by:Timeline
Symbol 157 GraphicUsed by:218 219  Timeline
Symbol 158 FontUsed by:159 160 162 164 165 166 167 170 172 175 176 177 180 182 184 187 221 222 223 224 225 226 227 228 229
Symbol 159 TextUses:158Used by:Timeline
Symbol 160 TextUses:158Used by:Timeline
Symbol 161 TextUses:42Used by:Timeline
Symbol 162 EditableTextUses:158Used by:Timeline
Symbol 163 TextUses:42Used by:Timeline
Symbol 164 EditableTextUses:158Used by:Timeline
Symbol 165 TextUses:158Used by:Timeline
Symbol 166 EditableTextUses:158Used by:Timeline
Symbol 167 TextUses:158Used by:168
Symbol 168 ButtonUses:44 167Used by:Timeline
Symbol 169 GraphicUsed by:171 173
Symbol 170 TextUses:158Used by:171 218  Timeline
Symbol 171 ButtonUses:169 170Used by:Timeline
Symbol 172 TextUses:158Used by:173 178 219
Symbol 173 ButtonUses:169 172Used by:Timeline
Symbol 174 MovieClipUses:87Used by:Timeline
Symbol 175 EditableTextUses:158Used by:Timeline
Symbol 176 EditableTextUses:158Used by:Timeline
Symbol 177 EditableTextUses:158Used by:Timeline
Symbol 178 ButtonUses:172Used by:Timeline
Symbol 179 GraphicUsed by:Timeline
Symbol 180 EditableTextUses:158Used by:Timeline
Symbol 181 GraphicUsed by:185
Symbol 182 TextUses:158Used by:185
Symbol 183 GraphicUsed by:185
Symbol 184 TextUses:158Used by:185
Symbol 185 MovieClipUses:181 182 183 184Used by:Timeline
Symbol 186 GraphicUsed by:Timeline
Symbol 187 TextUses:158Used by:Timeline
Symbol 188 EditableTextUses:4Used by:Timeline
Symbol 189 EditableTextUses:4Used by:Timeline
Symbol 190 EditableTextUses:4Used by:Timeline
Symbol 191 EditableTextUses:4Used by:Timeline
Symbol 192 EditableTextUses:4Used by:Timeline
Symbol 193 EditableTextUses:4Used by:Timeline
Symbol 194 EditableTextUses:4Used by:Timeline
Symbol 195 EditableTextUses:4Used by:Timeline
Symbol 196 EditableTextUses:4Used by:Timeline
Symbol 197 EditableTextUses:4Used by:Timeline
Symbol 198 EditableTextUses:4Used by:Timeline
Symbol 199 EditableTextUses:4Used by:Timeline
Symbol 200 EditableTextUses:4Used by:Timeline
Symbol 201 EditableTextUses:4Used by:Timeline
Symbol 202 EditableTextUses:4Used by:Timeline
Symbol 203 EditableTextUses:4Used by:Timeline
Symbol 204 EditableTextUses:4Used by:Timeline
Symbol 205 EditableTextUses:4Used by:Timeline
Symbol 206 EditableTextUses:4Used by:Timeline
Symbol 207 EditableTextUses:4Used by:Timeline
Symbol 208 TextUses:4Used by:Timeline
Symbol 209 TextUses:4Used by:Timeline
Symbol 210 TextUses:4Used by:Timeline
Symbol 211 TextUses:4Used by:Timeline
Symbol 212 TextUses:4Used by:Timeline
Symbol 213 TextUses:4Used by:Timeline
Symbol 214 TextUses:4Used by:Timeline
Symbol 215 TextUses:4Used by:Timeline
Symbol 216 TextUses:4Used by:Timeline
Symbol 217 TextUses:4Used by:Timeline
Symbol 218 ButtonUses:157 170Used by:Timeline
Symbol 219 ButtonUses:157 172Used by:Timeline
Symbol 220 GraphicUsed by:Timeline
Symbol 221 TextUses:158Used by:Timeline
Symbol 222 TextUses:158Used by:Timeline
Symbol 223 EditableTextUses:158Used by:Timeline
Symbol 224 EditableTextUses:158Used by:Timeline
Symbol 225 EditableTextUses:158Used by:Timeline
Symbol 226 EditableTextUses:158Used by:Timeline
Symbol 227 EditableTextUses:158Used by:Timeline
Symbol 228 EditableTextUses:158Used by:Timeline
Symbol 229 EditableTextUses:158Used by:Timeline

Instance Names

"loadBar"Frame 1Symbol 8 MovieClip
"lhand"Frame 5Symbol 21 MovieClip [Joint]
"neck"Frame 5Symbol 21 MovieClip [Joint]
"rhand"Frame 5Symbol 21 MovieClip [Joint]
"waist"Frame 5Symbol 21 MovieClip [Joint]
"lelbow"Frame 5Symbol 21 MovieClip [Joint]
"relbow"Frame 5Symbol 21 MovieClip [Joint]
"lknee"Frame 5Symbol 21 MovieClip [Joint]
"lfoot"Frame 5Symbol 21 MovieClip [Joint]
"rknee"Frame 5Symbol 21 MovieClip [Joint]
"rfoot"Frame 5Symbol 21 MovieClip [Joint]
"head"Frame 5Symbol 21 MovieClip [Joint]
"lhand"Frame 6Symbol 21 MovieClip [Joint]
"neck"Frame 6Symbol 21 MovieClip [Joint]
"rhand"Frame 6Symbol 21 MovieClip [Joint]
"waist"Frame 6Symbol 21 MovieClip [Joint]
"lelbow"Frame 6Symbol 21 MovieClip [Joint]
"relbow"Frame 6Symbol 21 MovieClip [Joint]
"lknee"Frame 6Symbol 21 MovieClip [Joint]
"lfoot"Frame 6Symbol 21 MovieClip [Joint]
"rknee"Frame 6Symbol 21 MovieClip [Joint]
"rfoot"Frame 6Symbol 21 MovieClip [Joint]
"head"Frame 6Symbol 21 MovieClip [Joint]
"circ"Frame 7Symbol 53 MovieClip
"circ"Frame 7Symbol 53 MovieClip
"circ"Frame 7Symbol 53 MovieClip
"circ"Frame 7Symbol 53 MovieClip
"circ"Frame 7Symbol 53 MovieClip
"lhand"Frame 7Symbol 21 MovieClip [Joint]
"neck"Frame 7Symbol 21 MovieClip [Joint]
"rhand"Frame 7Symbol 21 MovieClip [Joint]
"waist"Frame 7Symbol 21 MovieClip [Joint]
"lelbow"Frame 7Symbol 21 MovieClip [Joint]
"relbow"Frame 7Symbol 21 MovieClip [Joint]
"lknee"Frame 7Symbol 21 MovieClip [Joint]
"lfoot"Frame 7Symbol 21 MovieClip [Joint]
"rknee"Frame 7Symbol 21 MovieClip [Joint]
"rfoot"Frame 7Symbol 21 MovieClip [Joint]
"head"Frame 7Symbol 21 MovieClip [Joint]
"sounds"Frame 7Symbol 65 MovieClip
"mover"Frame 7Symbol 88 MovieClip
"rankz_n1"Frame 17Symbol 188 EditableText
"rankz_n2"Frame 17Symbol 189 EditableText
"rankz_n3"Frame 17Symbol 190 EditableText
"rankz_n4"Frame 17Symbol 191 EditableText
"rankz_n5"Frame 17Symbol 192 EditableText
"rankz_n6"Frame 17Symbol 193 EditableText
"rankz_n7"Frame 17Symbol 194 EditableText
"rankz_n8"Frame 17Symbol 195 EditableText
"rankz_n9"Frame 17Symbol 196 EditableText
"rankz_n10"Frame 17Symbol 197 EditableText
"rankz_v1"Frame 17Symbol 198 EditableText
"rankz_v2"Frame 17Symbol 199 EditableText
"rankz_v3"Frame 17Symbol 200 EditableText
"rankz_v4"Frame 17Symbol 201 EditableText
"rankz_v5"Frame 17Symbol 202 EditableText
"rankz_v6"Frame 17Symbol 203 EditableText
"rankz_v7"Frame 17Symbol 204 EditableText
"rankz_v8"Frame 17Symbol 205 EditableText
"rankz_v9"Frame 17Symbol 206 EditableText
"rankz_v10"Frame 17Symbol 207 EditableText
"hat"Symbol 21 MovieClip [Joint] Frame 1Symbol 20 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access network only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 230 as "__Packages.ab3.rankz.Armor_Bot_30_En_AS1"
ExportAssets (56)Timeline Frame 5Symbol 21 as "Joint"

Labels

"menu"Frame 5
"gameover"Frame 15

Dynamic Text Variables

loadTextSymbol 5 EditableText""
_root.scoreSymbol 79 EditableText"none"
_root.scoreSymbol 162 EditableText"h"
_root.hscoreSymbol 164 EditableText"h"
_root.tscoSymbol 166 EditableText"h"
_root.scoreSymbol 175 EditableText"h"
_root.hscoreSymbol 176 EditableText"h"
_root.tscoSymbol 177 EditableText"h"
_root.nnameSymbol 180 EditableText"Input Name"
_root.scoreSymbol 223 EditableText"h"
_root.hscoreSymbol 224 EditableText"h"
_root.tscoSymbol 225 EditableText"h"
_root.scoreSymbol 226 EditableText"h"
_root.hscoreSymbol 227 EditableText"h"
_root.tscoSymbol 228 EditableText"h"
_root.nnameSymbol 229 EditableText"Input Name"




http://swfchan.com/10/47102/info.shtml
Created: 2/5 -2019 12:05:46 Last modified: 2/5 -2019 12:05:46 Server time: 11/05 -2024 11:35:49