| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229923 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2598 · P5196 |
![]() | This is the info page for Flash #48491 |
Loading... |
Start |
By CheeseDude781 |
By CheeseDude781 |
By CheeseDude781 |
Instructions |
Instructions |
Instructions |
Controls: Use the WSAD or Arrow Keys to move around. |
How to Play: Simply move around and avoid hitting the wall to the left. Blocks coming from the right will knock you into the wall at fast speeds, so it is best to fight against the force (collide head on with the blocks) |
Back |
Back |
Back |
Health - |
<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>5</b></font></p> |
Score - |
<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>0</b></font></p> |
BEST - |
<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>0</b></font></p> |
By CheeseDude781 |
Sound: ON |
Sound: ON |
Sound: ON |
Sound: OFF |
Sound: OFF |
Sound: OFF |
Score - |
Best - |
(Your best score has been saved) |
Menu |
Menu |
Menu |
<p align="left"><font face="South Park" size="21" color="#666666" letterSpacing="0.000000" kerning="1"><b>0</b></font></p> |
<p align="left"><font face="South Park" size="21" color="#666666" letterSpacing="0.000000" kerning="1"><b>0</b></font></p> |
Game Over! |
ActionScript [AS1/AS2]
Frame 1function site(obj, item) { getURL ("http://www.cheesedude781.net/", "_blank"); } function qualitybest(obj, item) { _quality = "BEST"; } function qualityhigh(obj, item) { _quality = "HIGH"; } function qualitymedium(obj, item) { _quality = "MEDIUM"; } function qualitylow(obj, item) { _quality = "LOW"; } root_cm = new ContextMenu(); root_cm.hideBuiltInItems(); root_cm.customItems.push(new ContextMenuItem("--Force Bouncer--", mediatitle)); root_cm.customItems.push(new ContextMenuItem("CheeseDude781.net", site)); root_cm.customItems.push(new ContextMenuItem("Quality - Best", qualitybest)); root_cm.customItems.push(new ContextMenuItem("Quality - High", qualityhigh)); root_cm.customItems.push(new ContextMenuItem("Quality - Medium", qualitymedium)); root_cm.customItems.push(new ContextMenuItem("Quality - Low", qualitylow)); _root.menu = root_cm; total_bytes = _root.getBytesTotal(); loaded_bytes = _root.getBytesLoaded(); remaining_bytes = total_bytes - loaded_bytes; percent_done = int((loaded_bytes / total_bytes) * 100); bar.gotoAndStop(percent_done); if (percent_done > 99) { gotoAndPlay (3); }Frame 2gotoAndPlay (1);Frame 21_quality = "MEDIUM";Frame 22Mouse.hide();Instance of Symbol 15 MovieClip "cursor" in Frame 22onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; }Frame 60_quality = "BEST"; stop();Frame 62_quality = "MEDIUM"; stop();Instance of Symbol 48 MovieClip "circle" in Frame 62onClipEvent (load) { xacceleration = 0; yacceleration = 0; acceleration = 0.5; friction = 0.1; this._parent.healthstats.healthamount = 5; this._parent.healthstats.scoreamount = 0; lose = 0; user = SharedObject.getLocal("CheeseDude781_Vars"); this._parent.healthstats.scorebest = user.data.best; if (this._parent.healthstats.scorebest == undefined) { this._parent.healthstats.scorebest = 0; } } onClipEvent (enterFrame) { this._x = this._x + xacceleration; this._y = this._y + yacceleration; if (Key.isDown(38) | Key.isDown(87)) { if (yacceleration > -10) { yacceleration = yacceleration - acceleration; } } if (Key.isDown(40) | Key.isDown(83)) { if (yacceleration < 10) { yacceleration = yacceleration + acceleration; } } if (Key.isDown(37) | Key.isDown(65)) { if (xacceleration > -10) { xacceleration = xacceleration - acceleration; } } if (Key.isDown(39) | Key.isDown(68)) { if (xacceleration < 10) { xacceleration = xacceleration + acceleration; } } if ((Key.isDown(38) == false) && (Key.isDown(40) == false)) { if (yacceleration > 0) { yacceleration = yacceleration - friction; } if (yacceleration < 0) { yacceleration = yacceleration + friction; } } if ((Key.isDown(37) == false) && (Key.isDown(39) == false)) { if (xacceleration > 0) { xacceleration = xacceleration - friction; } if (xacceleration < 0) { xacceleration = xacceleration + friction; } } if (hitTest(this._parent.wall)) { this._x = this._x + 20; xacceleration = 10; if (lose == 0) { this._parent.healthstats.healthamount = this._parent.healthstats.healthamount - 1; } } if (hitTest(this._parent.block)) { xacceleration = xacceleration - 0.8; } if (hitTest(this._parent.block2)) { xacceleration = xacceleration - 1.3; } if (hitTest(this._parent.block3)) { xacceleration = xacceleration - 1.5; } if (hitTest(this._parent.northwall)) { yacceleration = 5; } if (hitTest(this._parent.southwall)) { yacceleration = -5; } if (hitTest(this._parent.eastwall)) { xacceleration = -5; } if (lose == 0) { this._parent.healthstats.scoreamount = this._parent.healthstats.scoreamount + 5; if (this._parent.healthstats.healthamount < 1) { lose = 1; } } if (this._parent.healthstats.scorebest < this._parent.healthstats.scoreamount) { this._parent.healthstats.scorebest = this._parent.healthstats.scoreamount; user.data.best = this._parent.healthstats.scoreamount; } }Instance of Symbol 43 MovieClip "block" in Frame 62onClipEvent (load) { spawn1 = random(380) + 10; this._x = 614; this._y = spawn1; } onClipEvent (enterFrame) { this._x = this._x - 15; if (hitTest(this._parent.box.leftwall)) { spawn1 = random(380) + 10; this._x = 614; this._y = spawn1; } }Instance of Symbol 43 MovieClip "block2" in Frame 62onClipEvent (load) { spawn2 = random(380) + 10; this._x = 614; this._y = spawn2; } onClipEvent (enterFrame) { this._x = this._x - 20; if (hitTest(this._parent.box.leftwall)) { spawn2 = random(380) + 10; this._x = 614; this._y = spawn2; } }Instance of Symbol 43 MovieClip "block3" in Frame 62onClipEvent (load) { spawn3 = random(380) + 10; this._x = 614; this._y = spawn3; } onClipEvent (enterFrame) { this._x = this._x - 23; if (hitTest(this._parent.box.leftwall)) { spawn3 = random(380) + 10; this._x = 614; this._y = spawn3; } }Instance of Symbol 15 MovieClip "cursor" in Frame 62onClipEvent (enterFrame) { this._x = _root._xmouse; this._y = _root._ymouse; }Frame 78gotoAndPlay (22); stopAllSounds();Symbol 18 MovieClip Frame 30stop(); _root.circle.gotoAndStop(2);Symbol 24 Buttonon (release) { _root.play(); }Symbol 35 Buttonon (release) { getURL ("http://www.cheesedude781.net/", "_blank"); }Symbol 36 Buttonon (release) { gotoAndStop (62); }Symbol 37 Buttonon (release) { getURL ("http://www.cheesedude781.net/", "_blank"); }Symbol 38 Buttonon (release) { gotoAndStop (61); }Symbol 47 Buttonon (release) { gotoAndStop (60); }Symbol 48 MovieClip Frame 1stop();Symbol 67 MovieClip Frame 1stop();Instance of Symbol 66 MovieClip in Symbol 67 MovieClip Frame 1onClipEvent (load) { _root.healthused = 1; _root.healthused2 = 1; _root.healthused3 = 1; _root.healthused4 = 1; _root.healthused5 = 1; } onClipEvent (enterFrame) { if (_root.healthused == 1) { if (this._parent._parent.healthamount < 5) { _root.healthstats.h1.play(); _root.healthused = 0; } } if (_root.healthused2 == 1) { if (this._parent._parent.healthamount < 4) { _root.healthstats.h2.play(); _root.healthused2 = 0; } } if (_root.healthused3 == 1) { if (this._parent._parent.healthamount < 3) { _root.healthstats.h3.play(); _root.healthused3 = 0; } } if (_root.healthused4 == 1) { if (this._parent._parent.healthamount < 2) { _root.healthstats.h4.play(); _root.healthused4 = 0; } } if (_root.healthused5 == 1) { if (this._parent._parent.healthamount < 1) { _root.healthstats.h5.play(); _root.healthused5 = 0; _root.nextFrame(); } } }Symbol 67 MovieClip Frame 50stop();Symbol 77 Buttonon (release) { nextFrame(); stopAllSounds(); }Symbol 81 Buttonon (release) { prevFrame(); }Symbol 82 MovieClip Frame 1stop();Symbol 94 Buttonon (release) { _root.play(); }Instance of Symbol 86 MovieClip in Symbol 97 MovieClip Frame 1onClipEvent (enterFrame) { this._parent.scoreresult = this._parent._parent._parent._parent._parent.healthstats.scoreamount; this._parent.bestresult = this._parent._parent._parent._parent._parent.healthstats.scorebest; }Instance of Symbol 100 MovieClip in Symbol 101 MovieClip Frame 1on (press) { startDrag (this._parent._parent._parent.gameoverwindow); } on (releaseOutside) { stopDrag(); } on (release) { stopDrag(); }Symbol 102 MovieClip Frame 20stop();Symbol 103 MovieClip Frame 50stop();
Library Items
Symbol 1 Sound [moviemusic] | Used by:82 | |
Symbol 2 Graphic | Used by:3 | |
Symbol 3 MovieClip | Uses:2 | Used by:6 |
Symbol 4 ShapeTweening | Used by:6 | |
Symbol 5 Graphic | Used by:6 | |
Symbol 6 MovieClip | Uses:3 4 5 | Used by:Timeline |
Symbol 7 Font | Used by:8 21 25 26 27 29 30 31 40 41 44 45 46 61 62 68 69 70 71 73 74 75 76 78 79 80 88 89 90 91 92 93 95 96 99 | |
Symbol 8 Text | Uses:7 | Used by:Timeline |
Symbol 9 Graphic | Used by:10 | |
Symbol 10 MovieClip | Uses:9 | Used by:Timeline |
Symbol 11 Bitmap | Used by:12 | |
Symbol 12 Graphic | Uses:11 | Used by:13 |
Symbol 13 Button | Uses:12 | Used by:Timeline |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:14 | Used by:Timeline |
Symbol 16 Graphic | Used by:17 48 | |
Symbol 17 MovieClip | Uses:16 | Used by:18 |
Symbol 18 MovieClip | Uses:17 | Used by:Timeline |
Symbol 19 Graphic | Used by:20 | |
Symbol 20 MovieClip | Uses:19 | Used by:Timeline |
Symbol 21 Text | Uses:7 | Used by:24 36 |
Symbol 22 Sound | Used by:24 28 32 35 36 37 38 47 | |
Symbol 23 Sound | Used by:24 28 32 35 36 37 38 47 | |
Symbol 24 Button | Uses:21 22 23 | Used by:Timeline |
Symbol 25 Text | Uses:7 | Used by:28 37 |
Symbol 26 Text | Uses:7 | Used by:28 37 |
Symbol 27 Text | Uses:7 | Used by:28 37 |
Symbol 28 Button | Uses:25 26 27 22 23 | Used by:Timeline |
Symbol 29 Text | Uses:7 | Used by:32 38 |
Symbol 30 Text | Uses:7 | Used by:32 38 |
Symbol 31 Text | Uses:7 | Used by:32 38 |
Symbol 32 Button | Uses:29 30 31 22 23 | Used by:Timeline |
Symbol 33 Graphic | Used by:34 | |
Symbol 34 Button | Uses:33 | Used by:35 |
Symbol 35 Button | Uses:34 22 23 | Used by:Timeline |
Symbol 36 Button | Uses:21 22 23 | Used by:Timeline |
Symbol 37 Button | Uses:25 26 27 22 23 | Used by:Timeline |
Symbol 38 Button | Uses:29 30 31 22 23 | Used by:Timeline |
Symbol 39 Graphic | Used by:Timeline | |
Symbol 40 Text | Uses:7 | Used by:Timeline |
Symbol 41 Text | Uses:7 | Used by:Timeline |
Symbol 42 Graphic | Used by:43 | |
Symbol 43 MovieClip | Uses:42 | Used by:Timeline |
Symbol 44 Text | Uses:7 | Used by:47 |
Symbol 45 Text | Uses:7 | Used by:47 |
Symbol 46 Text | Uses:7 | Used by:47 |
Symbol 47 Button | Uses:44 45 46 22 23 | Used by:Timeline |
Symbol 48 MovieClip | Uses:16 | Used by:Timeline |
Symbol 49 Graphic | Used by:50 | |
Symbol 50 MovieClip | Uses:49 | Used by:Timeline |
Symbol 51 Graphic | Used by:52 | |
Symbol 52 MovieClip | Uses:51 | Used by:Timeline |
Symbol 53 Graphic | Used by:54 | |
Symbol 54 MovieClip | Uses:53 | Used by:Timeline |
Symbol 55 Graphic | Used by:56 | |
Symbol 56 MovieClip | Uses:55 | Used by:Timeline |
Symbol 57 Graphic | Used by:60 | |
Symbol 58 Graphic | Used by:59 | |
Symbol 59 MovieClip | Uses:58 | Used by:60 |
Symbol 60 MovieClip | Uses:57 59 | Used by:Timeline |
Symbol 61 Text | Uses:7 | Used by:72 |
Symbol 62 EditableText | Uses:7 | Used by:72 |
Symbol 63 Graphic | Used by:64 | |
Symbol 64 MovieClip | Uses:63 | Used by:67 |
Symbol 65 Graphic | Used by:66 | |
Symbol 66 MovieClip | Uses:65 | Used by:67 |
Symbol 67 MovieClip | Uses:64 66 | Used by:72 |
Symbol 68 Text | Uses:7 | Used by:72 |
Symbol 69 EditableText | Uses:7 | Used by:72 |
Symbol 70 Text | Uses:7 | Used by:72 |
Symbol 71 EditableText | Uses:7 | Used by:72 |
Symbol 72 MovieClip | Uses:61 62 67 68 69 70 71 | Used by:Timeline |
Symbol 73 Text | Uses:7 | Used by:Timeline |
Symbol 74 Text | Uses:7 | Used by:77 |
Symbol 75 Text | Uses:7 | Used by:77 |
Symbol 76 Text | Uses:7 | Used by:77 |
Symbol 77 Button | Uses:74 75 76 | Used by:82 |
Symbol 78 Text | Uses:7 | Used by:81 |
Symbol 79 Text | Uses:7 | Used by:81 |
Symbol 80 Text | Uses:7 | Used by:81 |
Symbol 81 Button | Uses:78 79 80 | Used by:82 |
Symbol 82 MovieClip | Uses:77 1 81 | Used by:Timeline |
Symbol 83 Graphic | Used by:84 | |
Symbol 84 MovieClip | Uses:83 | Used by:103 |
Symbol 85 Graphic | Used by:86 | |
Symbol 86 MovieClip | Uses:85 | Used by:97 |
Symbol 87 Graphic | Used by:97 | |
Symbol 88 Text | Uses:7 | Used by:97 |
Symbol 89 Text | Uses:7 | Used by:97 |
Symbol 90 Text | Uses:7 | Used by:97 |
Symbol 91 Text | Uses:7 | Used by:94 |
Symbol 92 Text | Uses:7 | Used by:94 |
Symbol 93 Text | Uses:7 | Used by:94 |
Symbol 94 Button | Uses:91 92 93 | Used by:97 |
Symbol 95 EditableText | Uses:7 | Used by:97 |
Symbol 96 EditableText | Uses:7 | Used by:97 |
Symbol 97 MovieClip | Uses:86 87 88 89 90 94 95 96 | Used by:101 |
Symbol 98 Graphic | Used by:100 | |
Symbol 99 Text | Uses:7 | Used by:100 |
Symbol 100 MovieClip | Uses:98 99 | Used by:101 |
Symbol 101 MovieClip | Uses:97 100 | Used by:102 |
Symbol 102 MovieClip | Uses:101 | Used by:103 |
Symbol 103 MovieClip | Uses:84 102 | Used by:Timeline |
Symbol 104 Graphic | Used by:105 | |
Symbol 105 Button | Uses:104 | Used by:Timeline |
Instance Names
"bar" | Frame 1 | Symbol 6 MovieClip |
"cursor" | Frame 21 | Symbol 15 MovieClip |
"cursor" | Frame 22 | Symbol 15 MovieClip |
"circle" | Frame 62 | Symbol 48 MovieClip |
"block" | Frame 62 | Symbol 43 MovieClip |
"block2" | Frame 62 | Symbol 43 MovieClip |
"block3" | Frame 62 | Symbol 43 MovieClip |
"northwall" | Frame 62 | Symbol 50 MovieClip |
"southwall" | Frame 62 | Symbol 52 MovieClip |
"eastwall" | Frame 62 | Symbol 54 MovieClip |
"wall" | Frame 62 | Symbol 56 MovieClip |
"box" | Frame 62 | Symbol 60 MovieClip |
"healthstats" | Frame 62 | Symbol 72 MovieClip |
"cursor" | Frame 62 | Symbol 15 MovieClip |
"leftwall" | Symbol 60 MovieClip Frame 1 | Symbol 59 MovieClip |
"h5" | Symbol 72 MovieClip Frame 1 | Symbol 67 MovieClip |
"h4" | Symbol 72 MovieClip Frame 1 | Symbol 67 MovieClip |
"h3" | Symbol 72 MovieClip Frame 1 | Symbol 67 MovieClip |
"h2" | Symbol 72 MovieClip Frame 1 | Symbol 67 MovieClip |
"h1" | Symbol 72 MovieClip Frame 1 | Symbol 67 MovieClip |
"windowstats" | Symbol 102 MovieClip Frame 1 | Symbol 101 MovieClip |
"gameoverwindow" | Symbol 103 MovieClip Frame 40 | Symbol 102 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "moviemusic" |
Dynamic Text Variables
healthamount | Symbol 62 EditableText | "<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>5</b></font></p>" |
scoreamount | Symbol 69 EditableText | "<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>" |
scorebest | Symbol 71 EditableText | "<p align="left"><font face="South Park" size="21" color="#333333" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>" |
scoreresult | Symbol 95 EditableText | "<p align="left"><font face="South Park" size="21" color="#666666" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>" |
bestresult | Symbol 96 EditableText | "<p align="left"><font face="South Park" size="21" color="#666666" letterSpacing="0.000000" kerning="1"><b>0</b></font></p>" |
|