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

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

refrigeratorrampage2.swf

This is the info page for
Flash #85261

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


Text
<p align="left"></p>

fps

<p align="left"><font face="Arial Black_19pt_st" size="19" color="#ffffff" letterSpacing="0.000000" kerning="1"><b>0000000</b></font></p>

<p align="center"><font face="Arno Pro Smbd Caption_44pt_st" size="44" color="#ffffff" letterSpacing="0.000000" kerning="1"><b>100</b></font></p>

<p align="center"><font face="Arno Pro Smbd Caption_44pt_st" size="44" color="#ffffff" letterSpacing="0.000000" kerning="1"><b>100</b></font></p>

Dodge that !

Gameplay
Try to get the highscore by dodging as
many fridges as you can while shooting some
to earn extra points. You only have 1 life and
when you die, you can submit your score.
A yellow warning sign appears and
shows where a fridge is going to fall. When
your score is over 10 000, blue warning signs
will appear on the sides of the screen. If the
warning sign is above your character's head,
don't jump, if its under your character, jump
! The warning signs flash 3 times before a
fridge appear and so, timing is the key to
surviving !

1. Usable Guns
2. Warning Sign
3. Power Up
4. Power Up in Use
(Black = innactive)

5. Power Up Timer Bar
(Decreases  when using power up)
6. Current Score
7. Enemy
8. Ed -Your character

1

3

2

4

6

5

7

8

Heads Up Display

Effect:
- Increases jump
- Increases rate of fire
of shotgun

Mega Bow

Effect:
- Invincibility
- Walk through fridges

Top Hat of Doom

Power Ups
There are 2 power ups you can find and use
during the game. Their effect lasts 15
seconds, you can see how much time is left by
looking at the power up timer bar on the top
right corner of the screen.

Switch Guns

Jump

Move

Pause/Unpause

Aim

Shoot

Controls

Last Notes
There are 4 different guns you can get
while playing. You start off with a revolver
and get new ones as your score increases.
Keep in mind that once you die and
restart the game, you restart with the
revolver.
Fridges have 10 health points each. Each
gun inflicts a different damage (per bullet).
- Revolver - 1 hp
- Gun 2 - 0.75 hp
- Gun 3 - 5 hp
- Gun 4 - 2 hp

<p align="center"><font face="Arno Pro Smbd Caption" size="24" color="#ffffff" letterSpacing="0.000000" kerning="1"><b>35/35</b></font></p>

Choose a face :)

Begin

Medium quality recommended
for average computers. Low
quality recommended for
slower computers. You can
pause the game at any time and
change the quality.

RUINsane- 2x frdgg
desert egle - 1sht kill
hvy duty- 2x fr hp 500 p
ss- invinc
kangaroo-more side fridge
titan-vig fr
airhead-head
lightning-2x rof
age blood-aut shotgun

// **Platformer Engine 1.0** //
onClipEvent (load) {
//
var ground:MovieClip = _root.ground;
//
var kDown:Function = Key.isDown;
var rKey:Number = 39;
var lKey:Number = 37;
var uKey:Number = 38;
var aKey:Number = 65;
var shKey:Number = 83;
var pKey:Number = 80;
//
var grav:Number = 0;
var gravity:Number = 2;
var xSpeed:Number = 0;
var xAc:Number = 1;
var mSpeed:Number = 15;
var jHeight:Number = 20;
//
var State:String = "normal";
var Side:String = "right";
var gHit:Boolean = false;
var Scale:Number = _xscale;
var heldCounter:Number = 0;
var Speeded:Boolean = false;
gotoAndStop("jump");
//
}
onClipEvent (enterFrame) {
_y += grav;
_x += xSpeed;
grav += gravity;
while (ground.hitTest(_x, _y, true)) {
_y -= gravity;
grav = 0;
}
if (ground.hitTest(_x, _y+3, true)) {
gHit = true;
} else {
gHit = false;
}
if (xSpeed>0) {
_xscale = Scale;
}
if (xSpeed<0) {
_xscale = -Scale;
}
//
if (kDown(aKey)) {
heldCounter++;
} else {
heldCounter = 0;
}
if (heldCounter>
=10) {
aHeld = true;
}
if (heldCounter<9) {
aHeld = false;
}
//
if (State == "normal") {
if (kDown(rKey) && !kDown(lKey) && xSpeed<mSpeed) {
if (gHit) {
gotoAndStop("run");
} else {
gotoAndStop("jump");
}
xSpeed += xAc;
} else if (kDown(lKey) && !kDown(rKey) && xSpeed>-mSpeed) {
if (gHit) {
gotoAndStop("run");
} else {
gotoAndStop("jump");
}
xSpeed -= xAc;
} else {
if (gHit && xSpeed == 0 && !kDown(uKey)) {
gotoAndStop("idle");
}
if (xSpeed>
0) {
xSpeed -= xAc;
}
if (xSpeed<0) {
xSpeed += xAc;
}
}
if (kDown(rKey) && kDown(lKey)) {
if (gHit && xSpeed == 0 && !kDown(uKey)) {
gotoAndStop("idle");
}
if (xSpeed>
0) {
xSpeed -= xAc;
if (gHit) {
gotoAndStop("run");
} else {
gotoAndStop("jump");
}
}
if (xSpeed<0) {
xSpeed += xAc;
if (gHit) {
gotoAndStop("run");
} else {
gotoAndStop("jump");
}
}
}
if (kDown(uKey) && gHit) {
grav = -jHeight;
gotoAndStop("jump");
}
}
}

ActionScript [AS1/AS2]

