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

swfchan turned sixteen years old yesterday! (5may2024)

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

MGS3- Boss Failures.swf

This is the info page for
Flash #34907

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


Text
Made by Jared Johnson
Inspired By Metal Gear Solid 3
Character Design by Jared Johnson
Animated by Jared Johnson
"Scripts" by Jared Johnson
Menus and Menu stuff by Jared Johnson
Boss ideas by Jared, Seth, and Michael
ActionScripting by Jared Johnson
Box preloader Easter egg by Jared Johnson
Voice Talents
Narrator - Jared Johnson
The Beginning - Jared Johnson
The Slight Discomfort - Seth Forsman
The Anger - Seth Forsman
The Oblivious - Jared Johnson
The Euphoric - Jared Johnson
The Box Eater - Seth Forsman
Special Thanks
Hideo Kojima and the Konami staff for making
such an awesome game as Snake Eater
So Toyota for his killer motion directing for
the Solid series
David Hayter for the kickass voice that
makes Snake who he is
HourGlass for tossing out ideas and lending
his voice
Michael Johnson for thinking of The Euphoric
Aaron Holcomb for being such a stoner to
inspire The Euphoric's look
Myself for being the coolest mother fucker
there is
maddox for... everything I guess
Li'l Debbie for making such delicious after
school snacks
Newgrounds for hosting shit like this
If you're still reading this, cool. This is all
filler for Seth's ranting
and, lastly, Captain America for fighting the
evils of hitler and the nazis in world war II
NO THANKS TO...
That one kid who chipped my tooth because he
thought I called him a fag!
That Indian for looking at me and trying to
make me feel bad!
Pepsi for making me drink you instead of
working on this flash!
Michael Moore for filling me with such
republican anger I almost blew up!
cartoon network for ending the glorious
Space Ghost Coast to Coast series!
Marvel for fucking up Hulk by getting that
asian fag dude!
Orlando Bloom for... everything!!!

Hello!

Hi...

Is Bill there?

Yes...

Yeah...

I am...

THE BOX EATER!!!

Te-- tell him that...

Hey!

Hey, Bill

I--

It's me...

I just got back from this cool job interview

I'm going to be in a video game!

I'm the baddest of all of them...

I...

Nuh--

No. This won't mess up our plans for Sunday night...

Yes... I will bring some...

Potato salad or something evil like that...

I-- no--

wait...

Who are you invi--

No...

I don't--

Can you not invite her?

I-- I never have anything to say to her...

You know, she--

She looks down on me...

It's--

It's very...

Very uncomfortable...

No, I-- I know; I know she's your mother, but...

I mean...

She-- I don't...

She's just kind of scary...

Even--

She's like more evil than me...

Uggh...

Well...

Yeah--

No--

Monday through Friday...

I must hang up the phone now!

Good bye!

