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

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

rotatespin.swf

This is the info page for
Flash #51631

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


Text
RotatSpin

by Nev

###

% of

######

bytes

###

######

play

continue

game news

more games

Credits
Programming and Art: Nevcalian
Music: Kevin MacLeod

Deaths:

######

Level:

####

Oh no! The evil crab lord has stolen your hat!

Press Space or   to Jump
<- and -> will change your speed

->

Try jumping over obstacles
If you don't, you'll have to repeat the level

If you hit this object, the screen rotates

If you get dizzy you can press P to pause

Sometimes a puzzle is easier without jumping

Did you know that you can jump even if
you're not on the ground?

These arrows push

BlARghghdfh

This is when pausing can come in handy

Congratulations!
You managed to beat every level
and vanquish the evil crab lord with only

###### deaths

submit

Name

ActionScript [AS1/AS2]

Frame 1
stop();
Instance of Symbol 19 MovieClip "preload" in Frame 1
onClipEvent (enterFrame) { this._alpha = 100 - this._currentframe(); }
Frame 2
vcam._visible = false; vcam._rotation = 0; Stage.showMenu = false; stop(); pauseChar = false; saved = SharedObject.getLocal("RotatSpin");
Instance of Symbol 46 MovieClip "preloader" in Frame 2
onClipEvent (enterFrame) { this._alpha = this.percentbytes; }
Instance of Symbol 53 MovieClip in Frame 2
onClipEvent (load) { if ((!_root.mute) && (!_root.isPlaying)) { _root.isPlaying = true; bgmusic = new Sound(this); bgmusic.attachSound("song"); bgmusic.start(0, 9999); bgmusic.setVolume(40); } buttonDown = false; } onClipEvent (enterFrame) { if (Key.isDown(77) && (!buttonDown)) { buttonDown = true; if (_root.mute) { _root.isPlaying = true; _root.mute = false; bgmusic = new Sound(this); bgmusic.attachSound("Song"); bgmusic.start(0, 9999); } else { _root.mute = true; } } else if (!Key.isDown(77)) { buttonDown = false; } if (_root.mute) { _root.isPlaying = false; this.gotoAndStop(2); stopAllSounds(); } else { this.gotoAndStop(1); } }
Instance of Symbol 56 MovieClip in Frame 2
onClipEvent (load) { beenPressed = false; } onClipEvent (enterFrame) { if (Key.isDown(81) && (!beenPressed)) { beenPressed = true; if (_quality == "HIGH") { _quality = "MEDIUM"; } else if (_quality == "MEDIUM") { _quality = "LOW"; } else if (_quality == "LOW") { _quality = "HIGH"; } } else if (!Key.isDown(81)) { beenPressed = false; } }
Instance of Symbol 80 MovieClip "char" in Frame 2
onClipEvent (load) { jumpSound = new Sound(this); jumpSound.attachSound("jump"); startY = this._y; startX = this._x; xScale = this._xscale; started = false; this._alpha = 0; moving = false; gravity = 0.4; ySpeed = 0; jumpPower = 8; inAir = false; xSpeed = 2; dead = false; maxSpeed = 3.5; minSpeed = 1.2; deccel = 0.25; accel = 0.2; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } else if (!started) { started = true; moving = true; } if ((this._y >= 400) && (moving)) { xSpeed = 0; ySpeed = 0; this._x = startX; this._y = startY; } if (moving) { if ((Key.isDown(32) || (Key.isDown(38))) && (!inAir)) { if (!_root.mute) { jumpSound.start(0, 1); } ySpeed = -jumpPower; inAir = true; } if (Key.isDown(37)) { xSpeed = xSpeed - accel; this._xscale = -xScale; } if (Key.isDown(39)) { xSpeed = xSpeed + accel; this._xscale = xScale; } this._x = this._x + xSpeed; ySpeed = ySpeed + gravity; this._y = this._y + ySpeed; while (_root.ground.hitTest(this._x, this._y, true)) { inAir = false; ySpeed = 0; this._y = this._y - 0.1; } } }
Instance of Symbol 281 MovieClip "vcam" in Frame 2
onClipEvent (load) { newAngle = false; } onClipEvent (enterFrame) { if (_root.level._currentframe == 1) { this.gotoAndStop(2); } else if (_root.level._currentframe == 2) { this.gotoAndStop(3); } else if (_root.level._currentframe == 3) { this.gotoAndStop(4); } else if (_root.level._currentframe == 4) { this.gotoAndStop(5); } else if (_root.level._currentframe == 5) { this.gotoAndStop(6); } else if (_root.level._currentframe == 8) { this.gotoAndStop(7); } else if (_root.level._currentframe == 12) { this.gotoAndStop(8); } else if (_root.level._currentframe == 15) { this.gotoAndStop(9); } else if (_root.level._currentframe == 14) { this.gotoAndStop(10); } else if (_root.level._currentframe == 28) { this.gotoAndStop(11); } else if (_root.level._currentframe == 47) { if (this._currentframe < 12) { this.gotoAndStop(12); } } else { this.gotoAndStop(1); } if (newAngle && (_root.level._currentframe > 4)) { newAngle = false; desiredRotation = random(360); this._rotation = desiredRotation; } }
Frame 3
function userDies() { if (_root.char.xSpeed > _root.char.maxSpeed) { _root.char.xSpeed = _root.char.maxSpeed; } else if (_root.char.xSpeed < (-_root.char.maxSpeed)) { _root.char.xSpeed = -_root.char.maxSpeed; } if (!_root.mute) { explodeSound.start(0, 1); } deaths++; _root.char.dead = true; _root.char.ySpeed = 0; _root.char.moving = false; saveGame(); } function saveGame() { saved.data.deaths = _root.deaths; saved.data.levelAt = _root.levelAt; } vcam._visible = true; explodeSound = new Sound(this); explodeSound.attachSound("explode"); pauseChar = false; beatGame = false; levelEnd = false;
Instance of Symbol 370 MovieClip "level" in Frame 3
onClipEvent (load) { gotoAndStop(_root.levelAt); this._alpha = 0; } onClipEvent (enterFrame) { if (((this._alpha < 100) && (!_root.levelEnd)) && (!_root.beatGame)) { this._alpha = this._alpha + 10; } else if (_root.levelEnd) { this._alpha = this._alpha - 10; if (this._alpha < 0) { _root.char._x = 14.7; _root.char._y = 164.5; this.nextFrame(); _root.levelEnd = false; } } }
Instance of Symbol 373 MovieClip "char" in Frame 3
onClipEvent (load) { jumpSound = new Sound(this); jumpSound.attachSound("jump"); startX = this._x; startY = this._y; started = false; this._alpha = 0; moving = false; beenPressed = false; gravity = 0.4; ySpeed = 0; jumpPower = 8; inAir = false; xSpeed = 2; dead = false; maxSpeed = 3.5; minSpeed = 1.2; deccel = 0.25; accel = 0.2; _root.canPause = true; _root.pauseChar = false; } onClipEvent (enterFrame) { if ((this._alpha < 100) && (!started)) { this._alpha = this._alpha + 10; } else if (!started) { started = true; moving = true; } if (Key.isDown(80) && (!beenPressed)) { beenPressed = true; if ((_root.pauseChar && (!moving)) && (_root.canPause)) { moving = true; _root.pauseChar = false; } else if (_root.canPause) { moving = false; _root.pauseChar = true; } } else if (!Key.isDown(80)) { beenPressed = false; } if (dead && (!moving)) { this.gotoAndPlay("die"); } if ((this._x >= 500) && (!root.levelEnd)) { _root.levelAt++; _root.saveGame(); this._x = startX; this._y = startY; _root.vcam.newAngle = true; _root.levelEnd = true; ySpeed = 0; if (xSpeed > maxSpeed) { xSpeed = maxSpeed; } } if ((this._y >= 400) && (moving)) { _root.userDies(); } if (moving) { if ((Key.isDown(32) || (Key.isDown(38))) && (!inAir)) { if (!_root.mute) { jumpSound.start(0, 1); } ySpeed = -jumpPower; inAir = true; } if (Key.isDown(37)) { xSpeed = xSpeed - accel; } if (Key.isDown(39)) { xSpeed = xSpeed + accel; } if (xSpeed > maxSpeed) { xSpeed = xSpeed - deccel; } else if (xSpeed < minSpeed) { xSpeed = xSpeed + deccel; } this._x = this._x + xSpeed; ySpeed = ySpeed + gravity; this._y = this._y + ySpeed; while (_root.level.ground.hitTest(this._x, this._y, true) && (ySpeed >= 0)) { inAir = false; ySpeed = 0; this._y = this._y - 0.1; } } }
Symbol 16 Button
on (press) { getURL ("http://www.armorgames.com", "_blank"); }
Symbol 19 MovieClip Frame 120
_root.nextFrame();
Symbol 374 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 33 Button
on (release) { _root.levelAt = 1; _root.deaths = 0; _root.char.play(); _root.char.moving = false; _root.pauseChar = true; }
Symbol 34 MovieClip Frame 10
stop();
Symbol 37 Button
on (release) { _root.levelAt = _root.saved.data.levelAt; _root.deaths = _root.saved.data.deaths; _root.nextFrame(); }
Symbol 38 MovieClip Frame 10
stop();
Symbol 43 Button
on (release) { getURL ("http://armorblog.com", "_blank"); }
Symbol 44 Button
on (release) { getURL ("http://armorgames.com", "_blank"); }
Symbol 45 MovieClip Frame 10
stop();
Symbol 46 MovieClip Frame 1
loadedbytes = _root.getBytesLoaded(); totalbytes = _root.getBytesTotal(); percentbytes = int(loadedbytes / (totalbytes / 100));
Symbol 46 MovieClip Frame 2
if (loadedbytes == totalbytes) { percentbytes = 100; nextFrame(); } else { gotoAndPlay (1); }
Symbol 46 MovieClip Frame 3
stop();
Instance of Symbol 38 MovieClip in Symbol 46 MovieClip Frame 3
onClipEvent (load) { if ((_root.saved.data.levelAt == undefined) || (_root.saved.data.deaths == undefined)) { this._visible = false; } }
Symbol 50 Button
on (release) { if (!_root.mute) { _root.mute = true; } else { _root.mute = false; bgmusic = new Sound(this); bgmusic.attachSound("Song"); bgmusic.start(0, 9999); bgmusic.setVolume(40); } }
Symbol 53 MovieClip Frame 1
stop();
Symbol 54 Button
on (release) { if (_quality == "HIGH") { _quality = "MEDIUM"; } else if (_quality == "MEDIUM") { _quality = "LOW"; } else if (_quality == "LOW") { _quality = "HIGH"; } }
Symbol 80 MovieClip Frame 1
stop();
Instance of Symbol 64 MovieClip in Symbol 80 MovieClip Frame 1
onClipEvent (enterFrame) { if (!_root.pauseChar) { this.play(); } else { this.stop(); } }
Symbol 80 MovieClip Frame 80
_root.nextFrame();
Symbol 255 Button
on (release) { if ((_root.pauseChar && (!_root.char.moving)) && (_root.canPause)) { _root.char.moving = true; _root.pauseChar = false; } else if (_root.canPause) { _root.char.moving = false; _root.pauseChar = true; } }
Symbol 258 MovieClip Frame 1
stop();
Symbol 277 Button
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"); } __rankz_send__("MzQ4N2olZSVhJW4lcw==", "THpNeE1qdFk=", _root.name, _root.deaths); getURL ("http://rankz.armorbot.com/rotat/", "_blank"); _root.levelAt = 0; _root.saveGame(); _root.beatGame = false; _root.gotoAndStop(2); }
Symbol 279 MovieClip Frame 1
stop();
Instance of Symbol 279 MovieClip in Symbol 280 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.beatGame) { this.nextFrame(); } }
Symbol 281 MovieClip Frame 1
var reanimator = (new flash.geom.Transform(this)); var camera = (new flash.geom.Transform(this._parent)); var w = Stage.width; var h = Stage.height; this.onEnterFrame = function () { this._parent.filters = this.filters; var _local2 = reanimator.matrix; camera.colorTransform = reanimator.colorTransform; _local2.invert(); _local2.translate(w * 0.5, h * 0.5); camera.matrix = _local2; }; stop();
Instance of Symbol 53 MovieClip in Symbol 281 MovieClip Frame 1
onClipEvent (load) { stopAllSounds(); _root.isPlaying = false; if ((!_root.mute) && (!_root.isPlaying)) { _root.isPlaying = true; bgmusic = new Sound(this); bgmusic.attachSound("song"); bgmusic.start(0, 9999); bgmusic.setVolume(40); } buttonDown = false; } onClipEvent (enterFrame) { if (Key.isDown(77) && (!buttonDown)) { buttonDown = true; if (_root.mute) { _root.isPlaying = true; _root.mute = false; bgmusic = new Sound(this); bgmusic.attachSound("Song"); bgmusic.start(0, 9999); } else { _root.mute = true; } } else if (!Key.isDown(77)) { buttonDown = false; } if (_root.mute) { _root.isPlaying = false; this.gotoAndStop(2); stopAllSounds(); } else { this.gotoAndStop(1); } }
Instance of Symbol 56 MovieClip in Symbol 281 MovieClip Frame 1
onClipEvent (load) { beenPressed = false; } onClipEvent (enterFrame) { if (Key.isDown(81) && (!beenPressed)) { beenPressed = true; if (_quality == "HIGH") { _quality = "MEDIUM"; } else if (_quality == "MEDIUM") { _quality = "LOW"; } else if (_quality == "LOW") { _quality = "HIGH"; } } else if (!Key.isDown(81)) { beenPressed = false; } }
Instance of Symbol 258 MovieClip in Symbol 281 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.pauseChar) { this.gotoAndStop("pause"); } else if (!_root.canPause) { this.gotoAndStop("cantPause"); } else { this.gotoAndStop("normal"); } }
Symbol 287 MovieClip Frame 1
stop();
Symbol 287 MovieClip Frame 22
stop();
Symbol 322 MovieClip Frame 1
stop();
Instance of Symbol 322 MovieClip in Symbol 323 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 322 MovieClip in Symbol 323 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 322 MovieClip in Symbol 325 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 322 MovieClip in Symbol 325 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation - 5; }
Instance of Symbol 322 MovieClip in Symbol 340 MovieClip Frame 1
onClipEvent (load) { framesNeeded = 32; framesPassed = 0; } onClipEvent (enterFrame) { framesPassed++; if (framesPassed >= framesNeeded) { framesPassed = 0; if (this._currentframe == 1) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } } }
Instance of Symbol 322 MovieClip in Symbol 343 MovieClip Frame 1
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { this.gotoAndStop(2); } else if (!_root.char.moving) { this.gotoAndStop(1); } }
Instance of Symbol 322 MovieClip in Symbol 351 MovieClip Frame 1
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { this.gotoAndStop(2); } else if (!_root.char.moving) { this.gotoAndStop(1); } }
Instance of Symbol 322 MovieClip in Symbol 351 MovieClip Frame 1
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { this.gotoAndStop(2); } else if (!_root.char.moving) { this.gotoAndStop(1); } }
Instance of Symbol 322 MovieClip in Symbol 351 MovieClip Frame 1
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { this.gotoAndStop(2); } else if (!_root.char.moving) { this.gotoAndStop(1); } }
Instance of Symbol 322 MovieClip in Symbol 351 MovieClip Frame 1
onClipEvent (load) { framesNeeded = 32; framesPassed = 0; } onClipEvent (enterFrame) { framesPassed++; if (framesPassed >= framesNeeded) { framesPassed = 0; if (this._currentframe == 1) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } } }
Instance of Symbol 322 MovieClip in Symbol 353 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 322 MovieClip in Symbol 355 MovieClip Frame 1
onClipEvent (load) { framesNeeded = 32; framesPassed = 0; } onClipEvent (enterFrame) { framesPassed++; if (framesPassed >= framesNeeded) { framesPassed = 0; if (this._currentframe == 1) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } } }
Instance of Symbol 322 MovieClip in Symbol 360 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Symbol 364 MovieClip Frame 1
stop();
Symbol 364 MovieClip Frame 15
_root.char.moving = false; _root.pauseChar = true; stop();
Instance of Symbol 287 MovieClip "spike2" in Symbol 366 MovieClip Frame 1
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip "spike1" in Symbol 366 MovieClip Frame 1
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip "spike3" in Symbol 366 MovieClip Frame 1
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Symbol 367 MovieClip Frame 1
stop();
Symbol 367 MovieClip Frame 46
stop();
Symbol 370 MovieClip Frame 1
stop();
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 3
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 4
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation + 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation + 5; } }
Instance of Symbol 48 MovieClip "ground" in Symbol 370 MovieClip Frame 5
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 5
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 5
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 48 MovieClip in Symbol 370 MovieClip Frame 5
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 5
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 5
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 6
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 6
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 6
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 291 MovieClip in Symbol 370 MovieClip Frame 7
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 7
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation + 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation + 5; } }
Instance of Symbol 48 MovieClip in Symbol 370 MovieClip Frame 8
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 8
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 8
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 48 MovieClip "ground" in Symbol 370 MovieClip Frame 8
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 10
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation - 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation - 5; } }
Instance of Symbol 48 MovieClip in Symbol 370 MovieClip Frame 11
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 48 MovieClip "ground" in Symbol 370 MovieClip Frame 11
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 11
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 11
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 302 MovieClip in Symbol 370 MovieClip Frame 12
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 12
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation + 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation + 5; } }
Instance of Symbol 291 MovieClip in Symbol 370 MovieClip Frame 12
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.char.ySpeed = 0; _root.char.moving = false; _root.char.gotoAndPlay("die"); } }
Instance of Symbol 304 MovieClip in Symbol 370 MovieClip Frame 13
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 291 MovieClip in Symbol 370 MovieClip Frame 13
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 13
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation - 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation + 5; } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 14
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 15
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.ySpeed = _root.char.ySpeed - 1; _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 304 MovieClip in Symbol 370 MovieClip Frame 15
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 2; } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 16
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 16
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation + 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation + 5; } }
Instance of Symbol 304 MovieClip in Symbol 370 MovieClip Frame 17
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 17
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation + 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation + 5; } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 17
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation - 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation - 5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed - 6; } }
Symbol 370 MovieClip Frame 19
_root.canPause = false;
Symbol 370 MovieClip Frame 21
_root.canPause = true;
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 21
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation + 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation + 5; } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 21
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation - 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation - 5; } }
Instance of Symbol 284 MovieClip in Symbol 370 MovieClip Frame 21
onClipEvent (load) { framesNeeded = 10; framesPassed = 10; } onClipEvent (enterFrame) { _rotation = (_rotation + 5); if (this.hitTest(_root.char) && (_root.char.moving)) { framesPassed = 0; } if (framesPassed < framesNeeded) { framesPassed++; _root.vcam._rotation = _root.vcam._rotation + 5; } }
Instance of Symbol 329 MovieClip in Symbol 370 MovieClip Frame 22
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 329 MovieClip in Symbol 370 MovieClip Frame 22
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 23
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 23
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 23
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed - 2; _root.char.ySpeed = _root.char.ySpeed + 2; } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 25
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Symbol 370 MovieClip Frame 26
_root.canPause = false;
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 27
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 27
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Symbol 370 MovieClip Frame 28
_root.canPause = true;
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 28
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 29
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 30
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 31
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.ySpeed = _root.char.ySpeed - 2.5; _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 31
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.ySpeed = _root.char.ySpeed - 2.5; _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 31
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.ySpeed = _root.char.ySpeed - 2.5; _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 302 MovieClip in Symbol 370 MovieClip Frame 31
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 31
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 32
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 48 MovieClip in Symbol 370 MovieClip Frame 32
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 32
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 32
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 32
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 32
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 48 MovieClip "ground" in Symbol 370 MovieClip Frame 32
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 34
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 34
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 34
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 34
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.ySpeed = _root.char.ySpeed - 1; _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 304 MovieClip in Symbol 370 MovieClip Frame 35
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 304 MovieClip in Symbol 370 MovieClip Frame 35
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 304 MovieClip in Symbol 370 MovieClip Frame 35
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 36
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 36
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 36
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Symbol 370 MovieClip Frame 37
_root.canPause = false;
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 37
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 37
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 37
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 37
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Symbol 370 MovieClip Frame 38
_root.canPause = true;
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 38
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 48 MovieClip "ground" in Symbol 370 MovieClip Frame 39
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 48 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 282 MovieClip in Symbol 370 MovieClip Frame 39
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 40
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 40
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 40
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 40
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 40
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.ySpeed = _root.char.ySpeed - 1; _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 40
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.ySpeed = _root.char.ySpeed - 1; _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 40
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed - 6; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 40
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed - 6; } }
Instance of Symbol 291 MovieClip in Symbol 370 MovieClip Frame 41
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 291 MovieClip in Symbol 370 MovieClip Frame 41
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 291 MovieClip in Symbol 370 MovieClip Frame 41
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 41
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 2; } }
Instance of Symbol 314 MovieClip in Symbol 370 MovieClip Frame 41
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed - 2; _root.char.ySpeed = _root.char.ySpeed + 2; } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 42
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 42
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 48 MovieClip "ground" in Symbol 370 MovieClip Frame 43
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 48 MovieClip in Symbol 370 MovieClip Frame 43
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 43
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 43
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 43
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 43
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 43
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 43
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip in Symbol 370 MovieClip Frame 43
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 44
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 44
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 310 MovieClip in Symbol 370 MovieClip Frame 44
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 338 MovieClip in Symbol 370 MovieClip Frame 44
onClipEvent (load) { xScale = this._xscale; notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); this.gotoAndPlay(1); } if ((_root.char._x < (this._x + 342.25)) && (this._currentframe <= 40)) { this._xscale = xScale; } else if (this._currentframe <= 40) { this._xscale = -xScale; } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 48 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 294 MovieClip in Symbol 370 MovieClip Frame 45
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 48 MovieClip "ground" in Symbol 370 MovieClip Frame 45
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Symbol 370 MovieClip Frame 46
_root.vcam._rotation = 0; _root.canPause = false;
Instance of Symbol 358 MovieClip in Symbol 370 MovieClip Frame 46
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Instance of Symbol 302 MovieClip in Symbol 370 MovieClip Frame 46
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } }
Symbol 370 MovieClip Frame 47
_root.canPause = false; _root.vcam._rotation = 0;
Instance of Symbol 364 MovieClip in Symbol 370 MovieClip Frame 47
onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.level.spike1._visible = false; _root.level.spike2._visible = false; _root.level.spike3._visible = false; _root.char.xSpeed = 0; this.play(); _root.level.crab.play(); } }
Instance of Symbol 367 MovieClip "crab" in Symbol 370 MovieClip Frame 47
onClipEvent (enterFrame) { if (this._currentframe >= 20) { if (_root.vcam.endGame._alpha < 100) { _root.vcam.endGame._alpha = _root.vcam.endGame._alpha + 10; } _root.beatGame = true; _root.canPause = false; _root.deathCount = _root.deaths + " deaths"; _root.char._alpha = _root.char._alpha - 10; _root.level._alpha = _root.level._alpha - 10; } }
Instance of Symbol 287 MovieClip "spike2" in Symbol 370 MovieClip Frame 47
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip "spike1" in Symbol 370 MovieClip Frame 47
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Instance of Symbol 287 MovieClip "spike3" in Symbol 370 MovieClip Frame 47
onClipEvent (load) { notStarted = true; } onClipEvent (enterFrame) { if ((((this.hitTest(_root.char._x + 5.7, _root.char._y, true) || (this.hitTest(_root.char._x - 5.7, _root.char._y, true))) || (this.hitTest(_root.char._x, _root.char._y + 10, true))) || (this.hitTest(_root.char._x, _root.char._y - 10, true))) && (_root.char.moving)) { _root.userDies(); } if ((_root.char._x > (this._x + 200)) && (notStarted)) { notStarted = false; this.play(); } }
Symbol 373 MovieClip Frame 1
stop();
Instance of Symbol 64 MovieClip in Symbol 373 MovieClip Frame 1
onClipEvent (enterFrame) { if (!_root.pauseChar) { this.play(); } else { this.stop(); } }
Symbol 373 MovieClip Frame 2
_root.char.dead = false;
Symbol 373 MovieClip Frame 12
_root.char._x = _root.char.startX; _root.char._y = _root.char.startY; _root.char.moving = true;