Frame 1
stop(); Stage.showMenu = false; _focusrect = false; Mouse.show(); mochi.as2.MochiServices.connect("e005a627fb07df0b"); NewgroundsAPI.connectMovie(6634);
Frame 178
var Playing = false; var Music = _root.createEmptyMovieClip("mus", 10001); var bgm = new Sound(Music); bgm.attachSound("bgm"); bgm.start(0, 99); bgm.setVolume(100); var Face = 1; var Arena = 1;
Frame 179
stop();
Instance of Symbol 203 MovieClip "credits" in Frame 179
onClipEvent (load) { this.useHandCursor = false; _visible = false; _x = (Stage.width / 2); _y = (Stage.height / 2); } on (press) { if (_visible) { _visible = false; } }
Frame 185
function onEnterFrame() { cface.text = _root.Face + "/35"; }
Instance of Symbol 107 MovieClip in Frame 185
on (press) { if (_root.Face < _root.mFace) { _root.Face++; } }
Instance of Symbol 107 MovieClip in Frame 185
on (press) { if (_root.Face > 1) { _root.Face--; } }
Instance of Symbol 97 MovieClip in Frame 185
on (press) { _root._quality = "LOW"; }
Instance of Symbol 97 MovieClip in Frame 185
on (press) { _root._quality = "MEDIUM"; }
Instance of Symbol 97 MovieClip in Frame 185
on (press) { _root._quality = "HIGH"; }
Frame 186
function onEnterFrame() { pScreen._x = _root.Cam._x; if (puCount < 1500) { puCount++; } if (puCount >= 1500) { _root.attachMovie("pu" + random(2), "pu", smkCount, {_x:Char._x, _y:-74}); smkCount++; puCount = 0; } revS.setVolume(SE); _root.bgm.setVolume(MU); if (Paused) { Mouse.show(); pScreen._visible = true; } if (!Paused) { pScreen._visible = false; fCount++; Score++; Cam.score.text = Score; if (bCount >= 1000) { bCount = 0; } if (fCount >= 1500) { fCount = 1100; } if (smkCount >= 2000) { smkCount = 1600; } if (fridges < fInt) { fridges++; } if (fridges >= fInt) { fridges = 0; if (Score >= 10000) { chooseFridge = random(10); } else { chooseFridge = 1; } if (chooseFridge <= 7) { _root.attachMovie("fridge", "fridge" + fCount, fCount, {_x:Char._x + (random(600) - 300), _y:-74}); } if (chooseFridge > 7) { _root.attachMovie("fridgeS", "fridged" + fCount, fCount); } } if ((Score >= 2500) && (Score < 10000)) { if (!Played1) { Played1 = true; Cam.nwa.play(); } weapons = 2; } if ((Score >= 10000) && (Score < 20000)) { if (!Played2) { Played2 = true; Cam.nwa.play(); } weapons = 3; } if (Score >= 20000) { if (!Played3) { Played3 = true; Cam.nwa.play(); } weapons = 4; } if (Score >= 5000) { fInt = 55; } if (Score >= 10000) { fInt = 50; } if (Score >= 15000) { fInt = 45; } if (Score >= 20000) { fInt = 40; } if (Score >= 25000) { fInt = 35; } if (Score >= 30000) { fInt = 30; } } if (!_root.Playing) { bell.start(0, 0); bell.setVolume(500); Cam.removeMovieClip(); Mouse.show(); SoundEffects.removeMovieClip(); pScreen.removeMovieClip(); _root.bgm.setVolume(50); delete this.onEnterFrame; gotoAndStop ("end"); } } stop(); _root.Playing = true; var Paused = false; var fridges = 0; var fCount = 1100; var bCount = 0; var smkCount = 1600; var fInt = 60; var Score = 0; var weapons = 1; var chooseFridge = 0; var SE = 50; var MU = 100; var pScreen = _root.attachMovie("pScreen", "ps", 10004, {_x:Char._x, _y:250}); var cHide = false; var puCount = 0; var Played1 = false; var Played2 = false; var Played3 = false; var SoundEffects = _root.createEmptyMovieClip("seff", 10000); var revS = new Sound(SoundEffects); revS.attachSound("rev_sound"); var smgS = new Sound(SoundEffects); smgS.attachSound("smg_sound"); var shgS = new Sound(SoundEffects); shgS.attachSound("shg_sound"); var xm8S = new Sound(SoundEffects); xm8S.attachSound("xm8_sound"); var hitS = new Sound(SoundEffects); hitS.attachSound("hitf_sound"); var stepS = new Sound(SoundEffects); stepdS.attachSound("steps_sound"); var fhgS = new Sound(SoundEffects); fhgS.attachSound("fhg_sound"); var fdS = new Sound(SoundEffects); fdS.attachSound("fd_sound"); var moo = new Sound(SoundEffects); moo.attachSound("moo"); var shotguncock = new Sound(SoundEffects); shotguncock.attachSound("shotguncock"); var bell = new Sound(SoundEffects); bell.attachSound("bell"); _root.bgm.setVolume(100); Cam.swapDepths(10003); _root._quality = "MEDIUM";
Instance of Symbol 320 MovieClip in Frame 186
onClipEvent (load) { gotoAndStop(_root.Arena); } onClipEvent (enterFrame) { _x = _root.Cam._x; }
Instance of Symbol 322 MovieClip "ground" in Frame 186
onClipEvent (load) { gotoAndStop(_root.Arena); }
Instance of Symbol 51 MovieClip [cam] "Cam" in Frame 186
onClipEvent (enterFrame) { if (_root.Arena >= 1) { if ((_x <= 170) && (_root.Char._x <= 175)) { _x = (_x + ((180 - _x) / 5)); } if ((_root.Char._x > 175) && (_root.Char._x < 635)) { _x = _root.Char._x; } if ((_x >= 630) && (_root.Char._x >= 635)) { _x = (_x + ((640 - _x) / 5)); } } }
Instance of Symbol 324 MovieClip in Frame 186
onClipEvent (enterFrame) { _x = (_root._xmouse + 25); _y = (_root._ymouse + 25); _x = (_x + _root.Char.xSpeed); if (_root.cHide) { _visible = false; } else if (_root.Paused) { _visible = false; } else { _visible = true; } if (!_root.Playing) { removeMovieClip(this); } Mouse.hide(); swapDepths(12000); }
Instance of Symbol 327 MovieClip in Frame 186
onClipEvent (load) { gotoAndStop(_root.Arena); }
Instance of Symbol 329 MovieClip "walls" in Frame 186
onClipEvent (load) { gotoAndStop(_root.Arena); }
Frame 190
stop(); var o = {n:[11, 7, 13, 5, 0, 15, 6, 11, 12, 9, 10, 4, 6, 7, 7, 2], f:function (i, s) { if (s.length == 16) { return(s); } return(this.f(i + 1, s + this.n[i].toString(16))); }}; var boardID = o.f(0, ""); mochi.as2.MochiScores.showLeaderboard({boardID:boardID, score:_root.Score, name:playername});
Symbol 17 MovieClip [fps] Frame 1
fps = 30; var timeinit = new Date(); var lasttime = timeinit.getMilliseconds(); onEnterFrame = function () { var _local1 = new Date(); timepassed = (((_local1.getMilliseconds() - lasttime) >= 0) ? (_local1.getMilliseconds() - lasttime) : (1000 + (_local1.getMilliseconds() - lasttime))); fps = Math.round(10000 / timepassed) / 10; lasttime = _local1.getMilliseconds(); };
Symbol 24 MovieClip Frame 1
stop();
Symbol 33 MovieClip Frame 1
function onEnterFrame() { if (!_root.Paused) { if (_currentframe >= 2) { play(); } } else { stop(); } } stop();
Symbol 33 MovieClip Frame 2
play();
Symbol 33 MovieClip Frame 540
gotoAndStop (1); _root.Char.invincible = false; _root.Char.inf = false;
Symbol 48 Button
on (press) { _root.getURL("http://www.stickpage.com/", "_blank"); }
Symbol 51 MovieClip [cam] Frame 1
function camControl() { parentColor.setTransform(camColor.getTransform()); var _local5 = sX / this._width; var _local4 = sY / this._height; _parent._x = cX - (this._x * _local5); _parent._y = cY - (this._y * _local4); _parent._xscale = 100 * _local5; _parent._yscale = 100 * _local4; if (_root.weapons >= 2) { smgt.text = _root.Char.smgA; } else { smgt.text = "---"; } if (_root.weapons >= 3) { shgt.text = _root.Char.shgA; } else { shgt.text = "---"; } if (_root.weapons >= 4) { xm8t.text = _root.Char.xm8A; } else { xm8t.text = "---"; } } function resetStage() { var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0}; parentColor.setTransform(_local2); _parent._xscale = 100; _parent._yscale = 100; _parent._x = 0; _parent._y = 0; } parentColor.setTransform(camColor.getTransform()); var oldMode = Stage.scaleMode; Stage.scaleMode = "exactFit"; var cX = (Stage.width / 2); var cY = (Stage.height / 2); var sX = Stage.width; var sY = Stage.height; Stage.scaleMode = oldMode; var camColor = new Color(this); var parentColor = new Color(_parent); this.onEnterFrame = camControl; camControl(); this.onUnload = resetStage;
Instance of Symbol 17 MovieClip [fps] in Symbol 51 MovieClip [cam] Frame 1
onClipEvent (load) { _visible = false; }
Instance of Symbol 33 MovieClip "pub" in Symbol 51 MovieClip [cam] Frame 1
onClipEvent (enterFrame) { if (_currentframe == 2) { play(); } if ((_root.Char.invincible || (_root.Char.inf)) && (_currentframe == 1)) { gotoAndPlay (2); } }
Instance of Symbol 36 MovieClip in Symbol 51 MovieClip [cam] Frame 1
onClipEvent (enterFrame) { if (_root.Char.invincible) { gotoAndStop (2); } else { gotoAndStop (1); } }
Instance of Symbol 39 MovieClip in Symbol 51 MovieClip [cam] Frame 1
onClipEvent (enterFrame) { if (_root.Char.inf) { gotoAndStop (2); } else { gotoAndStop (1); } }
Instance of Symbol 41 MovieClip in Symbol 51 MovieClip [cam] Frame 1
onClipEvent (load) { if (_root.weapons >= 2) { _visible = true; } else { _visible = false; } } onClipEvent (enterFrame) { if (_root.weapons >= 2) { _visible = true; } }
Instance of Symbol 43 MovieClip in Symbol 51 MovieClip [cam] Frame 1
onClipEvent (load) { if (_root.weapons >= 3) { _visible = true; } else { _visible = false; } } onClipEvent (enterFrame) { if (_root.weapons >= 3) { _visible = true; } }
Instance of Symbol 45 MovieClip in Symbol 51 MovieClip [cam] Frame 1
onClipEvent (load) { if (_root.weapons >= 4) { _visible = true; } else { _visible = false; } } onClipEvent (enterFrame) { if (_root.weapons >= 4) { _visible = true; } }
Instance of Symbol 50 MovieClip "ds" in Symbol 51 MovieClip [cam] Frame 1
onClipEvent (load) { _visible = false; }
Symbol 57 Button
on (press) { getURL ("http://zrb.newgrounds.com/", "_blank"); }
Symbol 62 Button
on (press) { getURL ("http://maestrorage.newgrounds.com/", "_blank"); }
Symbol 67 MovieClip Frame 1
onPress = function () { _root.getURL("http://www.stickpage.com/", "_blank"); };
Symbol 70 Button
on (press) { _root.play(); }
Symbol 71 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 71 MovieClip Frame 2
gotoAndPlay (1);
Symbol 71 MovieClip Frame 3
stop();
Symbol 432 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 433 MovieClip [__Packages.mochi.as2.MochiServices] Frame 0
class mochi.as2.MochiServices { static var _id, _container, _clip, _sendChannelName, __get__comChannelName, onError, _listenChannel, _loader, _loaderListener, _sendChannel; function MochiServices () { } static function get id() { return(_id); } static function get clip() { return(_container); } static function get childClip() { return(_clip); } static function getVersion() { return("3.0"); } static function allowDomains(server) { var _local1 = server.split("/")[2].split(":")[0]; if (System.security) { if (System.security.allowDomain) { System.security.allowDomain("*"); System.security.allowDomain(_local1); } if (System.security.allowInsecureDomain) { System.security.allowInsecureDomain("*"); System.security.allowInsecureDomain(_local1); } } return(_local1); } static function get isNetworkAvailable() { if (System.security) { var _local1 = System.security; if (_local1.sandboxType == "localWithFile") { return(false); } } return(true); } static function set comChannelName(val) { if (val != undefined) { if (val.length > 3) { _sendChannelName = val + "_fromgame"; initComChannels(); } } //return(__get__comChannelName()); } static function get connected() { return(_connected); } static function connect(id, clip, onError) { if ((!_connected) && (_clip == undefined)) { trace("MochiServices Connecting..."); _connecting = true; init(id, clip); } if (onError != undefined) { mochi.as2.MochiServices.onError = onError; } else if (mochi.as2.MochiServices.onError == undefined) { mochi.as2.MochiServices.onError = function (errorCode) { trace(errorCode); }; } } static function disconnect() { if (_connected || (_connecting)) { _connecting = (_connected = false); flush(true); if (_clip != undefined) { _clip.removeMovieClip(); delete _clip; } _listenChannel.close(); } } static function init(id, clip) { _id = id; if (clip != undefined) { _container = clip; } else { _container = _root; } loadCommunicator(id, _container); } static function loadCommunicator(id, clip) { var _local3 = "_mochiservices_com_" + id; if (_clip != null) { return(_clip); } if (!isNetworkAvailable) { return(null); } if (urlOptions().servicesURL != undefined) { _servicesURL = urlOptions().servicesURL; } allowDomains(_servicesURL); _clip = clip.createEmptyMovieClip(_local3, 10336, false); _listenChannelName = _listenChannelName + ((Math.floor(new Date().getTime()) + "_") + Math.floor(Math.random() * 99999)); listen(); _loader = new MovieClipLoader(); if (_loaderListener.waitInterval != null) { clearInterval(_loaderListener.waitInterval); } _loaderListener = {}; _loaderListener.onLoadError = function (target_mc, errorCode, httpStatus) { trace("MochiServices could not load."); mochi.as2.MochiServices.disconnect(); mochi.as2.MochiServices.onError.apply(null, [errorCode]); }; _loaderListener.onLoadStart = function (target_mc) { this.isLoading = true; }; _loaderListener.startTime = getTimer(); _loaderListener.wait = function () { if ((getTimer() - this.startTime) > 10000) { if (!this.isLoading) { mochi.as2.MochiServices.disconnect(); mochi.as2.MochiServices.onError.apply(null, ["IOError"]); } clearInterval(this.waitInterval); } }; _loaderListener.waitInterval = setInterval(_loaderListener, "wait", 1000); _loader.addListener(_loaderListener); _loader.loadClip((((_servicesURL + "?listenLC=") + _listenChannelName) + "&mochiad_options=") + escape(_root.mochiad_options), _clip); _sendChannel = new LocalConnection(); _sendChannel._queue = []; return(_clip); } static function onStatus(infoObject) { if (!(infoObject.level === "error")) { } else { _connected = false; _listenChannel.connect(_listenChannelName); } } static function listen() { _listenChannel = new LocalConnection(); _listenChannel.handshake = function (args) { mochi.as2.MochiServices.__set__comChannelName(args.newChannel); }; _listenChannel.allowDomain = function (d) { return(true); }; _listenChannel.allowInsecureDomain = _listenChannel.allowDomain; _listenChannel._nextcallbackID = 0; _listenChannel._callbacks = {}; _listenChannel.connect(_listenChannelName); trace("Waiting for MochiAds services to connect..."); } static function initComChannels() { if (!_connected) { _sendChannel.onStatus = function (infoObject) { mochi.as2.MochiServices.onStatus(infoObject); }; _sendChannel.send(_sendChannelName, "onReceive", {methodName:"handshakeDone"}); _sendChannel.send(_sendChannelName, "onReceive", {methodName:"registerGame", id:_id, clip:_clip, version:getVersion()}); _listenChannel.onStatus = function (infoObject) { mochi.as2.MochiServices.onStatus(infoObject); }; _listenChannel.onReceive = function (pkg) { var _local5 = pkg.callbackID; var _local4 = this._callbacks[_local5]; if (!_local4) { return(undefined); } var _local2 = _local4.callbackMethod; var _local3 = _local4.callbackObject; if (_local3 && (typeof(_local2) == "string")) { _local2 = _local3[_local2]; } if (_local2 != undefined) { _local2.apply(_local3, pkg.args); } delete this._callbacks[_local5]; }; _listenChannel.onError = function () { mochi.as2.MochiServices.onError.apply(null, ["IOError"]); }; trace("connected!"); _connecting = false; _connected = true; while (_sendChannel._queue.length > 0) { _sendChannel.send(_sendChannelName, "onReceive", _sendChannel._queue.shift()); } } } static function flush(error) { var _local1; var _local2; while (_sendChannel._queue.length > 0) { _local1 = _sendChannel._queue.shift(); if (_local1.callbackID != null) { _local2 = _listenChannel._callbacks[_local1.callbackID]; } delete _listenChannel._callbacks[_local1.callbackID]; if (error) { handleError(_local1.args, _local2.callbackObject, _local2.callbackMethod); } } } static function handleError(args, callbackObject, callbackMethod) { if (args != null) { if (args.onError != null) { args.onError.apply(null, ["NotConnected"]); } if ((args.options != null) && (args.options.onError != null)) { args.options.onError.apply(null, ["NotConnected"]); } } if (callbackMethod != null) { args = {}; args.error = true; args.errorCode = "NotConnected"; if ((callbackObject != null) && (typeof(callbackMethod) == "string")) { callbackObject[callbackMethod](args); } else if (callbackMethod != null) { callbackMethod.apply(args); } } } static function send(methodName, args, callbackObject, callbackMethod) { if (_connected) { _sendChannel.send(_sendChannelName, "onReceive", {methodName:methodName, args:args, callbackID:_listenChannel._nextcallbackID}); } else { if ((_clip == undefined) || (!_connecting)) { onError.apply(null, ["NotConnected"]); handleError(args, callbackObject, callbackMethod); flush(true); return(undefined); } _sendChannel._queue.push({methodName:methodName, args:args, callbackID:_listenChannel._nextcallbackID}); } _listenChannel._callbacks[_listenChannel._nextcallbackID] = {callbackObject:callbackObject, callbackMethod:callbackMethod}; _listenChannel._nextcallbackID++; } static function urlOptions() { var _local5 = {}; if (_root.mochiad_options) { var _local4 = _root.mochiad_options.split("&"); var _local2 = 0; while (_local2 < _local4.length) { var _local3 = _local4[_local2].split("="); _local5[unescape(_local3[0])] = unescape(_local3[1]); _local2++; } } return(_local5); } static function addLinkEvent(url, burl, btn, onClick) { var timeout = 1500; var t0 = getTimer(); var _local2 = new Object(); _local2.mav = getVersion(); _local2.swfv = btn.getSWFVersion() || 6; _local2.swfurl = btn._url; _local2.fv = System.capabilities.version; _local2.os = System.capabilities.os; _local2.lang = System.capabilities.language; _local2.scres = (System.capabilities.screenResolutionX + "x") + System.capabilities.screenResolutionY; var s = "?"; var _local3 = 0; for (var _local6 in _local2) { if (_local3 != 0) { s = s + "&"; } _local3++; s = ((s + _local6) + "=") + escape(_local2[_local6]); } if (!(netupAttempted || (_connected))) { var ping = btn.createEmptyMovieClip("ping", 777); var _local7 = btn.createEmptyMovieClip("nettest", 778); netupAttempted = true; ping.loadMovie("http://x.mochiads.com/linkping.swf?t=" + getTimer()); _local7.onEnterFrame = function () { if ((ping._totalframes > 0) && (ping._totalframes == ping._framesloaded)) { delete this.onEnterFrame; } else if ((getTimer() - t0) > timeout) { delete this.onEnterFrame; mochi.as2.MochiServices.netup = false; } }; } var _local4 = btn.createEmptyMovieClip("clk", 1001); _local4._alpha = 0; _local4.beginFill(1044735); _local4.moveTo(0, 0); _local4.lineTo(0, btn._height); _local4.lineTo(btn._width, btn._height); _local4.lineTo(btn._width, 0); _local4.lineTo(0, 0); _local4.endFill(); _local4.onRelease = function () { if (mochi.as2.MochiServices.netup) { getURL (url + s, "_blank"); } else { getURL (burl, "_blank"); } if (onClick != undefined) { onClick(); } }; } static var _servicesURL = "http://www.mochiads.com/static/lib/services/services.swf"; static var _listenChannelName = "__ms_"; static var _connecting = false; static var _connected = false; static var netup = true; static var netupAttempted = false; }
Symbol 434 MovieClip [__Packages.mochi.as2.MochiScores] Frame 0
class mochi.as2.MochiScores { static var boardID, onClose, onError; function MochiScores () { } static function setBoardID(boardID) { mochi.as2.MochiScores.boardID = boardID; mochi.as2.MochiServices.send("scores_setBoardID", {boardID:boardID}); } static function showLeaderboard(options) { if ((options.clip == null) || (options.clip == undefined)) { options.clip = mochi.as2.MochiServices.clip; } if ((options.clip != mochi.as2.MochiServices.__get__clip()) || (mochi.as2.MochiServices.__get__childClip()._target == undefined)) { mochi.as2.MochiServices.disconnect(); mochi.as2.MochiServices.connect(mochi.as2.MochiServices.__get__id(), options.clip); } delete options.clip; if (options.name != null) { if (typeof(options.name) == "object") { if (options.name.text != undefined) { options.name = options.name.text; } } } if (options.score != null) { if (options.score instanceof TextField) { if (options.score.text != undefined) { options.score = options.score.text; } } else if (options.score instanceof mochi.as2.MochiDigits) { options.score = options.score.value; } var _local1 = Number(options.score); if (isNaN(_local1)) { trace(("ERROR: Submitted score '" + options.score) + "' will be rejected, score is 'Not a Number'"); } else if ((_local1 == Number.NEGATIVE_INFINITY) || (_local1 == Number.POSITIVE_INFINITY)) { trace(("ERROR: Submitted score '" + options.score) + "' will be rejected, score is an infinite"); } else { if (Math.floor(_local1) != _local1) { trace(("WARNING: Submitted score '" + options.score) + "' will be truncated"); } options.score = _local1; } } if (options.onDisplay != null) { options.onDisplay(); } else { mochi.as2.MochiServices.__get__clip().stop(); } if (options.onClose != null) { onClose = options.onClose; } else { onClose = function () { mochi.as2.MochiServices.__get__clip().stop(); }; } if (options.onError != null) { onError = options.onError; } else { onError = onClose; } if (options.boardID == null) { if (boardID != null) { options.boardID = boardID; } } trace("[MochiScores] NOTE: Security Sandbox Violation errors below are normal"); mochi.as2.MochiServices.send("scores_showLeaderboard", {options:options}, null, doClose); } static function closeLeaderboard() { mochi.as2.MochiServices.send("scores_closeLeaderboard"); } static function getPlayerInfo(callbackObj, callbackMethod) { mochi.as2.MochiServices.send("scores_getPlayerInfo", null, callbackObj, callbackMethod); } static function submit(score, name, callbackObj, callbackMethod) { score = Number(score); if (isNaN(score)) { trace(("ERROR: Submitted score '" + String(score)) + "' will be rejected, score is 'Not a Number'"); } else if ((score == Number.NEGATIVE_INFINITY) || (score == Number.POSITIVE_INFINITY)) { trace(("ERROR: Submitted score '" + String(score)) + "' will be rejected, score is an infinite"); } else { if (Math.floor(score) != score) { trace(("WARNING: Submitted score '" + String(score)) + "' will be truncated"); } score = Number(score); } mochi.as2.MochiServices.send("scores_submit", {score:score, name:name}, callbackObj, callbackMethod); } static function requestList(callbackObj, callbackMethod) { mochi.as2.MochiServices.send("scores_requestList", null, callbackObj, callbackMethod); } static function scoresArrayToObjects(scores) { var _local5 = {}; var _local1; var _local4; var _local2; var _local6; for (var _local8 in scores) { if (typeof(scores[_local8]) == "object") { if ((scores[_local8].cols != null) && (scores[_local8].rows != null)) { _local5[_local8] = []; _local2 = scores[_local8]; _local4 = 0; while (_local4 < _local2.rows.length) { _local6 = {}; _local1 = 0; while (_local1 < _local2.cols.length) { _local6[_local2.cols[_local1]] = _local2.rows[_local4][_local1]; _local1++; } _local5[_local8].push(_local6); _local4++; } } else { _local5[_local8] = {}; for (var _local7 in scores[_local8]) { _local5[_local8][_local7] = scores[_local8][_local7]; } } } else { _local5[_local8] = scores[_local8]; } } return(_local5); } static function doClose(args) { if (args.error == true) { if (args.errorCode == undefined) { args.errorCode = "IOError"; } onError.apply(null, [args.errorCode]); } else { onClose.apply(); } } }
Symbol 435 MovieClip [__Packages.mochi.as2.MochiDigits] Frame 0
class mochi.as2.MochiDigits { var Encoder, Fragment, Sibling; function MochiDigits (digit, index) { Encoder = 0; setValue(digit, index); } function get value() { return(Number(toString())); } function set value(v) { setValue(v); } function addValue(v) { value = value + v; } function setValue(digit, index) { var _local3 = digit.toString(); if ((index == undefined) || (isNaN(index))) { index = 0; } Fragment = _local3.charCodeAt(index++) ^ Encoder; if (index < _local3.length) { Sibling = new mochi.as2.MochiDigits(digit, index); } else { Sibling = null; } reencode(); } function reencode() { var _local2 = int(2147483647 * Math.random()); Fragment = Fragment ^ (_local2 ^ Encoder); Encoder = _local2; } function toString() { var _local2 = String.fromCharCode(Fragment ^ Encoder); return(((Sibling != null) ? (_local2.concat(Sibling.toString())) : (_local2))); } }
Symbol 85 MovieClip Frame 1
function onEnterFrame() { if (_root.Paused) { _parent.removeMovieClip(); } }
Symbol 85 MovieClip Frame 19
_parent.removeMovieClip();
Symbol 86 MovieClip [smoke] Frame 1
function onEnterFrame() { if (!_root.Paused) { play(); smk.play(); _visible = true; } else { _visible = false; smk.stop(); stop(); } if (((_x > 1600) || (_x < -800)) || (!_root.Playing)) { removeMovieClip(this); } }
Instance of Symbol 85 MovieClip "smk" in Symbol 86 MovieClip [smoke] Frame 1
onClipEvent (enterFrame) { _alpha = (_alpha - 5); }
Symbol 86 MovieClip [smoke] Frame 17
removeMovieClip(this);
Symbol 116 MovieClip [pScreen] Frame 1
function onEnterFrame() { se.text = _root.revS.getVolume(); mu.text = _root.bgm.getVolume(); }
Instance of Symbol 97 MovieClip in Symbol 116 MovieClip [pScreen] Frame 1
on (press) { _root._quality = "LOW"; }
Instance of Symbol 97 MovieClip in Symbol 116 MovieClip [pScreen] Frame 1
on (press) { _root._quality = "MEDIUM"; }
Instance of Symbol 97 MovieClip in Symbol 116 MovieClip [pScreen] Frame 1
on (press) { _root._quality = "HIGH"; }
Instance of Symbol 107 MovieClip in Symbol 116 MovieClip [pScreen] Frame 1
on (press) { if (_root.SE < 100) { _root.SE = _root.SE + 10; } }
Instance of Symbol 107 MovieClip in Symbol 116 MovieClip [pScreen] Frame 1
on (press) { if (_root.SE > 0) { _root.SE = _root.SE - 10; } }
Instance of Symbol 114 MovieClip in Symbol 116 MovieClip [pScreen] Frame 1
onClipEvent (load) { stop(); } onClipEvent (enterFrame) { if (_root.cHide) { gotoAndStop (2); } else { gotoAndStop (1); } } on (press) { if (_root.cHide) { _root.cHide = false; } else { _root.cHide = true; } }
Instance of Symbol 107 MovieClip in Symbol 116 MovieClip [pScreen] Frame 1
on (press) { if (_root.MU < 100) { _root.MU = _root.MU + 10; } }
Instance of Symbol 107 MovieClip in Symbol 116 MovieClip [pScreen] Frame 1
on (press) { if (_root.MU > 0) { _root.MU = _root.MU - 10; } }
Symbol 119 MovieClip Frame 4
if (_parent._xscale == (-_parent.Scale)) { _parent.xSpeed = 8; } if (_parent._xscale == _parent.Scale) { _parent.xSpeed = -8; }
Symbol 119 MovieClip Frame 12
if (_root.Cam.hitTest(this)) { _root.attachMovie("smoke", "s", _root.smkCount, {_x:_parent._x, _y:_parent._y}); _root.smkCount++; } _parent.xSpeed = 0;
Symbol 124 MovieClip Frame 1
function onEnterFrame() { if (!_root.Paused) { play(); } else { stop(); } }
Symbol 124 MovieClip Frame 51
_parent.State = "fall";
Symbol 125 MovieClip [fridgeS] Frame 1
function onEnterFrame() { if (((_x > 1600) || (_x < -800)) || (!_root.Playing)) { removeMovieClip(this); } if (!_root.Paused) { _visible = true; if (State == "warning") { if (side == 0) { grav = -100; _x = (_root.Cam._x + 350); } if (side == 1) { grav = 100; _x = (_root.Cam._x - 350); } gotoAndStop(State); if (((!_root.Cam._x) == 640) && ((!_root.Cam._x) == 180)) { _x = (_x + char.xSpeed); } } if (State != "warning") { if (((char.hitTest(this) && (!char.invincible)) && (char.State != "deathS")) && (char.State != "deathF")) { char.State = "deathF"; } gotoAndStop ("side"); _x = (_x + grav); } } } var char = _root.Char; var side = random(2); var grav = 0; var dY = new Array(450, 250); var num = random(dY.length); _y = ((dY[num] + random(10)) - 5); var State = "warning"; var gHit = false; var Scale = _xscale; var hit = false; gotoAndStop ("warning"); if (side == 0) { grav = -100; _x = (_root.Cam._x + 350); } if (side == 1) { grav = 100; _x = (_root.Cam._x - 350); }
Symbol 128 MovieClip [a250] Frame 1
function onEnterFrame() { if (!_root.Paused) { play(); } else { stop(); } if (((_x > 1600) || (_x < -800)) || (!_root.Playing)) { removeMovieClip(this); } }
Symbol 128 MovieClip [a250] Frame 27
removeMovieClip(this);
Symbol 129 MovieClip Frame 1
play(); if (!_root.Paused) { _root.fhgS.start(0, 0); }
Symbol 129 MovieClip Frame 9
_parent.State = "switchviews";
Symbol 130 MovieClip Frame 16
_root.attachMovie("smoke", "sd" + random(1000), _root.getNextHighestDepth(), {_x:_parent._x, _y:_parent._y}); _parent.State = "normal";
Symbol 131 MovieClip Frame 1
function onEnterFrame() { if (!_root.Paused) { play(); } else { stop(); } } if (_parent.life <= 0) { gotoAndPlay ("death"); } if (_parent._xscale == _parent.Scale) { _parent.xSpeed = -3; } if (_parent._xscale == (-_parent.Scale)) { _parent.xSpeed = 3; } play();
Symbol 131 MovieClip Frame 3
play();
Symbol 131 MovieClip Frame 6
_parent.State = "normal"; _parent.hit = false;
Symbol 131 MovieClip Frame 7
_parent.State = "normal"; _parent.hit = false;
Symbol 131 MovieClip Frame 8
if (_parent.life > 0) { _parent.State = "normal"; } else { _name = ""; play(); } if (!_root.Paused) { _root.fdS.start(0, 0); }
Symbol 131 MovieClip Frame 20
if (!_root.Paused) { _root.Score = _root.Score + 250; _root.attachMovie("a250", "a250" + _root.fCount, _root.fCount, {_x:_parent._x, _y:_parent._y}); _root.fCount++; }
Symbol 131 MovieClip Frame 21
_root.moo.start(0, 0);
Symbol 131 MovieClip Frame 59
_parent.removeMovieClip();
Symbol 132 MovieClip [fridge] Frame 1
function onEnterFrame() { if (_root.Cam.hitTest(this)) { _visible = true; } else { _visible = false; } if ((_y > (Stage.height + 20)) || (!_root.Playing)) { removeMovieClip(this); } if (!_root.Paused) { if (State == "warning") { gotoAndStop(State); grav = 140; } if (((State == "fall") && (char.hitTest(_x, _y, true) || (this.hitTest(char)))) && (!char.invincible)) { char.State = "deathF"; } if ((((life > 0) && (!char.invincible)) && (char.State != "deathS")) && (char.State != "deathF")) { if (char.hitTest(_x + 45, _y - 15, true)) { char.xSpeed = -5; char._x = char._x + 5; } if (char.hitTest(_x - 45, _y - 15, true)) { char.xSpeed = 5; char._x = char._x - 5; } if ((char.hitTest(_x, _y - _height, true) || (char.hitTest(_x + 20, _y - _height, true))) || (char.hitTest(_x - 20, _y - _height, true))) { if (char._x > _x) { char.xSpeed = 10; } if (char._x < _x) { char.xSpeed = -10; } char.grav = -10; } } if (State != "warning") { _y = (_y + grav); _x = (_x + xSpeed); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { if (State == "fall") { State = "getUp"; } _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 32, true)) { gHit = true; } else { gHit = false; } if (((State != "death") && (State != "ad")) && (life > 0)) { if (char._x < _x) { _xscale = (-Scale); } if (char._x > _x) { _xscale = Scale; } } } if ((life < 0) && (life >= -20)) { hit = false; life = -30; State = "death"; } if (State == "fall") { gotoAndStop(State); } if (State == "getUp") { gotoAndStop(State); } if (State == "switchviews") { gotoAndStop(State); } if (State == "normal") { if (hit) { gotoAndStop ("hit"); if (xSpeed > 0) { xSpeed--; } if (xSpeed < 0) { xSpeed++; } } else { gotoAndStop ("walk"); } } if (State == "death") { hit = false; xSpeed = 0; gotoAndStop ("hit"); hitt.gotoAndPlay("death"); State = "ad"; } if (State == "ad") { grav = (xSpeed = 0); } } } _y = -74; var ground = _root.ground; var char = _root.Char; var grav = 0; var gravity = 2; var xSpeed = 0; var life = 10; var State = "warning"; var gHit = false; var Scale = _xscale; var hit = false;
Symbol 134 MovieClip [revBull] Frame 1
function onEnterFrame() { if (!_root.Paused) { if (_rotation > 180) { _y = (_y + (Speed * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (Speed * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (Speed * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (Speed * Math.sin((Math.PI/180) * _rotation))); } if ((ground.hitTest(_x, _y - 1, true) || (walls.hitTest(_x + 3, _y - 5, true))) || (walls.hitTest(_x - 3, _y - 5, true))) { removeMovieClip(this); } if (_y <= -250) { removeMovieClip(this); } var _local3 = 1100; while (_local3 < 1500) { if (_root["fridge" + _local3].hitTest(this) && (_root["fridge" + _local3].State == "normal")) { _root["fridge" + _local3].life = _root["fridge" + _local3].life - 1; _root["fridge" + _local3].hit = true; removeMovieClip(this); _root.hitS.start(0, 0); } _local3++; } } if (((_x > 1600) || (_x < -800)) || (!_root.Playing)) { removeMovieClip(this); } } var ground = _root.ground; var walls = _root.walls; var Speed = 55; _x = _root.Char._x; _rotation = ((_root.Add._rotation + 90) + (random(6) - 3));
Symbol 139 MovieClip [shgBull] Frame 1
function onEnterFrame() { if (!_root.Paused) { if (_rotation > 180) { _y = (_y + (Speed * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (Speed * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (Speed * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (Speed * Math.sin((Math.PI/180) * _rotation))); } if ((ground.hitTest(_x, _y - 1, true) || (walls.hitTest(_x + 3, _y - 5, true))) || (walls.hitTest(_x - 3, _y - 5, true))) { removeMovieClip(this); } if (_y <= -250) { removeMovieClip(this); } var _local3 = 1100; while (_local3 < 1500) { if (_root["fridge" + _local3].hitTest(this)) { _root["fridge" + _local3].life = _root["fridge" + _local3].life - 5; _root["fridge" + _local3].hit = true; removeMovieClip(this); _root.hitS.start(0, 0); } _local3++; } } if (((_x > 1600) || (_x < -800)) || (!_root.Playing)) { removeMovieClip(this); } } var ground = _root.ground; var walls = _root.walls; var Speed = 55; _x = _root.Char._x; _rotation = ((_root.Add._rotation + 90) + (random(6) - 3));
Symbol 139 MovieClip [shgBull] Frame 4
stop();
Symbol 141 MovieClip [smgBull] Frame 1
function onEnterFrame() { if (!_root.Paused) { if (_rotation > 180) { _y = (_y + (Speed * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (Speed * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (Speed * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (Speed * Math.sin((Math.PI/180) * _rotation))); } if ((ground.hitTest(_x, _y - 1, true) || (walls.hitTest(_x + 3, _y - 5, true))) || (walls.hitTest(_x - 3, _y - 5, true))) { removeMovieClip(this); } if (_y <= -250) { removeMovieClip(this); } var _local3 = 1100; while (_local3 < 1500) { if (_root["fridge" + _local3].hitTest(this)) { _root["fridge" + _local3].hit = true; _root["fridge" + _local3].life = _root["fridge" + _local3].life - 0.75; removeMovieClip(this); _root.hitS.start(0, 0); } _local3++; } } if (((_x > 1600) || (_x < -800)) || (!_root.Playing)) { removeMovieClip(this); } } var ground = _root.ground; var walls = _root.walls; var Speed = 55; _x = _root.Char._x; _rotation = ((_root.Add._rotation + 90) + (random(6) - 3));
Symbol 143 MovieClip [xm8Bull] Frame 1
function onEnterFrame() { if (!_root.Paused) { if (_rotation > 180) { _y = (_y + (Speed * Math.cos((Math.PI/180) * _rotation))); _x = (_x - (Speed * Math.sin((Math.PI/180) * _rotation))); } else { _y = (_y - (Speed * Math.cos((Math.PI/180) * _rotation))); _x = (_x + (Speed * Math.sin((Math.PI/180) * _rotation))); } if ((ground.hitTest(_x, _y - 1, true) || (walls.hitTest(_x + 3, _y - 5, true))) || (walls.hitTest(_x - 3, _y - 5, true))) { removeMovieClip(this); } if (_y <= -250) { removeMovieClip(this); } var _local3 = 1100; while (_local3 < 1500) { if (_root["fridge" + _local3].hitTest(this)) { _root["fridge" + _local3].life = _root["fridge" + _local3].life - 2; _root["fridge" + _local3].hit = true; removeMovieClip(this); _root.hitS.start(0, 0); } _local3++; } } if (((_x > 1600) || (_x < -800)) || (!_root.Playing)) { removeMovieClip(this); } } var ground = _root.ground; var walls = _root.walls; var Speed = 55; _x = _root.Char._x; _rotation = ((_root.Add._rotation + 90) + (random(2) - 1));
Symbol 151 MovieClip [pu0] Frame 1
function onEnterFrame() { if (_currentframe < 3) { _y = (_y + grav); grav = grav + gravity; if (!ground.hitTest(_x, _y + 3, true)) { if (grav > 5) { grav = -1; } gotoAndStop (1); } while (ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y - gravity); } if (ground.hitTest(_x, _y + 3, true)) { gotoAndStop (2); } } if (_root.Char.hitTest(this) && (_currentframe == 2)) { removeMovieClip(this); _root.Char.inf = true; gotoAndPlay (3); } if ((_y > (Stage.height + 50)) || (!_root.Playing)) { removeMovieClip(this); } } var grav = 0; var gravity = 0.5; var ground = _root.ground;
Symbol 151 MovieClip [pu0] Frame 10
removeMovieClip(this);
Symbol 161 MovieClip [pu1] Frame 1
function onEnterFrame() { if (_currentframe < 3) { _y = (_y + grav); grav = grav + gravity; if (!ground.hitTest(_x, _y + 3, true)) { if (grav > 5) { grav = -1; } gotoAndStop (1); } while (ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y - gravity); } if (ground.hitTest(_x, _y + 3, true)) { gotoAndStop (2); } } if (_root.Char.hitTest(this) && (_currentframe == 2)) { removeMovieClip(this); _root.Char.invincible = true; gotoAndPlay (3); } if ((_y > (Stage.height + 20)) || (!_root.Playing)) { removeMovieClip(this); } } var grav = 0; var gravity = 0.5; var ground = _root.ground;
Symbol 161 MovieClip [pu1] Frame 10
removeMovieClip(this);
Symbol 163 MovieClip Frame 1
onPress = function () { _root.getURL("http://www.newgrounds.com/", "_blank"); };
Symbol 182 MovieClip Frame 2
_root.stepS.start(0, 0);
Symbol 187 Button
on (press) { gotoAndStop ("help"); }
Symbol 190 Button
on (press) { if (!credits._visible) { credits._visible = true; } }
Symbol 193 Button
on (press) { var o = {n:[11, 7, 13, 5, 0, 15, 6, 11, 12, 9, 10, 4, 6, 7, 7, 2], f:function (i, s) { if (s.length == 16) { return(s); } return(this.f(i + 1, s + this.n[i].toString(16))); }}; var boardID = o.f(0, ""); mochi.as2.MochiScores.showLeaderboard({boardID:boardID}); }
Symbol 196 Button
on (press) { _root.getURL("http://www.stickpage.com/", "_blank"); }
Symbol 206 Button
on (press) { gotoAndStop ("help"); }
Symbol 209 Button
on (press) { gotoAndStop ("hud"); }
Symbol 212 Button
on (press) { gotoAndStop ("con"); }
Symbol 215 Button
on (press) { gotoAndStop ("pu"); }
Symbol 218 Button
on (press) { gotoAndStop ("ln"); }
Symbol 219 Button
on (press) { gotoAndStop ("gr"); }
Symbol 302 MovieClip Frame 1
function onEnterFrame() { gotoAndStop(_root.Face); } _root.mFace = 35; gotoAndStop(_root.Face);
Symbol 316 Button
on (press) { gotoAndStop ("game"); }
Symbol 341 MovieClip Frame 1
_name = "rev"; stop();
Symbol 341 MovieClip Frame 2
flashh.gotoAndStop(random(5) + 1); _root.Char.light.play(); _root.revS.start(0, 0);
Symbol 346 MovieClip Frame 1
_name = "smg"; stop();
Symbol 346 MovieClip Frame 2
flashh.gotoAndStop(random(5) + 1); _root.Char.light.play(); _root.smgS.start(0, 0);
Symbol 351 MovieClip Frame 1
_name = "shg"; stop();
Symbol 351 MovieClip Frame 2
flashh.gotoAndStop(random(5) + 1); _root.Char.light.play(); _root.shgS.start(0, 0);
Symbol 351 MovieClip Frame 9
_root.shotguncock.start(0, 0);
Symbol 355 MovieClip Frame 1
_name = "xm8"; stop();
Symbol 355 MovieClip Frame 2
flashh.gotoAndStop(random(5) + 1); _root.Char.light.play(); _root.xm8S.start(0, 0);
Symbol 359 MovieClip Frame 1
stop();
Symbol 361 MovieClip Frame 1
function onEnterFrame() { if (_root.Char.invincible) { _visible = true; } else { _visible = false; } } _visible = false;
Symbol 365 MovieClip Frame 1
function onEnterFrame() { if (_root.Char.inf) { _visible = true; } else { _visible = false; } } _visible = false;
Symbol 373 MovieClip Frame 2
_root.stepS.start(0, 0);
Symbol 381 MovieClip Frame 6
_root.stepS.start(0, 0);
Symbol 388 MovieClip Frame 1
function onEnterFrame() { if (!_root.Paused) { if (_currentframe != 42) { play(); } } else { stop(); } }
Symbol 388 MovieClip Frame 42
stop();
Symbol 389 MovieClip Frame 60
stop(); _root.Playing = false;
Symbol 390 MovieClip Frame 1
function onEnterFrame() { _root.ps._x = _x; if (kDown(pKey) && (!pHeld)) { if (_root.Paused) { _root.Paused = false; } else { _root.Paused = true; } pHeld = true; } if (!kDown(pKey)) { pHeld = false; } if ((_y > (Stage.height + 20)) || (!_root.Playing)) { _root.Playing = false; removeMovieClip(this); } if (!_root.Paused) { _x = (_x + xSpeed); _y = (_y + grav); grav = grav + gravity; if (ground.hitTest(_x, _y + 3, true)) { gHit = true; } else { gHit = false; } while (ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y - gravity); } if (State != "deathF") { if (walls.hitTest(_x + cX, _y - cY, true)) { xSpeed = -2; } else if (walls.hitTest(_x - cX, _y - cY, true)) { xSpeed = 2; } if ((arm._rotation < -90) || (arm._rotation > 90)) { Dir = "left"; } else if ((arm._rotation >= -90) || (arm._rotation <= 90)) { Dir = "right"; } if (dC) { if (xSpeed > 0) { xSpeed = xSpeed - xDc; } else if (xSpeed < 0) { xSpeed = xSpeed + xDc; } } if (gHit) { if ((((xSpeed == 0) && (!kDown(rKey))) && (!kDown(lKey))) || (((xSpeed == 0) && (kDown(rKey))) && (kDown(lKey)))) { gotoAndStop("idle" + Dir); } if (xSpeed != 0) { if ((Dir == "right") && (xSpeed >= 0)) { gotoAndStop("run" + Dir); } if ((Dir == "right") && (xSpeed < 0)) { gotoAndStop("back" + Dir); } if ((Dir == "left") && (xSpeed >= 0)) { gotoAndStop("back" + Dir); } if ((Dir == "left") && (xSpeed < 0)) { gotoAndStop("run" + Dir); } } } else { gotoAndStop("jump" + Dir); } } if (State == "deathF") { _name = "fkdkd"; _y = 430; _x = _root.Cam._x; gotoAndStop ("deathF"); xSpeed = 0; grav = 0; _root.Cam.ds._visible = true; } if (State == "deathS") { _name = "fkdkd"; _y = 430; _x = _root.Cam._x; gotoAndStop ("deathS"); xSpeed = 0; grav = 0; _root.Cam.ds._visible = true; } if (State == "normal") { if (kDown(rKey) && (!kDown(lKey))) { dC = false; if (xSpeed < mSpeed) { xSpeed = xSpeed + xAc; } } else if (kDown(lKey) && (!kDown(rKey))) { dC = false; if (xSpeed > (-mSpeed)) { xSpeed = xSpeed - xAc; } } else { dC = true; } if (kDown(rKey) && (kDown(lKey))) { dC = true; } if (kDown(jKey) && (gHit)) { grav = jHeight; } if (rofCount > 0) { rofCount--; } A._x = _x; A._y = _y - 92.2; A._rotation = Math.atan2(_root._ymouse - A._y, _root._xmouse - A._x) / (Math.PI/180); arm._rotation = A._rotation; arm.gotoAndStop(Gun + Dir); if (Gun == "smg") { if (inf) { rOf = 1; } else { rOf = 2; } } if (Gun == "shg") { if (inf) { rOf = 15; } else { rOf = 30; } } if (Gun == "xm8") { rOf = 0; } onMouseDown = function () { if (!sHeld) { if ((Gun == "rev") && (arm.rev._currentframe == 1)) { arm.rev.gotoAndPlay("shoot"); _root.attachMovie("revBull", "rvb" + _root.bCount, _root.bCount, {_x:_x, _y:_y - 74}); _root.bCount++; } if (rofCount == 0) { if ((Gun == "shg") && ((shgA > 0) || (inf))) { _root.attachMovie("shgBull", "shgb" + _root.bCount, _root.bCount, {_x:_x, _y:_y - 70}); _root.bCount++; arm.shg.gotoAndPlay("shoot"); rofCount = rOf; } } } sHeld = true; shooting = true; }; if ((rofCount == 0) && (shooting)) { if (((Gun == "smg") && (arm.smg._currentframe == 1)) && ((smgA > 0) || (inf))) { _root.attachMovie("smgBull", "sgb" + _root.bCount, _root.bCount, {_x:_x, _y:_y - 70}); _root.bCount++; arm.smg.gotoAndPlay("shoot"); rofCount = rOf; } if (((Gun == "xm8") && (arm.xm8._currentframe == 1)) && ((xm8A > 0) || (inf))) { _root.attachMovie("xm8Bull", "xb" + _root.bCount, _root.bCount, {_x:_x, _y:_y - 70}); _root.bCount++; arm.xm8.gotoAndPlay("shoot"); rofCount = rOf; } } onMouseUp = function () { sHeld = false; shooting = false; }; if (kDown(swgKey) && (!swHeld)) { cWeapon++; swHeld = true; } if (!kDown(swgKey)) { swHeld = false; } if (kDown(revKey)) { Gun = "rev"; } if (kDown(smgKey) && (_root.weapons >= 2)) { cWeapon = 2; Gun = "smg"; } if (kDown(shgKey) && (_root.weapons >= 3)) { cWeapon = 3; Gun = "shg"; } if (kDown(xm8Key) && (_root.weapons >= 4)) { cWeapon = 4; Gun = "xm8"; } if (invincible) { _alpha = 75; } else { _alpha = 100; } if (inf) { jHeight = -30; } else { jHeight = -25; } } } } function onMouseDown() { } function onMouseUp() { } var ground = _root.ground; var walls = _root.walls; var arm = this.arm; var A = _root.createEmptyMovieClip("Add", 5000); swapDepths(5001); var kDown = Key.isDown; var rKey = 68; var lKey = 65; var jKey = 87; var shKey = 1; var pKey = 32; var grav = 0; var gravity = 2; var jHeight = -25; var xSpeed = 15; var xAc = 2; var xDc = 1; var mSpeed = 12; var Gun = "rev"; var rOf; var rofCount = 0; var revKey = 49; var smgKey = 50; var shgKey = 51; var xm8Key = 52; var swgKey = 4; var smgA = 4; var shgA = 4; var xm8A = 4; var cWeapon = 1; var State = "normal"; var Dir = "right"; var xScale = _xscale; var gHit = false; var swHeld = false; var sHeld = false; var shooting = false; var gHeld = false; var pHeld = false; var invincible = false; var inf = false; var dC = false; var cX = (_width / 2); var cY = 15;
Instance of Symbol 363 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_parent._xscale == _parent.Scale) { _name = "cHitR"; } if (_parent._xscale == (-_parent.Scale)) { _name = "cHitL"; } }
Instance of Symbol 363 MovieClip in Symbol 390 MovieClip Frame 1
onClipEvent (enterFrame) { if (_parent._xscale == _parent.Scale) { _name = "cHitL"; } if (_parent._xscale == (-_parent.Scale)) { _name = "cHitR"; } }
Symbol 395 Button
on (press) { var o = {n:[11, 7, 13, 5, 0, 15, 6, 11, 12, 9, 10, 4, 6, 7, 7, 2], f:function (i, s) { if (s.length == 16) { return(s); } return(this.f(i + 1, s + this.n[i].toString(16))); }}; var boardID = o.f(0, ""); mochi.as2.MochiScores.showLeaderboard({boardID:boardID}); }
Symbol 398 Button
on (press) { gotoAndStop ("help"); }
Symbol 401 Button
on (press) { gotoAndStop ("menu"); }
Symbol 426 MovieClip Frame 11
if (_parent._xscale == _parent.Scale) { _parent._x = _parent._x - 15; } if (_parent._xscale == (-_parent.Scale)) { _parent._x = _parent._x + 15; } flashh.gotoAndStop(random(5) + 1);
Symbol 426 MovieClip Frame 12
if (_parent._xscale == _parent.Scale) { _parent._x = _parent._x - 10; } if (_parent._xscale == (-_parent.Scale)) { _parent._x = _parent._x + 10; }
Symbol 426 MovieClip Frame 13
if (_parent._xscale == _parent.Scale) { _parent._x = _parent._x - 5; } if (_parent._xscale == (-_parent.Scale)) { _parent._x = _parent._x + 5; }
Symbol 426 MovieClip Frame 14
if (_parent._xscale == _parent.Scale) { _parent._x = _parent._x - 1; } if (_parent._xscale == (-_parent.Scale)) { _parent._x = _parent._x + 1; }
Symbol 426 MovieClip Frame 20
if (!Key.isDown(_parent.shKey)) { _parent.State = "normal"; } else { gotoAndPlay (1); }

Library Items

Symbol 1 Sound [xm8_sound]
Symbol 2 Sound [smg_sound]
Symbol 3 Sound [shotguncock]
Symbol 4 Sound [shg_sound]
Symbol 5 Sound [rev_sound]
Symbol 6 Sound [moo]
Symbol 7 Sound [fd_sound]
Symbol 8 Sound [steps_sound]
Symbol 9 Sound [fhg_sound]
Symbol 10 Sound [hitf_sound]
Symbol 11 Sound [bell]
Symbol 12 Sound [bgm]
Symbol 13 GraphicUsed by:17
Symbol 14 FontUsed by:15 16
Symbol 15 EditableTextUses:14Used by:17
Symbol 16 TextUses:14Used by:17
Symbol 17 MovieClip [fps]Uses:13 15 16Used by:51
Symbol 18 GraphicUsed by:51
Symbol 19 GraphicUsed by:51
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:24
Symbol 22 GraphicUsed by:23
Symbol 23 MovieClipUses:22Used by:24
Symbol 24 MovieClipUses:21 23Used by:51
Symbol 25 GraphicUsed by:51
Symbol 26 FontUsed by:27
Symbol 27 EditableTextUses:26Used by:51
Symbol 28 GraphicUsed by:51
Symbol 29 GraphicUsed by:33
Symbol 30 GraphicUsed by:33 63  Timeline
Symbol 31 GraphicUsed by:33
Symbol 32 ShapeTweeningUsed by:33
Symbol 33 MovieClipUses:29 30 31 32Used by:51
Symbol 34 GraphicUsed by:36
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:34 35Used by:51
Symbol 37 GraphicUsed by:39
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:37 38Used by:51
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:51
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:51
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:44Used by:51
Symbol 46 GraphicUsed by:48
Symbol 47 GraphicUsed by:48
Symbol 48 ButtonUses:46 47Used by:51
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClipUses:49Used by:51
Symbol 51 MovieClip [cam]Uses:18 17 19 24 25 27 28 33 36 39 41 43 45 48 50Used by:Timeline
Symbol 52 GraphicUsed by:Timeline
Symbol 53 GraphicUsed by:57
Symbol 54 GraphicUsed by:55 57
Symbol 55 MovieClipUses:54Used by:57
Symbol 56 GraphicUsed by:57
Symbol 57 ButtonUses:53 55 56 54Used by:Timeline
Symbol 58 GraphicUsed by:62
Symbol 59 GraphicUsed by:60 62
Symbol 60 MovieClipUses:59Used by:62
Symbol 61 GraphicUsed by:62
Symbol 62 ButtonUses:58 60 61 59Used by:Timeline
Symbol 63 MovieClipUses:30Used by:71
Symbol 64 GraphicUsed by:71
Symbol 65 BitmapUsed by:66
Symbol 66 GraphicUses:65Used by:67
Symbol 67 MovieClipUses:66Used by:71 116 165  Timeline
Symbol 68 GraphicUsed by:70
Symbol 69 GraphicUsed by:70
Symbol 70 ButtonUses:68 69Used by:71
Symbol 71 MovieClipUses:63 64 67 70Used by:Timeline
Symbol 432 MovieClip [__Packages.NewgroundsAPI]
Symbol 433 MovieClip [__Packages.mochi.as2.MochiServices]
Symbol 434 MovieClip [__Packages.mochi.as2.MochiScores]
Symbol 435 MovieClip [__Packages.mochi.as2.MochiDigits]
Symbol 72 GraphicUsed by:85
Symbol 73 GraphicUsed by:85
Symbol 74 GraphicUsed by:85
Symbol 75 GraphicUsed by:85
Symbol 76 GraphicUsed by:85
Symbol 77 GraphicUsed by:85
Symbol 78 GraphicUsed by:85
Symbol 79 GraphicUsed by:85
Symbol 80 GraphicUsed by:85
Symbol 81 GraphicUsed by:85
Symbol 82 GraphicUsed by:85
Symbol 83 GraphicUsed by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:72 73 74 75 76 77 78 79 80 81 82 83 84Used by:86  Timeline
Symbol 86 MovieClip [smoke]Uses:85Used by:Timeline
Symbol 87 GraphicUsed by:116
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:116
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:116  Timeline
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:116
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:116  Timeline
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:96Used by:116  Timeline
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:116  Timeline
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:116  Timeline
Symbol 102 GraphicUsed by:103
Symbol 103 MovieClipUses:102Used by:116  Timeline
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClipUses:104Used by:116
Symbol 106 GraphicUsed by:107
Symbol 107 MovieClipUses:106Used by:116  Timeline
Symbol 108 FontUsed by:109 115
Symbol 109 EditableTextUses:108Used by:116
Symbol 110 GraphicUsed by:111
Symbol 111 MovieClipUses:110Used by:116
Symbol 112 GraphicUsed by:114
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:112 113Used by:116
Symbol 115 EditableTextUses:108Used by:116
Symbol 116 MovieClip [pScreen]Uses:87 89 91 93 95 97 99 101 103 105 107 109 111 114 115 67Used by:Timeline
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:119 130 131  Timeline
Symbol 119 MovieClipUses:118Used by:125 132
Symbol 120 GraphicUsed by:121
Symbol 121 MovieClipUses:120Used by:125 129 130 132
Symbol 122 GraphicUsed by:123
Symbol 123 MovieClipUses:122Used by:124
Symbol 124 MovieClipUses:123Used by:125 132  Timeline
Symbol 125 MovieClip [fridgeS]Uses:119 121 124Used by:Timeline
Symbol 126 GraphicUsed by:127
Symbol 127 MovieClipUses:126Used by:128
Symbol 128 MovieClip [a250]Uses:127Used by:Timeline
Symbol 129 MovieClipUses:121Used by:132  Timeline
Symbol 130 MovieClipUses:121 118Used by:132
Symbol 131 MovieClipUses:118Used by:132
Symbol 132 MovieClip [fridge]Uses:119 121 129 130 131 124Used by:Timeline
Symbol 133 GraphicUsed by:134
Symbol 134 MovieClip [revBull]Uses:133Used by:Timeline
Symbol 135 GraphicUsed by:139
Symbol 136 GraphicUsed by:139
Symbol 137 GraphicUsed by:139
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClip [shgBull]Uses:135 136 137 138Used by:Timeline
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClip [smgBull]Uses:140Used by:Timeline
Symbol 142 GraphicUsed by:143
Symbol 143 MovieClip [xm8Bull]Uses:142Used by:Timeline
Symbol 144 GraphicUsed by:151
Symbol 145 GraphicUsed by:151
Symbol 146 GraphicUsed by:151
Symbol 147 GraphicUsed by:151
Symbol 148 GraphicUsed by:151
Symbol 149 GraphicUsed by:151
Symbol 150 GraphicUsed by:151
Symbol 151 MovieClip [pu0]Uses:144 145 146 147 148 149 150Used by:Timeline
Symbol 152 GraphicUsed by:161
Symbol 153 GraphicUsed by:161
Symbol 154 GraphicUsed by:161
Symbol 155 GraphicUsed by:161
Symbol 156 GraphicUsed by:161
Symbol 157 GraphicUsed by:161
Symbol 158 GraphicUsed by:161
Symbol 159 GraphicUsed by:161
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClip [pu1]Uses:152 153 154 155 156 157 158 159 160Used by:Timeline
Symbol 162 GraphicUsed by:163
Symbol 163 MovieClipUses:162Used by:Timeline
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:164 67Used by:Timeline
Symbol 166 GraphicUsed by:182
Symbol 167 GraphicUsed by:168
Symbol 168 MovieClipUses:167Used by:182
Symbol 169 GraphicUsed by:182
Symbol 170 GraphicUsed by:182
Symbol 171 GraphicUsed by:182
Symbol 172 GraphicUsed by:182
Symbol 173 GraphicUsed by:182
Symbol 174 GraphicUsed by:182
Symbol 175 GraphicUsed by:182
Symbol 176 GraphicUsed by:182
Symbol 177 GraphicUsed by:182
Symbol 178 GraphicUsed by:182
Symbol 179 GraphicUsed by:182
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:166 168 169 170 171 172 173 174 175 176 177 178 179 180 181Used by:Timeline
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:392  Timeline
Symbol 185 GraphicUsed by:187 219
Symbol 186 GraphicUsed by:187 219
Symbol 187 ButtonUses:185 186Used by:Timeline
Symbol 188 GraphicUsed by:190
Symbol 189 GraphicUsed by:190
Symbol 190 ButtonUses:188 189Used by:Timeline
Symbol 191 GraphicUsed by:193 395
Symbol 192 GraphicUsed by:193 395
Symbol 193 ButtonUses:191 192Used by:Timeline
Symbol 194 GraphicUsed by:196
Symbol 195 GraphicUsed by:196
Symbol 196 ButtonUses:194 195Used by:Timeline
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClipUses:197Used by:203  Timeline
Symbol 199 GraphicUsed by:203
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:203
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:198 199 201 202Used by:Timeline
Symbol 204 GraphicUsed by:206
Symbol 205 GraphicUsed by:206
Symbol 206 ButtonUses:204 205Used by:Timeline
Symbol 207 GraphicUsed by:209
Symbol 208 GraphicUsed by:209
Symbol 209 ButtonUses:207 208Used by:Timeline
Symbol 210 GraphicUsed by:212
Symbol 211 GraphicUsed by:212
Symbol 212 ButtonUses:210 211Used by:Timeline
Symbol 213 GraphicUsed by:215
Symbol 214 GraphicUsed by:215
Symbol 215 ButtonUses:213 214Used by:Timeline
Symbol 216 GraphicUsed by:218
Symbol 217 GraphicUsed by:218
Symbol 218 ButtonUses:216 217Used by:Timeline
Symbol 219 ButtonUses:185 186Used by:Timeline
Symbol 220 GraphicUsed by:Timeline
Symbol 221 FontUsed by:222 225 228 229 234 235 236 237 238 239 240 241 242 243 246 247 250 251 253 255 256 258 260 261 262 263 311 312 314 317 427
Symbol 222 TextUses:221Used by:Timeline
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:223Used by:Timeline
Symbol 225 TextUses:221Used by:Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 FontUsed by:228 229
Symbol 228 TextUses:221 227Used by:Timeline
Symbol 229 TextUses:221 227Used by:Timeline
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:232
Symbol 232 MovieClipUses:231Used by:Timeline
Symbol 233 GraphicUsed by:Timeline
Symbol 234 TextUses:221Used by:Timeline
Symbol 235 TextUses:221Used by:Timeline
Symbol 236 TextUses:221Used by:Timeline
Symbol 237 TextUses:221Used by:Timeline
Symbol 238 TextUses:221Used by:Timeline
Symbol 239 TextUses:221Used by:Timeline
Symbol 240 TextUses:221Used by:Timeline
Symbol 241 TextUses:221Used by:Timeline
Symbol 242 TextUses:221Used by:Timeline
Symbol 243 TextUses:221Used by:Timeline
Symbol 244 GraphicUsed by:245
Symbol 245 MovieClipUses:244Used by:Timeline
Symbol 246 TextUses:221Used by:Timeline
Symbol 247 TextUses:221Used by:Timeline
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClipUses:248Used by:Timeline
Symbol 250 TextUses:221Used by:Timeline
Symbol 251 TextUses:221Used by:Timeline
Symbol 252 GraphicUsed by:Timeline
Symbol 253 TextUses:221Used by:Timeline
Symbol 254 GraphicUsed by:Timeline
Symbol 255 TextUses:221Used by:Timeline
Symbol 256 TextUses:221Used by:Timeline
Symbol 257 GraphicUsed by:Timeline
Symbol 258 TextUses:221Used by:Timeline
Symbol 259 GraphicUsed by:Timeline
Symbol 260 TextUses:221Used by:Timeline
Symbol 261 TextUses:221Used by:Timeline
Symbol 262 TextUses:221Used by:Timeline
Symbol 263 TextUses:221Used by:Timeline
Symbol 264 GraphicUsed by:265
Symbol 265 MovieClipUses:264Used by:Timeline
Symbol 266 GraphicUsed by:310 331 426
Symbol 267 GraphicUsed by:302
Symbol 268 GraphicUsed by:302
Symbol 269 GraphicUsed by:302
Symbol 270 GraphicUsed by:302
Symbol 271 GraphicUsed by:302
Symbol 272 GraphicUsed by:302
Symbol 273 GraphicUsed by:302
Symbol 274 GraphicUsed by:302
Symbol 275 GraphicUsed by:302
Symbol 276 GraphicUsed by:302
Symbol 277 GraphicUsed by:302
Symbol 278 GraphicUsed by:302
Symbol 279 GraphicUsed by:302
Symbol 280 GraphicUsed by:302
Symbol 281 GraphicUsed by:302
Symbol 282 GraphicUsed by:302
Symbol 283 GraphicUsed by:302
Symbol 284 GraphicUsed by:302
Symbol 285 GraphicUsed by:302
Symbol 286 GraphicUsed by:302
Symbol 287 GraphicUsed by:302
Symbol 288 GraphicUsed by:302
Symbol 289 GraphicUsed by:302
Symbol 290 GraphicUsed by:302
Symbol 291 GraphicUsed by:302
Symbol 292 GraphicUsed by:302
Symbol 293 GraphicUsed by:302
Symbol 294 GraphicUsed by:302
Symbol 295 GraphicUsed by:302
Symbol 296 GraphicUsed by:302
Symbol 297 GraphicUsed by:302
Symbol 298 GraphicUsed by:302
Symbol 299 GraphicUsed by:302
Symbol 300 GraphicUsed by:302
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301Used by:310 331 373 381 385 426  Timeline
Symbol 303 GraphicUsed by:310
Symbol 304 GraphicUsed by:310 331
Symbol 305 GraphicUsed by:310
Symbol 306 GraphicUsed by:310
Symbol 307 GraphicUsed by:310
Symbol 308 GraphicUsed by:310 331
Symbol 309 GraphicUsed by:310
Symbol 310 MovieClipUses:266 302 303 304 305 306 307 308 309Used by:Timeline
Symbol 311 EditableTextUses:221Used by:Timeline
Symbol 312 TextUses:221Used by:Timeline
Symbol 313 GraphicUsed by:316
Symbol 314 TextUses:221Used by:316
Symbol 315 GraphicUsed by:316
Symbol 316 ButtonUses:313 314 315Used by:Timeline
Symbol 317 TextUses:221Used by:Timeline
Symbol 318 GraphicUsed by:320
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:318 319Used by:Timeline
Symbol 321 GraphicUsed by:322
Symbol 322 MovieClipUses:321Used by:Timeline
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:323Used by:Timeline
Symbol 325 GraphicUsed by:327
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:325 326Used by:Timeline
Symbol 328 GraphicUsed by:329
Symbol 329 MovieClipUses:328Used by:Timeline
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:266 302 304 330 308Used by:390  Timeline
Symbol 332 GraphicUsed by:333
Symbol 333 MovieClipUses:332Used by:341  Timeline
Symbol 334 GraphicUsed by:341
Symbol 335 GraphicUsed by:340
Symbol 336 GraphicUsed by:340
Symbol 337 GraphicUsed by:340
Symbol 338 GraphicUsed by:340
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClipUses:335 336 337 338 339Used by:341 346 351 355 426
Symbol 341 MovieClipUses:333 334 340Used by:356
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342Used by:346  Timeline
Symbol 344 GraphicUsed by:346
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:343 344 345 340Used by:356
Symbol 347 GraphicUsed by:348
Symbol 348 MovieClipUses:347Used by:351 426  Timeline
Symbol 349 GraphicUsed by:351
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:348 349 340 350Used by:356
Symbol 352 GraphicUsed by:353
Symbol 353 MovieClipUses:352Used by:355  Timeline
Symbol 354 GraphicUsed by:355
Symbol 355 MovieClipUses:353 354 340Used by:356
Symbol 356 MovieClipUses:341 346 351 355Used by:390
Symbol 357 GraphicUsed by:359
Symbol 358 GraphicUsed by:359
Symbol 359 MovieClipUses:357 358Used by:390
Symbol 360 GraphicUsed by:361
Symbol 361 MovieClipUses:360Used by:390
Symbol 362 GraphicUsed by:363
Symbol 363 MovieClipUses:362Used by:390
Symbol 364 GraphicUsed by:365
Symbol 365 MovieClipUses:364Used by:390
Symbol 366 GraphicUsed by:373
Symbol 367 GraphicUsed by:373
Symbol 368 GraphicUsed by:373
Symbol 369 GraphicUsed by:373
Symbol 370 GraphicUsed by:373
Symbol 371 GraphicUsed by:373
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClipUses:366 302 367 368 369 370 371 372Used by:390  Timeline
Symbol 374 GraphicUsed by:381
Symbol 375 GraphicUsed by:381
Symbol 376 GraphicUsed by:381
Symbol 377 GraphicUsed by:381
Symbol 378 GraphicUsed by:381
Symbol 379 GraphicUsed by:381
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:374 302 375 376 377 378 379 380Used by:390
Symbol 382 GraphicUsed by:385
Symbol 383 GraphicUsed by:385
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClipUses:382 302 383 384Used by:390  Timeline
Symbol 386 GraphicUsed by:387
Symbol 387 MovieClipUses:386Used by:388
Symbol 388 MovieClipUses:387Used by:389
Symbol 389 MovieClipUses:388Used by:390
Symbol 390 MovieClipUses:331 356 359 361 363 365 373 381 385 389Used by:Timeline
Symbol 391 GraphicUsed by:Timeline
Symbol 392 MovieClipUses:184Used by:Timeline
Symbol 393 GraphicUsed by:394
Symbol 394 MovieClipUses:393Used by:Timeline
Symbol 395 ButtonUses:191 192Used by:Timeline
Symbol 396 GraphicUsed by:398
Symbol 397 GraphicUsed by:398
Symbol 398 ButtonUses:396 397Used by:Timeline
Symbol 399 GraphicUsed by:401
Symbol 400 GraphicUsed by:401
Symbol 401 ButtonUses:399 400Used by:Timeline
Symbol 402 GraphicUsed by:Timeline
Symbol 403 GraphicUsed by:Timeline
Symbol 404 GraphicUsed by:Timeline
Symbol 405 GraphicUsed by:426
Symbol 406 GraphicUsed by:426
Symbol 407 GraphicUsed by:426
Symbol 408 GraphicUsed by:426
Symbol 409 GraphicUsed by:426
Symbol 410 GraphicUsed by:426
Symbol 411 GraphicUsed by:426
Symbol 412 GraphicUsed by:426
Symbol 413 GraphicUsed by:426
Symbol 414 GraphicUsed by:426
Symbol 415 GraphicUsed by:426
Symbol 416 GraphicUsed by:426
Symbol 417 GraphicUsed by:426
Symbol 418 GraphicUsed by:426
Symbol 419 GraphicUsed by:426
Symbol 420 GraphicUsed by:426
Symbol 421 GraphicUsed by:426
Symbol 422 GraphicUsed by:426
Symbol 423 GraphicUsed by:426
Symbol 424 GraphicUsed by:426
Symbol 425 GraphicUsed by:426
Symbol 426 MovieClipUses:405 302 266 348 406 407 408 409 410 411 340 412 413 414 415 416 417 418 419 420 421 422 423 424 425Used by:Timeline
Symbol 427 TextUses:221Used by:Timeline
Symbol 428 GraphicUsed by:Timeline
Symbol 429 GraphicUsed by:Timeline
Symbol 430 FontUsed by:431
Symbol 431 TextUses:430Used by:Timeline

Instance Names

"credits"Frame 179Symbol 203 MovieClip
"cface"Frame 185Symbol 311 EditableText
"ground"Frame 186Symbol 322 MovieClip
"Cam"Frame 186Symbol 51 MovieClip [cam]
"walls"Frame 186Symbol 329 MovieClip
"Char"Frame 186Symbol 390 MovieClip
"nwa"Symbol 51 MovieClip [cam] Frame 1Symbol 24 MovieClip
"score"Symbol 51 MovieClip [cam] Frame 1Symbol 27 EditableText
"pub"Symbol 51 MovieClip [cam] Frame 1Symbol 33 MovieClip
"btn"Symbol 51 MovieClip [cam] Frame 1Symbol 48 Button
"ds"Symbol 51 MovieClip [cam] Frame 1Symbol 50 MovieClip
"bar"Symbol 71 MovieClip Frame 1Symbol 63 MovieClip
"smk"Symbol 86 MovieClip [smoke] Frame 1Symbol 85 MovieClip
"se"Symbol 116 MovieClip [pScreen] Frame 1Symbol 109 EditableText
"mu"Symbol 116 MovieClip [pScreen] Frame 1Symbol 115 EditableText
"walk"Symbol 125 MovieClip [fridgeS] Frame 1Symbol 119 MovieClip
"walk"Symbol 132 MovieClip [fridge] Frame 1Symbol 119 MovieClip
"hitt"Symbol 132 MovieClip [fridge] Frame 6Symbol 131 MovieClip
"flashh"Symbol 341 MovieClip Frame 2Symbol 340 MovieClip
"flashh"Symbol 346 MovieClip Frame 2Symbol 340 MovieClip
"flashh"Symbol 351 MovieClip Frame 2Symbol 340 MovieClip
"flashh"Symbol 355 MovieClip Frame 2Symbol 340 MovieClip
"arm"Symbol 390 MovieClip Frame 1Symbol 356 MovieClip
"light"Symbol 390 MovieClip Frame 1Symbol 359 MovieClip
"mHit"Symbol 390 MovieClip Frame 1Symbol 363 MovieClip
"hitt"Symbol 390 MovieClip Frame 1Symbol 359 MovieClip
"light"Symbol 390 MovieClip Frame 2Symbol 359 MovieClip
"mHit"Symbol 390 MovieClip Frame 3Symbol 363 MovieClip
"flashh"Symbol 426 MovieClip Frame 11Symbol 340 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "xm8_sound"
ExportAssets (56)Timeline Frame 1Symbol 2 as "smg_sound"
ExportAssets (56)Timeline Frame 1Symbol 3 as "shotguncock"
ExportAssets (56)Timeline Frame 1Symbol 4 as "shg_sound"
ExportAssets (56)Timeline Frame 1Symbol 5 as "rev_sound"
ExportAssets (56)Timeline Frame 1Symbol 6 as "moo"
ExportAssets (56)Timeline Frame 1Symbol 7 as "fd_sound"
ExportAssets (56)Timeline Frame 1Symbol 8 as "steps_sound"
ExportAssets (56)Timeline Frame 1Symbol 9 as "fhg_sound"
ExportAssets (56)Timeline Frame 1Symbol 10 as "hitf_sound"
ExportAssets (56)Timeline Frame 1Symbol 11 as "bell"
ExportAssets (56)Timeline Frame 1Symbol 12 as "bgm"
ExportAssets (56)Timeline Frame 1Symbol 17 as "fps"
ExportAssets (56)Timeline Frame 1Symbol 51 as "cam"
ExportAssets (56)Timeline Frame 1Symbol 432 as "__Packages.NewgroundsAPI"
ExportAssets (56)Timeline Frame 1Symbol 433 as "__Packages.mochi.as2.MochiServices"
ExportAssets (56)Timeline Frame 1Symbol 434 as "__Packages.mochi.as2.MochiScores"
ExportAssets (56)Timeline Frame 1Symbol 435 as "__Packages.mochi.as2.MochiDigits"
ExportAssets (56)Timeline Frame 10Symbol 86 as "smoke"
ExportAssets (56)Timeline Frame 10Symbol 116 as "pScreen"
ExportAssets (56)Timeline Frame 10Symbol 125 as "fridgeS"
ExportAssets (56)Timeline Frame 10Symbol 128 as "a250"
ExportAssets (56)Timeline Frame 10Symbol 132 as "fridge"
ExportAssets (56)Timeline Frame 10Symbol 134 as "revBull"
ExportAssets (56)Timeline Frame 10Symbol 139 as "shgBull"
ExportAssets (56)Timeline Frame 10Symbol 141 as "smgBull"
ExportAssets (56)Timeline Frame 10Symbol 143 as "xm8Bull"
ExportAssets (56)Timeline Frame 10Symbol 151 as "pu0"
ExportAssets (56)Timeline Frame 10Symbol 161 as "pu1"

Labels

"menu"Frame 179
"help"Frame 180
"hud"Frame 181
"pu"Frame 182
"con"Frame 183
"ln"Frame 184
"gr"Frame 185
"game"Frame 186
"end"Frame 190
"off"Symbol 36 MovieClip Frame 1
"on"Symbol 36 MovieClip Frame 2
"loaded"Symbol 71 MovieClip Frame 3
"side"Symbol 125 MovieClip [fridgeS] Frame 2
"warning"Symbol 125 MovieClip [fridgeS] Frame 3
"landb"Symbol 129 MovieClip Frame 1
"hit"Symbol 131 MovieClip Frame 1
"death"Symbol 131 MovieClip Frame 8
"walk"Symbol 132 MovieClip [fridge] Frame 2
"fall"Symbol 132 MovieClip [fridge] Frame 3
"getUp"Symbol 132 MovieClip [fridge] Frame 4
"switchviews"Symbol 132 MovieClip [fridge] Frame 5
"hit"Symbol 132 MovieClip [fridge] Frame 6
"warning"Symbol 132 MovieClip [fridge] Frame 7
"shoot"Symbol 341 MovieClip Frame 2
"shoot"Symbol 346 MovieClip Frame 2
"shoot"Symbol 351 MovieClip Frame 2
"shoot"Symbol 355 MovieClip Frame 2
"revright"Symbol 356 MovieClip Frame 1
"smgright"Symbol 356 MovieClip Frame 2
"shgright"Symbol 356 MovieClip Frame 3
"xm8right"Symbol 356 MovieClip Frame 4
"revleft"Symbol 356 MovieClip Frame 5
"smgleft"Symbol 356 MovieClip Frame 6
"shgleft"Symbol 356 MovieClip Frame 7
"xm8left"Symbol 356 MovieClip Frame 8
"idleright"Symbol 390 MovieClip Frame 2
"runright"Symbol 390 MovieClip Frame 3
"backright"Symbol 390 MovieClip Frame 4
"jumpright"Symbol 390 MovieClip Frame 5
"idleleft"Symbol 390 MovieClip Frame 6
"runleft"Symbol 390 MovieClip Frame 7
"backleft"Symbol 390 MovieClip Frame 8
"jumpleft"Symbol 390 MovieClip Frame 9
"deathF"Symbol 390 MovieClip Frame 10
"deathS"Symbol 390 MovieClip Frame 11

Dynamic Text Variables

fpsSymbol 15 EditableText"<p align="left"></p>"




http://swfchan.com/18/85261/info.shtml
Created: 31/3 -2019 00:36:33 Last modified: 31/3 -2019 00:36:33 Server time: 05/05 -2024 09:05:31