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

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

RotatSpin.swf

This is the info page for
Flash #75502

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


Text
play

continue

game news

more games

Credits
Programming and Art: Nevcalian
Music: Kevin MacLeod

RotatSpin

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(); NewgroundsAPI.connectMovie(6904);
Frame 2
stop(); _root.kongregateServices.connect();
Instance of Symbol 66 MovieClip "preload" in Frame 2
onClipEvent (enterFrame) { this._alpha = 100 - this._currentframe(); }
Frame 3
vcam._visible = false; vcam._rotation = 0; Stage.showMenu = false; stop(); pauseChar = false; saved = SharedObject.getLocal("RotatSpin");
Instance of Symbol 77 MovieClip in Frame 3
onClipEvent (load) { if ((_root.saved.data.levelAt == undefined) || (_root.saved.data.deaths == undefined)) { this._visible = false; } }
Instance of Symbol 91 MovieClip in Frame 3
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 94 MovieClip in Frame 3
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 118 MovieClip "char" in Frame 3
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 288 MovieClip "preloader" in Frame 3
onClipEvent (enterFrame) { this._alpha = this.percentbytes; }
Instance of Symbol 321 MovieClip "vcam" in Frame 3
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 4
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 410 MovieClip "level" in Frame 4
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 413 MovieClip "char" in Frame 4
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 20 MovieClip Frame 40
stop();
Symbol 34 Button
on (press) { tellTarget (_root) { nextFrame(); }; }
Symbol 35 Button
on (press) { gotoAndStop ("end"); _root.play(); }
Instance of Symbol 10 MovieClip in Symbol 36 MovieClip Frame 1
onClipEvent (load) { _root.stop(); PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); if (PercentLoaded != 100) { _parent.gotoAndStop(PercentLoaded); } else { _parent.gotoAndStop("lastframe"); } } onClipEvent (enterFrame) { PercentLoaded = int((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); if (PercentLoaded != 100) { _parent.gotoAndStop(PercentLoaded); } else { _parent.gotoAndPlay("loaded"); } }
Symbol 36 MovieClip Frame 101
play();
Symbol 36 MovieClip Frame 165
stop();
Symbol 42 Button
on (release) { NewgroundsAPI.loadNewgrounds(); }
Symbol 48 Button
on (release) { NewgroundsAPI.loadNewgrounds(); }
Symbol 50 MovieClip Frame 1
function startAd(ngad_url) { trace("opening " + ngad_url); System.security.allowDomain("70.87.128.99"); System.security.allowInsecureDomain("70.87.128.99"); System.security.allowDomain("ads.shizmoo.com"); System.security.allowInsecureDomain("ads.shizmoo.com"); System.security.allowDomain("www.cpmstar.com"); System.security.allowInsecureDomain("www.cpmstar.com"); System.security.allowDomain("server.cpmstar.com"); System.security.allowInsecureDomain("server.cpmstar.com"); var ngads_redirect = new XML(); ngads_redirect.ignoreWhite = true; ngads_redirect.onLoad = function (success) { trace("[NEWGROUNDS FLASH ADS] :: You may get a 'Security Sandbox Violation' ... this is normal, do not freak out!"); if (success) { ng_ad.loadMovie(ngads_redirect.toString(), "GET"); } }; ngads_redirect.load(ngad_url); } if (NewgroundsAPI.getAdURL()) { startAd(NewgroundsAPI.getAdURL()); } NewgroundsAPI.onAdsApproved = function (ad_url) { startAd(ad_url); }; stop();
Symbol 414 MovieClip [__Packages.NewgroundsAPI] Frame 0
class NewgroundsAPI { static var tracker_id, host, version, debug, error_format, header_format, normal_format, link_format; function NewgroundsAPI () { } static function connectMovie(id) { if (!id) { SendError("Missing required 'id' parameter in NewgroundsAPI.connectMovie(id:Number)"); } else if (!tracker_id) { SendMessage("Connecting to API gateway..."); tracker_id = id; host = _url.split("/")[2].toLowerCase(); if (host.length < 1) { host = "localhost"; } var _local2 = new Object(); SendEvent(MOVIE_VIEWS); } } static function setMovieVersion(movie_version) { if (!movie_version) { SendError("Missing required 'version' in NewgroundsAPI.setMovieVersion(version:String)"); } else { version = movie_version; } } static function debugMode() { debug = true; } static function addCustomEvent(stat_id, stat_name) { if (!stat_id) { SendError("Missing required 'id' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)"); } else if (!stat_name) { SendError("Missing required 'event_name' parameter in NewgroundsAPI.AddCustomEvent(id:Number, event_name:String)"); } else { custom_events[stat_name] = CUSTOM_STATS + stat_id; SendMessage("Created custom event: " + stat_name); } } static function addCustomLink(stat_id, stat_name) { if (!stat_id) { SendError("Missing required 'id' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)"); } else if (!stat_name) { SendError("Missing required 'link_name' parameter in NewgroundsAPI.AddCustomLink(id:Number, link_name:String)"); } else { custom_links[stat_name] = CUSTOM_STATS + stat_id; SendMessage((("Created custom link " + stat_id) + ": ") + stat_name); } } static function loadMySite() { SendLink(AUTHOR_SITE); } static function loadNewgrounds(special) { if (special) { var _local1 = {page:special}; } SendLink(NEWGROUNDS, _local1); } static function logCustomEvent(event_name) { if (!event_name) { SendError("Missing required 'event_name' parameter in NewgroundsAPI.logCustomEvent(event_name:String)"); } else if (!custom_events[event_name]) { SendError("Attempted to log undefined custom event: " + event_name); } else { SendEvent(custom_events[event_name]); } } static function loadCustomLink(link_name) { if (!link_name) { SendError("Missing required 'link_name' parameter in NewgroundsAPI.loadCustomLink(link_name:String)"); } else if (!custom_links[link_name]) { SendError("Attempted to open undefined custom link: " + link_name); } else { SendLink(custom_links[link_name]); } } static function getAdURL() { return(movie_options.ad_url); } static function getMovieURL() { if (movie_options.movie_url) { return(movie_options.movie_url); } return("Newgrounds.com"); } static function getNewVersionURL() { return((((((GATEWAY_URL + "?&id=") + tracker_id) + "&host=") + escape(host)) + "&stat=") + NEW_VERSION); } static function SendEvent(id) { SendStat(id, false); } static function SendLink(id, extra) { SendStat(id, true, extra); } static function ReadGatewayData(params) { for (var _local2 in params) { params[_local2] = unescape(params[_local2]); movie_options[_local2] = params[_local2]; } if (params.settings_loaded) { SendMessage("You have successfully connected to the Newgrounds API gateway!"); SendMessage(("Movie Identified as '" + movie_options.movie_name) + "'"); if (movie_options.message) { SendMessage(movie_options.message); } if (movie_options.ad_url) { SendMessage("Your movie has been approved to run Flash Ads"); onAdsApproved(movie_options.ad_url); } if (movie_options.movie_version and (movie_options.movie_version.toString() != version.toString())) { SendMessage("WARNING: The movie version configured in your API settings does not match this movie's version!"); onNewVersionAvailable(movie_options.movie_version, getMovieURL(), getNewVersionURL()); } if (movie_options.deny_host) { SendMessage("You have blocked 'localHost' in your API settings."); SendMessage("If you wish to test your movie you will need to remove this block."); onDenyHost(host, getMovieURL(), getNewVersionURL()); } if (movie_options.request_portal_url == 1) { var _local4 = (((GATEWAY_URL + "?&id=") + tracker_id) + "&portal_url=") + escape(_url); var _local3 = new XML(); _local3.ignoreWhite = true; _local3.load(_local4); } } else if (!movie_options.settings_loaded) { SendError("Could not establish connection to the API gateway."); } } static function SendStat(stat_id, open_in_browser, extra) { if (!tracker_id) { SendError("API calls cannot be made without a valid movie id."); SendError("Did you remember to add the \"NewgroundsAPI.connectMovie()\" code?"); } else { var _local7 = (((((GATEWAY_URL + "?&id=") + tracker_id) + "&host=") + escape(host)) + "&stat=") + stat_id; for (var _local9 in extra) { _local7 = _local7 + ((("&" + escape(_local9)) + "=") + escape(extra[_local9])); } trace(_local7); if (debug) { _local7 = _local7 + "&debug=1"; } if (open_in_browser) { getURL (_local7, "_blank"); } else { var _local10 = new XML(); _local10.ignoreWhite = true; _local10.onLoad = function (success) { var _local6 = new Object(); var _local3 = 0; while (_local3 < this.firstChild.childNodes.length) { var _local4 = this.firstChild.childNodes[_local3]; var _local5 = _local4.nodeName; var _local2 = _local4.attributes.value; if (_local2 == Number(_local2)) { _local2 = Number(_local2); } _local6[_local5] = _local2; _local3++; } NewgroundsAPI.ReadGatewayData(_local6); }; _local10.load(_local7); } } } static function SendError(msg) { trace("[NEWGROUNDS API ERROR] :: " + msg); } static function SendMessage(msg) { trace("[NEWGROUNDS API] :: " + msg); } static function InitTextFormats() { if (!error_format) { error_format = new TextFormat(); error_format.font = "Arial Black"; error_format.size = 48; error_format.color = 16711680 /* 0xFF0000 */; } if (!header_format) { header_format = new TextFormat(); header_format.font = "Arial Black"; header_format.size = 24; header_format.color = 16777215 /* 0xFFFFFF */; } if (!normal_format) { normal_format = new TextFormat(); normal_format.font = "Arial"; normal_format.bold = true; normal_format.size = 12; normal_format.color = 16777215 /* 0xFFFFFF */; } if (!link_format) { link_format = new TextFormat(); link_format.color = 16776960 /* 0xFFFF00 */; link_format.underline = true; } } static function onNewVersionAvailable(version, movie_url, redirect_url) { InitTextFormats(); var _local2 = new Object(); _local2.x = Stage.width / 2; _local2.y = Stage.height / 2; _root.createEmptyMovieClip("NGAPI_new_version_overlay", _root.getNextHighestDepth()); _root.NGAPI_new_version_overlay.lineStyle(1, 0, 100); _root.NGAPI_new_version_overlay.beginFill(0, 70); _root.NGAPI_new_version_overlay.moveTo(-10, -10); _root.NGAPI_new_version_overlay.lineTo(-10, 1000); _root.NGAPI_new_version_overlay.lineTo(1000, 1000); _root.NGAPI_new_version_overlay.lineTo(1000, -10); _root.NGAPI_new_version_overlay.lineTo(-10, -10); _root.NGAPI_new_version_overlay.endFill(); _root.NGAPI_new_version_overlay.lineStyle(10, 0, 100); _root.NGAPI_new_version_overlay.beginFill(51); _root.NGAPI_new_version_overlay.moveTo(_local2.x - 240, _local2.y - 120); _root.NGAPI_new_version_overlay.lineTo(_local2.x + 240, _local2.y - 120); _root.NGAPI_new_version_overlay.lineTo(_local2.x + 240, _local2.y + 80); _root.NGAPI_new_version_overlay.lineTo(_local2.x - 240, _local2.y + 80); _root.NGAPI_new_version_overlay.lineTo(_local2.x - 240, _local2.y - 120); _root.NGAPI_new_version_overlay.endFill(); _root.NGAPI_new_version_overlay.createEmptyMovieClip("exit", 1000); _root.NGAPI_new_version_overlay.exit.lineStyle(2, 39423, 100); _root.NGAPI_new_version_overlay.exit.beginFill(0, 50); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 210, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 230, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 230, _local2.y - 90); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 210, _local2.y - 90); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 210, _local2.y - 110); _root.NGAPI_new_version_overlay.exit.endFill(); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 214, _local2.y - 106); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 226, _local2.y - 94); _root.NGAPI_new_version_overlay.exit.moveTo(_local2.x + 226, _local2.y - 106); _root.NGAPI_new_version_overlay.exit.lineTo(_local2.x + 214, _local2.y - 94); _root.NGAPI_new_version_overlay.exit.onMouseUp = function () { if (_root.NGAPI_new_version_overlay.exit.hitTest(_root._xmouse, _root._ymouse)) { _root.NGAPI_new_version_overlay.removeMovieClip(); } }; var _local3 = (("Version " + version) + " is now available at:") + newline; var _local5 = _local3.length; _local3 = _local3 + movie_url; var _local4 = _local3.length; _root.NGAPI_new_version_overlay.createTextField("mouseblocker", 99, -10, -10, 1000, 1000); _root.NGAPI_new_version_overlay.createTextField("newversion", 100, _local2.x - 210, _local2.y - 90, 400, 80); _root.NGAPI_new_version_overlay.newversion.text = "New Version Available!"; _root.NGAPI_new_version_overlay.newversion.setTextFormat(header_format); _root.NGAPI_new_version_overlay.createTextField("message", 101, (Stage.width - 400) / 2, Stage.height / 2, 400, 40); _root.NGAPI_new_version_overlay.message.text = _local3; _root.NGAPI_new_version_overlay.message.multiline = true; _root.NGAPI_new_version_overlay.message.wordWrap = true; _root.NGAPI_new_version_overlay.message.html = true; _root.NGAPI_new_version_overlay.message.setTextFormat(normal_format); link_format.url = redirect_url; _root.NGAPI_new_version_overlay.message.setTextFormat(_local5, _local4, link_format); } static function onDenyHost(hostname, movie_url, redirect_url) { InitTextFormats(); _root.createEmptyMovieClip("NGAPI_deny_host_overlay", _root.getNextHighestDepth()); _root.NGAPI_deny_host_overlay.lineStyle(20, 0, 100); _root.NGAPI_deny_host_overlay.beginFill(6684672); _root.NGAPI_deny_host_overlay.moveTo(0, 0); _root.NGAPI_deny_host_overlay.lineTo(Stage.width, 0); _root.NGAPI_deny_host_overlay.lineTo(Stage.width, Stage.height); _root.NGAPI_deny_host_overlay.lineTo(0, Stage.height); _root.NGAPI_deny_host_overlay.lineTo(0, 0); _root.NGAPI_deny_host_overlay.endFill(); var _local2 = ("This movie has not been approved for use on " + hostname) + "."; _local2 = _local2 + "\r\rFor an aproved copy, please visit:\r"; var _local4 = _local2.length; _local2 = _local2 + movie_url; var _local3 = _local2.length; _root.NGAPI_deny_host_overlay.createTextField("mousekill", 100, 0, 0, Stage.width, Stage.height); _root.NGAPI_deny_host_overlay.createTextField("error", 101, (Stage.width - 400) / 2, (Stage.height / 2) - 100, 400, 200); _root.NGAPI_deny_host_overlay.error.text = "ERROR!"; _root.NGAPI_deny_host_overlay.error.setTextFormat(error_format); _root.NGAPI_deny_host_overlay.createTextField("message", 102, (Stage.width - 400) / 2, Stage.height / 2, 400, 200); _root.NGAPI_deny_host_overlay.message.text = _local2; _root.NGAPI_deny_host_overlay.message.multiline = true; _root.NGAPI_deny_host_overlay.message.wordWrap = true; _root.NGAPI_deny_host_overlay.message.html = true; _root.NGAPI_deny_host_overlay.message.setTextFormat(normal_format); link_format.url = redirect_url; _root.NGAPI_deny_host_overlay.message.setTextFormat(_local4, _local3, link_format); } static function isInstalled() { return(true); } static function onAdsApproved(ad_url) { } static var movie_options = new Object(); static var custom_events = new Object(); static var custom_links = new Object(); static var MOVIE_VIEWS = 1; static var AUTHOR_SITE = 2; static var NEWGROUNDS = 3; static var NEW_VERSION = 4; static var CUSTOM_STATS = 50; static var GATEWAY_URL = "http://www.ngads.com/gateway.php"; }
Symbol 63 Button
on (press) { getURL ("http://www.armorgames.com", "_blank"); }
Symbol 66 MovieClip Frame 120
_root.nextFrame();
Symbol 72 Button
on (release) { _root.levelAt = 1; _root.deaths = 0; _root.char.play(); _root.char.moving = false; _root.pauseChar = true; }
Symbol 73 MovieClip Frame 10
stop();
Symbol 76 Button
on (release) { _root.levelAt = _root.saved.data.levelAt; _root.deaths = _root.saved.data.deaths; _root.nextFrame(); }
Symbol 77 MovieClip Frame 10
stop();
Symbol 82 Button
on (release) { getURL ("http://armorblog.com", "_blank"); }
Symbol 83 Button
on (release) { getURL ("http://armorgames.com", "_blank"); }
Symbol 84 MovieClip Frame 10
stop();
Symbol 88 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 91 MovieClip Frame 1
stop();
Symbol 92 Button
on (release) { if (_quality == "HIGH") { _quality = "MEDIUM"; } else if (_quality == "MEDIUM") { _quality = "LOW"; } else if (_quality == "LOW") { _quality = "HIGH"; } }
Symbol 118 MovieClip Frame 1
stop();
Instance of Symbol 102 MovieClip in Symbol 118 MovieClip Frame 1
onClipEvent (enterFrame) { if (!_root.pauseChar) { this.play(); } else { this.stop(); } }
Symbol 118 MovieClip Frame 80
_root.nextFrame();
Symbol 295 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 298 MovieClip Frame 1
stop();
Symbol 317 Button
on (release) { _root.kongregateScores.submit(_root.deaths); var scoresCallback = function (result) { trace("High score result, success=" + result.success); var _local1 = 0; while (_local1 < result.list.length) { var _local3 = _local1 + 1; trace((((_local3 + ". ") + result.list[_local1].username) + " - ") + result.list[_local1].score); _local1++; } }; _root.kongregateScores.requestList(scoresCallback, this); _root.levelAt = 0; _root.saveGame(); _root.beatGame = false; _root.gotoAndStop(2); }
Symbol 319 MovieClip Frame 1
stop();
Instance of Symbol 319 MovieClip in Symbol 320 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.beatGame) { this.nextFrame(); } }
Symbol 321 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 91 MovieClip in Symbol 321 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 94 MovieClip in Symbol 321 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 298 MovieClip in Symbol 321 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.pauseChar) { this.gotoAndStop("pause"); } else if (!_root.canPause) { this.gotoAndStop("cantPause"); } else { this.gotoAndStop("normal"); } }
Symbol 327 MovieClip Frame 1
stop();
Symbol 327 MovieClip Frame 22
stop();
Symbol 362 MovieClip Frame 1
stop();
Instance of Symbol 362 MovieClip in Symbol 363 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 362 MovieClip in Symbol 363 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 362 MovieClip in Symbol 365 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 362 MovieClip in Symbol 365 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation - 5; }
Instance of Symbol 362 MovieClip in Symbol 380 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 362 MovieClip in Symbol 383 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 362 MovieClip in Symbol 391 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 362 MovieClip in Symbol 391 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 362 MovieClip in Symbol 391 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 362 MovieClip in Symbol 391 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 362 MovieClip in Symbol 393 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Instance of Symbol 362 MovieClip in Symbol 395 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 362 MovieClip in Symbol 400 MovieClip Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 5; }
Symbol 404 MovieClip Frame 1
stop();
Symbol 404 MovieClip Frame 15
_root.char.moving = false; _root.pauseChar = true; stop();
Instance of Symbol 327 MovieClip "spike2" in Symbol 406 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 327 MovieClip "spike1" in Symbol 406 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 327 MovieClip "spike3" in Symbol 406 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 407 MovieClip Frame 1
stop();
Symbol 407 MovieClip Frame 46
stop();
Symbol 410 MovieClip Frame 1
stop();
Instance of Symbol 322 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 86 MovieClip "ground" in Symbol 410 MovieClip Frame 5
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 322 MovieClip in Symbol 410 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 322 MovieClip in Symbol 410 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 86 MovieClip in Symbol 410 MovieClip Frame 5
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 322 MovieClip in Symbol 410 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 322 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 331 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 86 MovieClip in Symbol 410 MovieClip Frame 8
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 86 MovieClip "ground" in Symbol 410 MovieClip Frame 8
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 324 MovieClip in Symbol 410 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 86 MovieClip in Symbol 410 MovieClip Frame 11
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 86 MovieClip "ground" in Symbol 410 MovieClip Frame 11
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 342 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 331 MovieClip in Symbol 410 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 344 MovieClip in Symbol 410 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 331 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 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 344 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 MovieClip Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 2; } }
Instance of Symbol 350 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 344 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed - 6; } }
Symbol 410 MovieClip Frame 19
_root.canPause = false;
Symbol 410 MovieClip Frame 21
_root.canPause = true;
Instance of Symbol 324 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 324 MovieClip in Symbol 410 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 369 MovieClip in Symbol 410 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 369 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 354 MovieClip in Symbol 410 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 354 MovieClip in Symbol 410 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 354 MovieClip in Symbol 410 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Instance of Symbol 354 MovieClip in Symbol 410 MovieClip Frame 25
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 0.5; } }
Symbol 410 MovieClip Frame 26
_root.canPause = false;
Instance of Symbol 378 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 410 MovieClip Frame 28
_root.canPause = true;
Instance of Symbol 350 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 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 342 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 86 MovieClip in Symbol 410 MovieClip Frame 32
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 86 MovieClip "ground" in Symbol 410 MovieClip Frame 32
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 350 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 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 344 MovieClip in Symbol 410 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 344 MovieClip in Symbol 410 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 344 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 410 MovieClip Frame 37
_root.canPause = false;
Instance of Symbol 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 410 MovieClip Frame 38
_root.canPause = true;
Instance of Symbol 350 MovieClip in Symbol 410 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 86 MovieClip "ground" in Symbol 410 MovieClip Frame 39
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 322 MovieClip in Symbol 410 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 322 MovieClip in Symbol 410 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 86 MovieClip in Symbol 410 MovieClip Frame 39
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 322 MovieClip in Symbol 410 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 322 MovieClip in Symbol 410 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 322 MovieClip in Symbol 410 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 322 MovieClip in Symbol 410 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 322 MovieClip in Symbol 410 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 322 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 MovieClip Frame 40
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed - 6; } }
Instance of Symbol 354 MovieClip in Symbol 410 MovieClip Frame 40
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed - 6; } }
Instance of Symbol 331 MovieClip in Symbol 410 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 331 MovieClip in Symbol 410 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 331 MovieClip in Symbol 410 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 354 MovieClip in Symbol 410 MovieClip Frame 41
onClipEvent (enterFrame) { if (this.hitTest(_root.char) && (_root.char.moving)) { _root.char.xSpeed = _root.char.xSpeed + 2; } }
Instance of Symbol 354 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 86 MovieClip "ground" in Symbol 410 MovieClip Frame 43
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 86 MovieClip in Symbol 410 MovieClip Frame 43
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 327 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 327 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 350 MovieClip in Symbol 410 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 378 MovieClip in Symbol 410 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 86 MovieClip in Symbol 410 MovieClip Frame 45
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Instance of Symbol 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 334 MovieClip in Symbol 410 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 86 MovieClip "ground" in Symbol 410 MovieClip Frame 45
onClipEvent (load) { this._alpha = 0; } onClipEvent (enterFrame) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } }
Symbol 410 MovieClip Frame 46
_root.vcam._rotation = 0; _root.canPause = false;
Instance of Symbol 398 MovieClip in Symbol 410 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 342 MovieClip in Symbol 410 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 410 MovieClip Frame 47
_root.canPause = false; _root.vcam._rotation = 0;
Instance of Symbol 404 MovieClip in Symbol 410 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 407 MovieClip "crab" in Symbol 410 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 327 MovieClip "spike2" in Symbol 410 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 327 MovieClip "spike1" in Symbol 410 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 327 MovieClip "spike3" in Symbol 410 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 413 MovieClip Frame 1
stop();
Instance of Symbol 102 MovieClip in Symbol 413 MovieClip Frame 1
onClipEvent (enterFrame) { if (!_root.pauseChar) { this.play(); } else { this.stop(); } }
Symbol 413 MovieClip Frame 2
_root.char.dead = false;
Symbol 413 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:6
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:4 5Used by:36
Symbol 7 GraphicUsed by:36
Symbol 8 GraphicUsed by:36
Symbol 9 GraphicUsed by:36
Symbol 10 MovieClipUsed by:36
Symbol 11 GraphicUsed by:36
Symbol 12 GraphicUsed by:20
Symbol 13 GraphicUsed by:20
Symbol 14 GraphicUsed by:20
Symbol 15 GraphicUsed by:20
Symbol 16 GraphicUsed by:20
Symbol 17 GraphicUsed by:20
Symbol 18 GraphicUsed by:20
Symbol 19 GraphicUsed by:20
Symbol 20 MovieClipUses:12 13 14 15 16 17 18 19Used by:36
Symbol 21 ShapeTweeningUsed by:36
Symbol 22 ShapeTweeningUsed by:36
Symbol 23 GraphicUsed by:36
Symbol 24 GraphicUsed by:36
Symbol 25 GraphicUsed by:36
Symbol 26 GraphicUsed by:34 35
Symbol 27 GraphicUsed by:34 35 36
Symbol 28 GraphicUsed by:34 35
Symbol 29 GraphicUsed by:34 35 36
Symbol 30 GraphicUsed by:34 35 36
Symbol 31 GraphicUsed by:33 34 35
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:31 32Used by:34 35 36
Symbol 34 ButtonUses:26 27 28 29 30 33 31Used by:36
Symbol 35 ButtonUses:26 27 28 29 30 33 31Used by:36
Symbol 36 MovieClipUses:6 7 8 9 10 11 20 21 22 23 24 25 34 35 30 27 33 29Used by:50
Symbol 37 GraphicUsed by:50
Symbol 38 GraphicUsed by:42
Symbol 39 GraphicUsed by:42
Symbol 40 GraphicUsed by:42
Symbol 41 GraphicUsed by:42
Symbol 42 ButtonUses:38 39 40 41Used by:50
Symbol 43 GraphicUsed by:50
Symbol 44 GraphicUsed by:50
Symbol 45 GraphicUsed by:49
Symbol 46 GraphicUsed by:48
Symbol 47 GraphicUsed by:48
Symbol 48 ButtonUses:46 47Used by:49
Symbol 49 MovieClipUses:45 48Used by:50
Symbol 50 MovieClipUses:36 37 42 43 44 49Used by:Timeline
Symbol 414 MovieClip [__Packages.NewgroundsAPI]
Symbol 51 GraphicUsed by:66
Symbol 52 GraphicUsed by:66
Symbol 53 GraphicUsed by:66
Symbol 54 SoundUsed by:66
Symbol 55 SoundUsed by:66
Symbol 56 GraphicUsed by:66
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:66
Symbol 59 SoundUsed by:66
Symbol 60 SoundUsed by:66
Symbol 61 SoundUsed by:66
Symbol 62 GraphicUsed by:63
Symbol 63 ButtonUses:62Used by:66
Symbol 64 SoundUsed by:66
Symbol 65 SoundUsed by:66
Symbol 66 MovieClipUses:51 52 53 54 55 56 58 59 60 61 63 64 65Used by:Timeline
Symbol 67 GraphicUsed by:71 72 75 76 79 81 82 83 317
Symbol 68 FontUsed by:69 74 78 80 97 287 293 294 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 315 318
Symbol 69 TextUses:68Used by:71 72
Symbol 70 GraphicUsed by:71 72 75 76 79 81 82 83
Symbol 71 ButtonUses:67 69 70Used by:73
Symbol 72 ButtonUses:67 69 70Used by:73
Symbol 73 MovieClipUses:71 72Used by:Timeline
Symbol 74 TextUses:68Used by:75 76
Symbol 75 ButtonUses:67 74 70Used by:77
Symbol 76 ButtonUses:67 74 70Used by:77
Symbol 77 MovieClipUses:75 76Used by:Timeline
Symbol 78 TextUses:68Used by:79 82
Symbol 79 ButtonUses:67 78 70Used by:84
Symbol 80 TextUses:68Used by:81 83
Symbol 81 ButtonUses:67 80 70Used by:84
Symbol 82 ButtonUses:67 78 70Used by:84
Symbol 83 ButtonUses:67 80 70Used by:84
Symbol 84 MovieClipUses:79 81 82 83Used by:Timeline
Symbol 85 GraphicUsed by:86 298 322 362 410
Symbol 86 MovieClipUses:85Used by:410  Timeline
Symbol 87 GraphicUsed by:88 92 295
Symbol 88 ButtonUses:87Used by:91
Symbol 89 GraphicUsed by:91
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:88 89 90Used by:321  Timeline
Symbol 92 ButtonUses:87Used by:94
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:92 93Used by:321  Timeline
Symbol 95 GraphicUsed by:98
Symbol 96 GraphicUsed by:98
Symbol 97 TextUses:68Used by:98
Symbol 98 ButtonUses:95 96 97Used by:Timeline
Symbol 99 GraphicUsed by:100
Symbol 100 MovieClipUses:99Used by:102
Symbol 101 GraphicUsed by:102
Symbol 102 MovieClipUses:100 101Used by:118 413
Symbol 103 GraphicUsed by:104
Symbol 104 MovieClipUses:103Used by:118
Symbol 105 GraphicUsed by:116 407
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:116 398 406 407 410
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:116 406 407 410
Symbol 110 GraphicUsed by:115
Symbol 111 GraphicUsed by:114
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:112Used by:114
Symbol 114 MovieClipUses:111 113Used by:115
Symbol 115 MovieClipUses:110 114Used by:116 407 410
Symbol 116 MovieClipUses:105 107 109 115Used by:117
Symbol 117 MovieClipUses:116Used by:118
Symbol 118 MovieClipUses:102 104 117Used by:Timeline
Symbol 119 BitmapUsed by:236
Symbol 120 BitmapUsed by:236
Symbol 121 BitmapUsed by:236
Symbol 122 BitmapUsed by:236
Symbol 123 BitmapUsed by:236
Symbol 124 BitmapUsed by:236
Symbol 125 BitmapUsed by:236
Symbol 126 BitmapUsed by:236
Symbol 127 BitmapUsed by:236
Symbol 128 BitmapUsed by:236
Symbol 129 BitmapUsed by:236
Symbol 130 BitmapUsed by:236
Symbol 131 BitmapUsed by:236
Symbol 132 BitmapUsed by:236
Symbol 133 BitmapUsed by:236
Symbol 134 BitmapUsed by:236
Symbol 135 BitmapUsed by:236
Symbol 136 BitmapUsed by:236
Symbol 137 BitmapUsed by:236
Symbol 138 BitmapUsed by:236
Symbol 139 BitmapUsed by:236
Symbol 140 BitmapUsed by:236
Symbol 141 BitmapUsed by:236
Symbol 142 BitmapUsed by:236
Symbol 143 BitmapUsed by:236
Symbol 144 BitmapUsed by:236
Symbol 145 BitmapUsed by:236
Symbol 146 BitmapUsed by:236
Symbol 147 BitmapUsed by:236
Symbol 148 BitmapUsed by:236
Symbol 149 BitmapUsed by:236
Symbol 150 BitmapUsed by:236
Symbol 151 BitmapUsed by:236
Symbol 152 BitmapUsed by:236
Symbol 153 BitmapUsed by:236
Symbol 154 BitmapUsed by:236
Symbol 155 BitmapUsed by:236
Symbol 156 BitmapUsed by:236
Symbol 157 BitmapUsed by:236
Symbol 158 BitmapUsed by:236
Symbol 159 BitmapUsed by:236
Symbol 160 BitmapUsed by:236
Symbol 161 BitmapUsed by:236
Symbol 162 BitmapUsed by:236
Symbol 163 BitmapUsed by:236
Symbol 164 BitmapUsed by:236
Symbol 165 BitmapUsed by:236
Symbol 166 BitmapUsed by:236
Symbol 167 BitmapUsed by:236
Symbol 168 BitmapUsed by:236
Symbol 169 BitmapUsed by:236
Symbol 170 BitmapUsed by:236
Symbol 171 BitmapUsed by:236
Symbol 172 BitmapUsed by:236
Symbol 173 BitmapUsed by:236
Symbol 174 BitmapUsed by:236
Symbol 175 BitmapUsed by:236
Symbol 176 BitmapUsed by:236
Symbol 177 BitmapUsed by:236
Symbol 178 BitmapUsed by:236
Symbol 179 BitmapUsed by:236
Symbol 180 BitmapUsed by:236
Symbol 181 BitmapUsed by:236
Symbol 182 BitmapUsed by:236
Symbol 183 BitmapUsed by:236
Symbol 184 BitmapUsed by:236
Symbol 185 BitmapUsed by:236
Symbol 186 BitmapUsed by:236
Symbol 187 BitmapUsed by:236
Symbol 188 BitmapUsed by:236
Symbol 189 BitmapUsed by:236
Symbol 190 BitmapUsed by:236
Symbol 191 BitmapUsed by:236
Symbol 192 BitmapUsed by:236
Symbol 193 BitmapUsed by:236
Symbol 194 BitmapUsed by:236
Symbol 195 BitmapUsed by:236
Symbol 196 BitmapUsed by:236
Symbol 197 BitmapUsed by:236
Symbol 198 BitmapUsed by:236
Symbol 199 BitmapUsed by:236
Symbol 200 BitmapUsed by:236
Symbol 201 BitmapUsed by:236
Symbol 202 BitmapUsed by:236
Symbol 203 BitmapUsed by:236
Symbol 204 BitmapUsed by:236
Symbol 205 BitmapUsed by:236
Symbol 206 BitmapUsed by:236
Symbol 207 BitmapUsed by:236
Symbol 208 BitmapUsed by:236
Symbol 209 BitmapUsed by:236
Symbol 210 BitmapUsed by:236
Symbol 211 BitmapUsed by:236
Symbol 212 BitmapUsed by:236
Symbol 213 BitmapUsed by:236
Symbol 214 BitmapUsed by:236
Symbol 215 BitmapUsed by:236
Symbol 216 BitmapUsed by:236
Symbol 217 BitmapUsed by:236
Symbol 218 BitmapUsed by:236
Symbol 219 BitmapUsed by:236
Symbol 220 BitmapUsed by:236
Symbol 221 BitmapUsed by:236
Symbol 222 BitmapUsed by:236
Symbol 223 BitmapUsed by:236
Symbol 224 BitmapUsed by:236
Symbol 225 BitmapUsed by:236
Symbol 226 BitmapUsed by:236
Symbol 227 BitmapUsed by:236
Symbol 228 BitmapUsed by:236
Symbol 229 BitmapUsed by:236
Symbol 230 BitmapUsed by:236
Symbol 231 BitmapUsed by:236
Symbol 232 BitmapUsed by:236
Symbol 233 BitmapUsed by:236
Symbol 234 BitmapUsed by:236
Symbol 235 BitmapUsed by:236
Symbol 236 GraphicUses: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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235Used by:Timeline
Symbol 237 GraphicUsed by:Timeline
Symbol 238 BitmapUsed by:239
Symbol 239 GraphicUses:238Used by:Timeline
Symbol 240 GraphicUsed by:Timeline
Symbol 241 BitmapUsed by:242
Symbol 242 GraphicUses:241Used by:Timeline
Symbol 243 GraphicUsed by:Timeline
Symbol 244 BitmapUsed by:245
Symbol 245 GraphicUses:244Used by:Timeline
Symbol 246 GraphicUsed by:Timeline
Symbol 247 BitmapUsed by:248
Symbol 248 GraphicUses:247Used by:Timeline
Symbol 249 GraphicUsed by:Timeline
Symbol 250 BitmapUsed by:251
Symbol 251 GraphicUses:250Used by:Timeline
Symbol 252 GraphicUsed by:Timeline
Symbol 253 BitmapUsed by:254
Symbol 254 GraphicUses:253Used by:Timeline
Symbol 255 GraphicUsed by:Timeline
Symbol 256 BitmapUsed by:257
Symbol 257 GraphicUses:256Used by:Timeline
Symbol 258 GraphicUsed by:Timeline
Symbol 259 BitmapUsed by:260
Symbol 260 GraphicUses:259Used by:Timeline
Symbol 261 GraphicUsed by:Timeline
Symbol 262 BitmapUsed by:263
Symbol 263 GraphicUses:262Used by:Timeline
Symbol 264 GraphicUsed by:Timeline
Symbol 265 BitmapUsed by:266
Symbol 266 GraphicUses:265Used by:Timeline
Symbol 267 GraphicUsed by:Timeline
Symbol 268 BitmapUsed by:269
Symbol 269 GraphicUses:268Used by:Timeline
Symbol 270 GraphicUsed by:Timeline
Symbol 271 BitmapUsed by:272
Symbol 272 GraphicUses:271Used by:Timeline
Symbol 273 GraphicUsed by:Timeline
Symbol 274 BitmapUsed by:275
Symbol 275 GraphicUses:274Used by:Timeline
Symbol 276 GraphicUsed by:Timeline
Symbol 277 BitmapUsed by:278
Symbol 278 GraphicUses:277Used by:Timeline
Symbol 279 GraphicUsed by:Timeline
Symbol 280 BitmapUsed by:281
Symbol 281 GraphicUses:280Used by:Timeline
Symbol 282 GraphicUsed by:Timeline
Symbol 283 GraphicUsed by:Timeline
Symbol 284 BitmapUsed by:285
Symbol 285 GraphicUses:284Used by:Timeline
Symbol 286 GraphicUsed by:Timeline
Symbol 287 TextUses:68Used by:288
Symbol 288 MovieClipUses:287Used by:Timeline
Symbol 289 GraphicUsed by:292
Symbol 290 GraphicUsed by:291
Symbol 291 MovieClipUses:290Used by:292
Symbol 292 MovieClipUses:289 291Used by:321
Symbol 293 TextUses:68Used by:321
Symbol 294 EditableTextUses:68Used by:321
Symbol 295 ButtonUses:87Used by:298
Symbol 296 GraphicUsed by:298
Symbol 297 GraphicUsed by:298
Symbol 298 MovieClipUses:295 296 85 297Used by:321
Symbol 299 TextUses:68Used by:321
Symbol 300 EditableTextUses:68Used by:321
Symbol 301 TextUses:68Used by:321
Symbol 302 TextUses:68Used by:321
Symbol 303 TextUses:68Used by:321
Symbol 304 TextUses:68Used by:321
Symbol 305 TextUses:68Used by:321
Symbol 306 TextUses:68Used by:321
Symbol 307 TextUses:68Used by:321
Symbol 308 TextUses:68Used by:321
Symbol 309 TextUses:68Used by:321
Symbol 310 TextUses:68Used by:321
Symbol 311 TextUses:68Used by:321
Symbol 312 TextUses:68Used by:320
Symbol 313 EditableTextUses:68Used by:320
Symbol 314 GraphicUsed by:319
Symbol 315 TextUses:68Used by:317
Symbol 316 GraphicUsed by:317
Symbol 317 ButtonUses:67 315 316Used by:319
Symbol 318 EditableTextUses:68Used by:319
Symbol 319 MovieClipUses:314 317 318Used by:320
Symbol 320 MovieClipUses:312 313 319Used by:321
Symbol 321 MovieClipUses:292 91 94 293 294 298 299 300 301 302 303 304 305 306 307 308 309 310 311 320Used by:Timeline
Symbol 322 MovieClipUses:85Used by:410
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:323Used by:410
Symbol 325 GraphicUsed by:326
Symbol 326 MovieClipUses:325Used by:327
Symbol 327 MovieClipUses:326Used by:406 410
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:410
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:330Used by:410
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:334
Symbol 334 MovieClipUses:333Used by:410
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClipUses:335Used by:410
Symbol 337 GraphicUsed by:338
Symbol 338 MovieClipUses:337Used by:410
Symbol 339 GraphicUsed by:341
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClipUses:339 340Used by:342
Symbol 342 MovieClipUses:341Used by:410
Symbol 343 GraphicUsed by:344
Symbol 344 MovieClipUses:343Used by:410
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:345Used by:410
Symbol 347 GraphicUsed by:350
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClipUses:348Used by:350
Symbol 350 MovieClipUses:347 349Used by:410
Symbol 351 GraphicUsed by:352
Symbol 352 MovieClipUses:351Used by:410
Symbol 353 GraphicUsed by:354
Symbol 354 MovieClipUses:353Used by:410
Symbol 355 GraphicUsed by:356
Symbol 356 MovieClipUses:355Used by:410
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClipUses:357Used by:410
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClipUses:359Used by:410
Symbol 361 GraphicUsed by:363
Symbol 362 MovieClipUses:85Used by:363 365 380 383 391 393 395 400
Symbol 363 MovieClipUses:361 362Used by:410
Symbol 364 GraphicUsed by:365
Symbol 365 MovieClipUses:364 362Used by:410
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:366Used by:410
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClipUses:368Used by:410
Symbol 370 GraphicUsed by:371
Symbol 371 MovieClipUses:370Used by:410
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClipUses:372Used by:410
Symbol 374 GraphicUsed by:375
Symbol 375 MovieClipUses:374Used by:378
Symbol 376 GraphicUsed by:377
Symbol 377 MovieClipUses:376Used by:378
Symbol 378 MovieClipUses:375 377Used by:410
Symbol 379 GraphicUsed by:380
Symbol 380 MovieClipUses:379 362Used by:410
Symbol 381 GraphicUsed by:410
Symbol 382 GraphicUsed by:383
Symbol 383 MovieClipUses:382 362Used by:410
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClipUses:384Used by:410
Symbol 386 GraphicUsed by:387
Symbol 387 MovieClipUses:386Used by:410
Symbol 388 GraphicUsed by:389
Symbol 389 MovieClipUses:388Used by:410
Symbol 390 GraphicUsed by:391
Symbol 391 MovieClipUses:390 362Used by:410
Symbol 392 GraphicUsed by:393
Symbol 393 MovieClipUses:392 362Used by:410
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClipUses:394 362Used by:410
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:396Used by:410
Symbol 398 MovieClipUses:107Used by:410
Symbol 399 GraphicUsed by:400
Symbol 400 MovieClipUses:399 362Used by:410
Symbol 401 GraphicUsed by:410
Symbol 402 GraphicUsed by:403
Symbol 403 MovieClipUses:402Used by:404
Symbol 404 MovieClipUses:403Used by:410
Symbol 405 GraphicUsed by:406
Symbol 406 MovieClipUses:405 107 109 327Used by:407
Symbol 407 MovieClipUses:105 107 109 115 406Used by:410
Symbol 408 GraphicUsed by:409
Symbol 409 MovieClipUses:408Used by:410
Symbol 410 MovieClipUses:86 322 324 327 329 331 334 336 338 342 344 346 350 352 354 356 358 360 363 365 367 369 371 373 378 380 381 383 385 387 389 391 393 395 397 85 115 107 109 398 400 401 404 407 409Used by:Timeline
Symbol 411 GraphicUsed by:412
Symbol 412 MovieClipUses:411Used by:413
Symbol 413 MovieClipUses:102 412Used by:Timeline