Library Items

Symbol 1 Sound [Song]
Symbol 2 Sound [jump]
Symbol 3 Sound [explode]
Symbol 4 GraphicUsed by:19
Symbol 5 GraphicUsed by:19
Symbol 6 GraphicUsed by:19
Symbol 7 SoundUsed by:19
Symbol 8 SoundUsed by:19
Symbol 9 GraphicUsed by:19
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:19
Symbol 12 SoundUsed by:19
Symbol 13 SoundUsed by:19
Symbol 14 SoundUsed by:19
Symbol 15 GraphicUsed by:16
Symbol 16 ButtonUses:15Used by:19
Symbol 17 SoundUsed by:19
Symbol 18 SoundUsed by:19
Symbol 19 MovieClipUses:4 5 6 7 8 9 11 12 13 14 16 17 18Used by:Timeline
Symbol 374 MovieClip [__Packages.ab3.rankz.Armor_Bot_30_En_AS1]
Symbol 20 FontUsed by:21 22 23 24 25 26 27 28 30 35 39 41 59 253 254 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 275 278
Symbol 21 TextUses:20Used by:46
Symbol 22 TextUses:20Used by:46
Symbol 23 EditableTextUses:20Used by:46
Symbol 24 TextUses:20Used by:46
Symbol 25 EditableTextUses:20Used by:46
Symbol 26 TextUses:20Used by:46
Symbol 27 EditableTextUses:20Used by:46
Symbol 28 EditableTextUses:20Used by:46
Symbol 29 GraphicUsed by:32 33 36 37 40 42 43 44 277
Symbol 30 TextUses:20Used by:32 33
Symbol 31 GraphicUsed by:32 33 36 37 40 42 43 44
Symbol 32 ButtonUses:29 30 31Used by:34
Symbol 33 ButtonUses:29 30 31Used by:34
Symbol 34 MovieClipUses:32 33Used by:46
Symbol 35 TextUses:20Used by:36 37
Symbol 36 ButtonUses:29 35 31Used by:38
Symbol 37 ButtonUses:29 35 31Used by:38
Symbol 38 MovieClipUses:36 37Used by:46
Symbol 39 TextUses:20Used by:40 43
Symbol 40 ButtonUses:29 39 31Used by:45
Symbol 41 TextUses:20Used by:42 44
Symbol 42 ButtonUses:29 41 31Used by:45
Symbol 43 ButtonUses:29 39 31Used by:45
Symbol 44 ButtonUses:29 41 31Used by:45
Symbol 45 MovieClipUses:40 42 43 44Used by:46
Symbol 46 MovieClipUses:21 22 23 24 25 26 27 28 34 38 45Used by:Timeline
Symbol 47 GraphicUsed by:48 258 282 322 370
Symbol 48 MovieClipUses:47Used by:370  Timeline
Symbol 49 GraphicUsed by:50 54 255
Symbol 50 ButtonUses:49Used by:53
Symbol 51 GraphicUsed by:53
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:50 51 52Used by:281  Timeline
Symbol 54 ButtonUses:49Used by:56
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:54 55Used by:281  Timeline
Symbol 57 GraphicUsed by:60
Symbol 58 GraphicUsed by:60
Symbol 59 TextUses:20Used by:60
Symbol 60 ButtonUses:57 58 59Used by:Timeline
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:64
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:62 63Used by:80 373
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:80
Symbol 67 GraphicUsed by:78 367
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:78 358 366 367 370
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:78 366 367 370
Symbol 72 GraphicUsed by:77
Symbol 73 GraphicUsed by:76
Symbol 74 GraphicUsed by:75
Symbol 75 MovieClipUses:74Used by:76
Symbol 76 MovieClipUses:73 75Used by:77
Symbol 77 MovieClipUses:72 76Used by:78 367 370
Symbol 78 MovieClipUses:67 69 71 77Used by:79
Symbol 79 MovieClipUses:78Used by:80
Symbol 80 MovieClipUses:64 66 79Used by:Timeline
Symbol 81 BitmapUsed by:198
Symbol 82 BitmapUsed by:198
Symbol 83 BitmapUsed by:198
Symbol 84 BitmapUsed by:198
Symbol 85 BitmapUsed by:198
Symbol 86 BitmapUsed by:198
Symbol 87 BitmapUsed by:198
Symbol 88 BitmapUsed by:198
Symbol 89 BitmapUsed by:198
Symbol 90 BitmapUsed by:198
Symbol 91 BitmapUsed by:198
Symbol 92 BitmapUsed by:198
Symbol 93 BitmapUsed by:198
Symbol 94 BitmapUsed by:198
Symbol 95 BitmapUsed by:198
Symbol 96 BitmapUsed by:198
Symbol 97 BitmapUsed by:198
Symbol 98 BitmapUsed by:198
Symbol 99 BitmapUsed by:198
Symbol 100 BitmapUsed by:198
Symbol 101 BitmapUsed by:198
Symbol 102 BitmapUsed by:198
Symbol 103 BitmapUsed by:198
Symbol 104 BitmapUsed by:198
Symbol 105 BitmapUsed by:198
Symbol 106 BitmapUsed by:198
Symbol 107 BitmapUsed by:198
Symbol 108 BitmapUsed by:198
Symbol 109 BitmapUsed by:198
Symbol 110 BitmapUsed by:198
Symbol 111 BitmapUsed by:198
Symbol 112 BitmapUsed by:198
Symbol 113 BitmapUsed by:198
Symbol 114 BitmapUsed by:198
Symbol 115 BitmapUsed by:198
Symbol 116 BitmapUsed by:198
Symbol 117 BitmapUsed by:198
Symbol 118 BitmapUsed by:198
Symbol 119 BitmapUsed by:198
Symbol 120 BitmapUsed by:198
Symbol 121 BitmapUsed by:198
Symbol 122 BitmapUsed by:198
Symbol 123 BitmapUsed by:198
Symbol 124 BitmapUsed by:198
Symbol 125 BitmapUsed by:198
Symbol 126 BitmapUsed by:198
Symbol 127 BitmapUsed by:198
Symbol 128 BitmapUsed by:198
Symbol 129 BitmapUsed by:198
Symbol 130 BitmapUsed by:198
Symbol 131 BitmapUsed by:198
Symbol 132 BitmapUsed by:198
Symbol 133 BitmapUsed by:198
Symbol 134 BitmapUsed by:198
Symbol 135 BitmapUsed by:198
Symbol 136 BitmapUsed by:198
Symbol 137 BitmapUsed by:198
Symbol 138 BitmapUsed by:198
Symbol 139 BitmapUsed by:198
Symbol 140 BitmapUsed by:198
Symbol 141 BitmapUsed by:198
Symbol 142 BitmapUsed by:198
Symbol 143 BitmapUsed by:198
Symbol 144 BitmapUsed by:198
Symbol 145 BitmapUsed by:198
Symbol 146 BitmapUsed by:198
Symbol 147 BitmapUsed by:198
Symbol 148 BitmapUsed by:198
Symbol 149 BitmapUsed by:198
Symbol 150 BitmapUsed by:198
Symbol 151 BitmapUsed by:198
Symbol 152 BitmapUsed by:198
Symbol 153 BitmapUsed by:198
Symbol 154 BitmapUsed by:198
Symbol 155 BitmapUsed by:198
Symbol 156 BitmapUsed by:198
Symbol 157 BitmapUsed by:198
Symbol 158 BitmapUsed by:198
Symbol 159 BitmapUsed by:198
Symbol 160 BitmapUsed by:198
Symbol 161 BitmapUsed by:198
Symbol 162 BitmapUsed by:198
Symbol 163 BitmapUsed by:198
Symbol 164 BitmapUsed by:198
Symbol 165 BitmapUsed by:198
Symbol 166 BitmapUsed by:198
Symbol 167 BitmapUsed by:198
Symbol 168 BitmapUsed by:198
Symbol 169 BitmapUsed by:198
Symbol 170 BitmapUsed by:198
Symbol 171 BitmapUsed by:198
Symbol 172 BitmapUsed by:198
Symbol 173 BitmapUsed by:198
Symbol 174 BitmapUsed by:198
Symbol 175 BitmapUsed by:198
Symbol 176 BitmapUsed by:198
Symbol 177 BitmapUsed by:198
Symbol 178 BitmapUsed by:198
Symbol 179 BitmapUsed by:198
Symbol 180 BitmapUsed by:198
Symbol 181 BitmapUsed by:198
Symbol 182 BitmapUsed by:198
Symbol 183 BitmapUsed by:198
Symbol 184 BitmapUsed by:198
Symbol 185 BitmapUsed by:198
Symbol 186 BitmapUsed by:198
Symbol 187 BitmapUsed by:198
Symbol 188 BitmapUsed by:198
Symbol 189 BitmapUsed by:198
Symbol 190 BitmapUsed by:198
Symbol 191 BitmapUsed by:198
Symbol 192 BitmapUsed by:198
Symbol 193 BitmapUsed by:198
Symbol 194 BitmapUsed by:198
Symbol 195 BitmapUsed by:198
Symbol 196 BitmapUsed by:198
Symbol 197 BitmapUsed by:198
Symbol 198 GraphicUses:81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197Used by:Timeline
Symbol 199 GraphicUsed by:Timeline
Symbol 200 BitmapUsed by:201
Symbol 201 GraphicUses:200Used by:Timeline
Symbol 202 GraphicUsed by:Timeline
Symbol 203 BitmapUsed by:204
Symbol 204 GraphicUses:203Used by:Timeline
Symbol 205 GraphicUsed by:Timeline
Symbol 206 BitmapUsed by:207
Symbol 207 GraphicUses:206Used by:Timeline
Symbol 208 GraphicUsed by:Timeline
Symbol 209 BitmapUsed by:210
Symbol 210 GraphicUses:209Used by:Timeline
Symbol 211 GraphicUsed by:Timeline
Symbol 212 BitmapUsed by:213
Symbol 213 GraphicUses:212Used by:Timeline
Symbol 214 GraphicUsed by:Timeline
Symbol 215 BitmapUsed by:216
Symbol 216 GraphicUses:215Used by:Timeline
Symbol 217 GraphicUsed by:Timeline
Symbol 218 BitmapUsed by:219
Symbol 219 GraphicUses:218Used by:Timeline
Symbol 220 GraphicUsed by:Timeline
Symbol 221 BitmapUsed by:222
Symbol 222 GraphicUses:221Used by:Timeline
Symbol 223 GraphicUsed by:Timeline
Symbol 224 BitmapUsed by:225
Symbol 225 GraphicUses:224Used by:Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 BitmapUsed by:228
Symbol 228 GraphicUses:227Used by:Timeline
Symbol 229 GraphicUsed by:Timeline
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:Timeline
Symbol 232 GraphicUsed by:Timeline
Symbol 233 BitmapUsed by:234
Symbol 234 GraphicUses:233Used by:Timeline
Symbol 235 GraphicUsed by:Timeline
Symbol 236 BitmapUsed by:237
Symbol 237 GraphicUses:236Used by:Timeline
Symbol 238 GraphicUsed by:Timeline
Symbol 239 BitmapUsed by:240
Symbol 240 GraphicUses:239Used by:Timeline
Symbol 241 GraphicUsed by:Timeline
Symbol 242 BitmapUsed by:243
Symbol 243 GraphicUses:242Used by:Timeline
Symbol 244 GraphicUsed by:Timeline
Symbol 245 GraphicUsed by:Timeline
Symbol 246 BitmapUsed by:247
Symbol 247 GraphicUses:246Used by:Timeline
Symbol 248 GraphicUsed by:Timeline
Symbol 249 GraphicUsed by:252
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:252
Symbol 252 MovieClipUses:249 251Used by:281
Symbol 253 TextUses:20Used by:281
Symbol 254 EditableTextUses:20Used by:281
Symbol 255 ButtonUses:49Used by:258
Symbol 256 GraphicUsed by:258
Symbol 257 GraphicUsed by:258
Symbol 258 MovieClipUses:255 256 47 257Used by:281
Symbol 259 TextUses:20Used by:281
Symbol 260 EditableTextUses:20Used by:281
Symbol 261 TextUses:20Used by:281
Symbol 262 TextUses:20Used by:281
Symbol 263 TextUses:20Used by:281
Symbol 264 TextUses:20Used by:281
Symbol 265 TextUses:20Used by:281
Symbol 266 TextUses:20Used by:281
Symbol 267 TextUses:20Used by:281
Symbol 268 TextUses:20Used by:281
Symbol 269 TextUses:20Used by:281
Symbol 270 TextUses:20Used by:281
Symbol 271 TextUses:20Used by:281
Symbol 272 TextUses:20Used by:280
Symbol 273 EditableTextUses:20Used by:280
Symbol 274 GraphicUsed by:279
Symbol 275 TextUses:20Used by:277
Symbol 276 GraphicUsed by:277
Symbol 277 ButtonUses:29 275 276Used by:279
Symbol 278 EditableTextUses:20Used by:279
Symbol 279 MovieClipUses:274 277 278Used by:280
Symbol 280 MovieClipUses:272 273 279Used by:281
Symbol 281 MovieClipUses:252 53 56 253 254 258 259 260 261 262 263 264 265 266 267 268 269 270 271 280Used by:Timeline
Symbol 282 MovieClipUses:47Used by:370
Symbol 283 GraphicUsed by:284
Symbol 284 MovieClipUses:283Used by:370
Symbol 285 GraphicUsed by:286
Symbol 286 MovieClipUses:285Used by:287
Symbol 287 MovieClipUses:286Used by:366 370
Symbol 288 GraphicUsed by:289
Symbol 289 MovieClipUses:288Used by:370
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:370
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:294
Symbol 294 MovieClipUses:293Used by:370
Symbol 295 GraphicUsed by:296
Symbol 296 MovieClipUses:295Used by:370
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:297Used by:370
Symbol 299 GraphicUsed by:301
Symbol 300 GraphicUsed by:301
Symbol 301 MovieClipUses:299 300Used by:302
Symbol 302 MovieClipUses:301Used by:370
Symbol 303 GraphicUsed by:304
Symbol 304 MovieClipUses:303Used by:370
Symbol 305 GraphicUsed by:306
Symbol 306 MovieClipUses:305Used by:370
Symbol 307 GraphicUsed by:310
Symbol 308 GraphicUsed by:309
Symbol 309 MovieClipUses:308Used by:310
Symbol 310 MovieClipUses:307 309Used by:370
Symbol 311 GraphicUsed by:312
Symbol 312 MovieClipUses:311Used by:370
Symbol 313 GraphicUsed by:314
Symbol 314 MovieClipUses:313Used by:370
Symbol 315 GraphicUsed by:316
Symbol 316 MovieClipUses:315Used by:370
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:317Used by:370
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319Used by:370
Symbol 321 GraphicUsed by:323
Symbol 322 MovieClipUses:47Used by:323 325 340 343 351 353 355 360
Symbol 323 MovieClipUses:321 322Used by:370
Symbol 324 GraphicUsed by:325
Symbol 325 MovieClipUses:324 322Used by:370
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:326Used by:370
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:370
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:330Used by:370
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:370
Symbol 334 GraphicUsed by:335
Symbol 335 MovieClipUses:334Used by:338
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClipUses:336Used by:338
Symbol 338 MovieClipUses:335 337Used by:370
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:339 322Used by:370
Symbol 341 GraphicUsed by:370
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342 322Used by:370
Symbol 344 GraphicUsed by:345
Symbol 345 MovieClipUses:344Used by:370
Symbol 346 GraphicUsed by:347
Symbol 347 MovieClipUses:346Used by:370
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClipUses:348Used by:370
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:350 322Used by:370
Symbol 352 GraphicUsed by:353
Symbol 353 MovieClipUses:352 322Used by:370
Symbol 354 GraphicUsed by:355
Symbol 355 MovieClipUses:354 322Used by:370
Symbol 356 GraphicUsed by:357
Symbol 357 MovieClipUses:356Used by:370
Symbol 358 MovieClipUses:69Used by:370
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClipUses:359 322Used by:370
Symbol 361 GraphicUsed by:370
Symbol 362 GraphicUsed by:363
Symbol 363 MovieClipUses:362Used by:364
Symbol 364 MovieClipUses:363Used by:370
Symbol 365 GraphicUsed by:366
Symbol 366 MovieClipUses:365 69 71 287Used by:367
Symbol 367 MovieClipUses:67 69 71 77 366Used by:370
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClipUses:368Used by:370
Symbol 370 MovieClipUses:48 282 284 287 289 291 294 296 298 302 304 306 310 312 314 316 318 320 323 325 327 329 331 333 338 340 341 343 345 347 349 351 353 355 357 47 77 69 71 358 360 361 364 367 369Used by:Timeline
Symbol 371 GraphicUsed by:372
Symbol 372 MovieClipUses:371Used by:373
Symbol 373 MovieClipUses:64 372Used by:Timeline