ActionScript [AS1/AS2]

Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) { moveSpeed = 0; if ((((!Key.isDown(39)) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(40))) { if (this.facing == "left") { this.gotoAndStop("leftwait"); } else if (this.facing == "right") { this.gotoAndStop("rightwait"); } else if (this.facing == "up") { this.gotoAndStop("upwait"); } else if (this.facing == "down") { this.gotoAndStop("downwait"); } } else if (Key.isDown(39)) { this._x = this._x + moveSpeed; this.facing = "right"; this.gotoAndStop("rightwalk"); } else if (Key.isDown(37)) { this._x = this._x - moveSpeed; this.gotoAndStop("leftwalk"); this.facing = "left"; } else if (Key.isDown(38)) { this._y = this._y - moveSpeed; this.facing = "up"; this.gotoAndStop("upwalk"); } else if (Key.isDown(40)) { this._y = this._y + moveSpeed; this.gotoAndStop("downwalk"); this.facing = "down"; } } onClipEvent (load) { maxWidth = 600; maxHeight = 400; } onClipEvent (enterFrame) { if (this._x >= maxWidth) { this._x = 0; } else if (this._x <= 0) { this._x = maxWidth; } if (this._y >= maxHeight) { this._y = 0; } else if (this._y <= 0) { this._y = maxHeight; } } onClipEvent (load) { xspeed = 0; yspeed = 0; limit = 10; } onClipEvent (enterFrame) { this._x = this._x + xspeed; this._y = this._y + yspeed; if (Key.isDown(39) && (xspeed <= limit)) { xspeed++; } else if (Key.isDown(37) && (xspeed >= (-limit))) { xspeed--; } if (Key.isDown(38) && (yspeed >= (-limit))) { yspeed--; } else if (Key.isDown(40) && (yspeed <= limit)) { yspeed++; } if ((!Key.isDown(39)) && (xspeed > 0)) { xspeed--; } else if ((!Key.isDown(37)) && (xspeed < 0)) { xspeed++; } if ((!Key.isDown(40)) && (yspeed > 0)) { yspeed--; } else if ((!Key.isDown(38)) && (yspeed < 0)) { yspeed++; } }
Instance of Symbol 15 MovieClip in Frame 1
onClipEvent (enterFrame) { ifFrameLoaded (1) { gotoAndStop(nextFrame); } }
Instance of Symbol 17 MovieClip "mc" in Frame 1
onClipEvent (mouseMove) { this._x = this._x + _xmouse; this._y = this._y + _ymouse; Mouse.hide(); }
Frame 3
stop();
Instance of Symbol 17 MovieClip "mc" in Frame 3
onClipEvent (mouseMove) { this._x = this._x + _xmouse; this._y = this._y + _ymouse; Mouse.hide(); }
Frame 4
stop();
Instance of Symbol 44 MovieClip in Frame 4
onClipEvent (mouseMove) { this._y = this._y + _ymouse; }
Instance of Symbol 17 MovieClip "mc" in Frame 4
onClipEvent (mouseMove) { this._x = this._x + _xmouse; this._y = this._y + _ymouse; Mouse.hide(); }
Frame 4064
stop();
Instance of Symbol 17 MovieClip "mc" in Frame 4064
onClipEvent (mouseMove) { this._x = this._x + _xmouse; this._y = this._y + _ymouse; Mouse.hide(); }
Symbol 13 MovieClip Frame 1
stop();
Symbol 22 Button
on (release) { gotoAndPlay (3); }
Symbol 26 Button
on (release) { _root.play(); }
Symbol 27 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { setProperty(bar, _xscale , PercentLoaded); } else { gotoAndStop ("loaded"); }
Symbol 27 MovieClip Frame 2
gotoAndPlay (1);
Symbol 38 Button
on (release) { gotoAndPlay (4); }
Symbol 40 Button
on (release) { gotoAndPlay (5); }
Symbol 55 Button
on (release) { gotoAndPlay (3); }
Symbol 58 Button
on (release) { gotoAndPlay (5); }
Symbol 60 Button
on (release) { gotoAndPlay (104); }
Symbol 62 Button
on (release) { gotoAndPlay (690); }
Symbol 64 Button
on (release) { gotoAndPlay (1175); }
Symbol 66 Button
on (release) { gotoAndPlay (1250); }
Symbol 68 Button
on (release) { gotoAndPlay (1350); }
Symbol 70 Button
on (release) { gotoAndPlay (1940); }

Library Items

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

Instance Names

"mc"Frame 1Symbol 17 MovieClip
"mc"Frame 3Symbol 17 MovieClip
"mc"Frame 4Symbol 17 MovieClip
"mc"Frame 4064Symbol 17 MovieClip
"rightwalk"Symbol 13 MovieClip Frame 10Symbol 12 MovieClip
"bar"Symbol 27 MovieClip Frame 1Symbol 25 MovieClip

Special Tags

Protect (24)Timeline Frame 131 bytes "..$1$O9$9ZuZgrzIhqlOAII5elry/1."

Labels

"leftwait"Symbol 13 MovieClip Frame 1
"rightwait"Symbol 13 MovieClip Frame 5
"leftwalk"Symbol 13 MovieClip Frame 10
"rightwalk"Symbol 13 MovieClip Frame 15
"upwait"Symbol 13 MovieClip Frame 20
"downwait"Symbol 13 MovieClip Frame 25
"upwalk"Symbol 13 MovieClip Frame 30
"downwalk"Symbol 13 MovieClip Frame 35
"loaded"Symbol 27 MovieClip Frame 3




http://swfchan.com/7/34907/info.shtml
Created: 16/5 -2019 13:32:19 Last modified: 16/5 -2019 13:32:19 Server time: 06/05 -2024 17:32:27