Instance Names

"preload"Frame 2Symbol 66 MovieClip
"ground"Frame 3Symbol 86 MovieClip
"char"Frame 3Symbol 118 MovieClip
"preloader"Frame 3Symbol 288 MovieClip
"vcam"Frame 3Symbol 321 MovieClip
"level"Frame 4Symbol 410 MovieClip
"char"Frame 4Symbol 413 MovieClip
"ng_ad"Symbol 50 MovieClip Frame 1Symbol 49 MovieClip
"endGame"Symbol 321 MovieClip Frame 12Symbol 320 MovieClip
"body"Symbol 378 MovieClip Frame 1Symbol 375 MovieClip
"spike2"Symbol 406 MovieClip Frame 1Symbol 327 MovieClip
"spike1"Symbol 406 MovieClip Frame 1Symbol 327 MovieClip
"spike3"Symbol 406 MovieClip Frame 1Symbol 327 MovieClip
"ground"Symbol 410 MovieClip Frame 1Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 5Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 7Symbol 329 MovieClip
"ground"Symbol 410 MovieClip Frame 8Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 9Symbol 336 MovieClip
"ground"Symbol 410 MovieClip Frame 10Symbol 338 MovieClip
"ground"Symbol 410 MovieClip Frame 11Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 12Symbol 329 MovieClip
"ground"Symbol 410 MovieClip Frame 13Symbol 346 MovieClip
"ground"Symbol 410 MovieClip Frame 14Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 15Symbol 352 MovieClip
"ground"Symbol 410 MovieClip Frame 16Symbol 356 MovieClip
"ground"Symbol 410 MovieClip Frame 17Symbol 358 MovieClip
"ground"Symbol 410 MovieClip Frame 18Symbol 360 MovieClip
"ground"Symbol 410 MovieClip Frame 19Symbol 363 MovieClip
"ground"Symbol 410 MovieClip Frame 20Symbol 365 MovieClip
"ground"Symbol 410 MovieClip Frame 21Symbol 367 MovieClip
"ground"Symbol 410 MovieClip Frame 22Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 23Symbol 371 MovieClip
"ground"Symbol 410 MovieClip Frame 24Symbol 356 MovieClip
"ground"Symbol 410 MovieClip Frame 25Symbol 373 MovieClip
"ground"Symbol 410 MovieClip Frame 26Symbol 380 MovieClip
"ground"Symbol 410 MovieClip Frame 27Symbol 383 MovieClip
"ground"Symbol 410 MovieClip Frame 28Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 29Symbol 385 MovieClip
"ground"Symbol 410 MovieClip Frame 30Symbol 387 MovieClip
"ground"Symbol 410 MovieClip Frame 31Symbol 389 MovieClip
"ground"Symbol 410 MovieClip Frame 32Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 33Symbol 391 MovieClip
"ground"Symbol 410 MovieClip Frame 34Symbol 360 MovieClip
"ground"Symbol 410 MovieClip Frame 35Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 36Symbol 371 MovieClip
"ground"Symbol 410 MovieClip Frame 37Symbol 393 MovieClip
"ground"Symbol 410 MovieClip Frame 38Symbol 385 MovieClip
"ground"Symbol 410 MovieClip Frame 39Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 40Symbol 395 MovieClip
"ground"Symbol 410 MovieClip Frame 41Symbol 360 MovieClip
"ground"Symbol 410 MovieClip Frame 42Symbol 397 MovieClip
"ground"Symbol 410 MovieClip Frame 43Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 44Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 45Symbol 86 MovieClip
"ground"Symbol 410 MovieClip Frame 46Symbol 400 MovieClip
"crab"Symbol 410 MovieClip Frame 47Symbol 407 MovieClip
"spike2"Symbol 410 MovieClip Frame 47Symbol 327 MovieClip
"ground"Symbol 410 MovieClip Frame 47Symbol 409 MovieClip
"spike1"Symbol 410 MovieClip Frame 47Symbol 327 MovieClip
"spike3"Symbol 410 MovieClip Frame 47Symbol 327 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 414 as "__Packages.NewgroundsAPI"

Labels

"levelOne"Frame 4
"loading"Symbol 36 MovieClip Frame 1
"loaded"Symbol 36 MovieClip Frame 101
"lastframe"Symbol 36 MovieClip Frame 165
"end"Symbol 36 MovieClip Frame 166
"pause"Symbol 298 MovieClip Frame 1
"cantPause"Symbol 298 MovieClip Frame 2
"normal"Symbol 298 MovieClip Frame 3
"die"Symbol 413 MovieClip Frame 2

Dynamic Text Variables

_root.deathsSymbol 294 EditableText"######"
_root.levelAtSymbol 300 EditableText"####"
_root.deathCountSymbol 313 EditableText"###### deaths"
_root.nameSymbol 318 EditableText"Name"




http://swfchan.com/16/75502/info.shtml
Created: 6/4 -2019 02:37:43 Last modified: 6/4 -2019 02:37:43 Server time: 29/04 -2024 06:48:29