Instance Names

"preload"Frame 1Symbol 19 MovieClip
"preloader"Frame 2Symbol 46 MovieClip
"ground"Frame 2Symbol 48 MovieClip
"char"Frame 2Symbol 80 MovieClip
"vcam"Frame 2Symbol 281 MovieClip
"level"Frame 3Symbol 370 MovieClip
"char"Frame 3Symbol 373 MovieClip
"endGame"Symbol 281 MovieClip Frame 12Symbol 280 MovieClip
"body"Symbol 338 MovieClip Frame 1Symbol 335 MovieClip
"spike2"Symbol 366 MovieClip Frame 1Symbol 287 MovieClip
"spike1"Symbol 366 MovieClip Frame 1Symbol 287 MovieClip
"spike3"Symbol 366 MovieClip Frame 1Symbol 287 MovieClip
"ground"Symbol 370 MovieClip Frame 1Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 5Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 7Symbol 289 MovieClip
"ground"Symbol 370 MovieClip Frame 8Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 9Symbol 296 MovieClip
"ground"Symbol 370 MovieClip Frame 10Symbol 298 MovieClip
"ground"Symbol 370 MovieClip Frame 11Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 12Symbol 289 MovieClip
"ground"Symbol 370 MovieClip Frame 13Symbol 306 MovieClip
"ground"Symbol 370 MovieClip Frame 14Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 15Symbol 312 MovieClip
"ground"Symbol 370 MovieClip Frame 16Symbol 316 MovieClip
"ground"Symbol 370 MovieClip Frame 17Symbol 318 MovieClip
"ground"Symbol 370 MovieClip Frame 18Symbol 320 MovieClip
"ground"Symbol 370 MovieClip Frame 19Symbol 323 MovieClip
"ground"Symbol 370 MovieClip Frame 20Symbol 325 MovieClip
"ground"Symbol 370 MovieClip Frame 21Symbol 327 MovieClip
"ground"Symbol 370 MovieClip Frame 22Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 23Symbol 331 MovieClip
"ground"Symbol 370 MovieClip Frame 24Symbol 316 MovieClip
"ground"Symbol 370 MovieClip Frame 25Symbol 333 MovieClip
"ground"Symbol 370 MovieClip Frame 26Symbol 340 MovieClip
"ground"Symbol 370 MovieClip Frame 27Symbol 343 MovieClip
"ground"Symbol 370 MovieClip Frame 28Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 29Symbol 345 MovieClip
"ground"Symbol 370 MovieClip Frame 30Symbol 347 MovieClip
"ground"Symbol 370 MovieClip Frame 31Symbol 349 MovieClip
"ground"Symbol 370 MovieClip Frame 32Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 33Symbol 351 MovieClip
"ground"Symbol 370 MovieClip Frame 34Symbol 320 MovieClip
"ground"Symbol 370 MovieClip Frame 35Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 36Symbol 331 MovieClip
"ground"Symbol 370 MovieClip Frame 37Symbol 353 MovieClip
"ground"Symbol 370 MovieClip Frame 38Symbol 345 MovieClip
"ground"Symbol 370 MovieClip Frame 39Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 40Symbol 355 MovieClip
"ground"Symbol 370 MovieClip Frame 41Symbol 320 MovieClip
"ground"Symbol 370 MovieClip Frame 42Symbol 357 MovieClip
"ground"Symbol 370 MovieClip Frame 43Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 44Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 45Symbol 48 MovieClip
"ground"Symbol 370 MovieClip Frame 46Symbol 360 MovieClip
"crab"Symbol 370 MovieClip Frame 47Symbol 367 MovieClip
"spike2"Symbol 370 MovieClip Frame 47Symbol 287 MovieClip
"ground"Symbol 370 MovieClip Frame 47Symbol 369 MovieClip
"spike1"Symbol 370 MovieClip Frame 47Symbol 287 MovieClip
"spike3"Symbol 370 MovieClip Frame 47Symbol 287 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "Song"
ExportAssets (56)Timeline Frame 1Symbol 2 as "jump"
ExportAssets (56)Timeline Frame 1Symbol 3 as "explode"
ExportAssets (56)Timeline Frame 1Symbol 374 as "__Packages.ab3.rankz.Armor_Bot_30_En_AS1"

Labels

"levelOne"Frame 3
"pause"Symbol 258 MovieClip Frame 1
"cantPause"Symbol 258 MovieClip Frame 2
"normal"Symbol 258 MovieClip Frame 3
"die"Symbol 373 MovieClip Frame 2

Dynamic Text Variables

percentbytesSymbol 23 EditableText"###"
totalbytesSymbol 25 EditableText"######"
percentbytesSymbol 27 EditableText"###"
totalbytesSymbol 28 EditableText"######"
_root.deathsSymbol 254 EditableText"######"
_root.levelAtSymbol 260 EditableText"####"
_root.deathCountSymbol 273 EditableText"###### deaths"
_root.nameSymbol 278 EditableText"Name"




http://swfchan.com/11/51631/info.shtml
Created: 24/4 -2019 18:43:58 Last modified: 24/4 -2019 18:43:58 Server time: 23/04 -2024 07:31:01