STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229671 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5191 |
This is the info page for Flash #55578 |
Magical-Zorse |
Productions |
Friction at |
<p align="left"></p> |
Health at |
<p align="left"></p> |
Score |
<p align="left"></p> |
The Friction Game |
The Friction Game |
Instructions |
Instructions |
Play |
Play |
Don't Click This |
Don't Click This |
Why did you click this? |
Ok, here's the basics. You move around the circle. And collect the squares. The only thing is, the level of friction is dropping, which means you'll get slower by the second. For every square you collect, your score goes up by 5, and your friction goes up by 0.5. |
It doesn't make sense, I know |
But watch out, if your friction level gets too high, you'll go out of control, and off of the screen. Which will decrease your health. If your health falls to 0, the round ends. |
Return to Menu |
Return to Menu |
Put your name here: |
Send Score? |
Play Again? |
Well done, you have completed this level. |
Goto Next level |
Goto Next level |
<p align="left"></p> |
<p align="left"></p> |
<p align="left"></p> |
<p align="left"></p> |
<p align="left"></p> |
<p align="left"></p> |
<p align="left"></p> |
<p align="left"></p> |
<p align="left"></p> |
Well done, you have completed the game. |
Click to claim your prize! |
Send Score |
Send Score |
ActionScript [AS1/AS2]
Frame 1function itemHandler1(obj, item) { _root._quality = "high"; } function itemHandler2(obj, item) { _root._quality = "medium"; } function itemHandler3(obj, item) { _root._quality = "low"; } function itemHandler4(obj, item) { stopAllSounds(); _root.music.attachSound("song1"); _root.music.start(0, 10000); } function itemHandler9(obj, item) { stopAllSounds(); } stop(); var music = new Sound(_root); var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); item1 = new ContextMenuItem("High Quality", itemHandler1); myMenu.customItems.push(item1); item2 = new ContextMenuItem("Medium Quality", itemHandler2); myMenu.customItems.push(item2); item3 = new ContextMenuItem("Low Quality", itemHandler3); myMenu.customItems.push(item3); item4 = new ContextMenuItem("Melting Snow", itemHandler4, true); myMenu.customItems.push(item4); item9 = new ContextMenuItem("No Music", itemHandler9); myMenu.customItems.push(item9); _root.menu = myMenu;Instance of Symbol 5 MovieClip in Frame 1onClipEvent (load) { _root.stop(); var totalBytes = _root.getBytesTotal(); this._xscale = 0; } onClipEvent (enterFrame) { var loadedBytes = _root.getBytesLoaded(); var percent = ((100 * loadedBytes) / totalBytes); this._xscale = percent; if (percent == 100) { _root.gotoAndStop(3); } }Frame 2friction = 0.5; life = 100; score = 0; stop();Instance of Symbol 11 MovieClip "magicalzorsecircle" in Frame 2onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; } if (Key.isDown(40)) { vy = vy + 4; } if (Key.isDown(37)) { vx = vx - 4; } if (Key.isDown(39)) { vx = vx + 4; } if (this._y > 400) { _root.life = _root.life - 1; } if (this._y < 0) { _root.life = _root.life - 1; } if (this._x > 550) { _root.life = _root.life - 1; } if (this._x < 0) { _root.life = _root.life - 1; } if (_root.life <= 0) { _root.life = 0; _root.gotoAndStop(10); } } onClipEvent (enterFrame) { if (_root.friction <= 0) { _root.gotoAndStop(10); } }Instance of Symbol 15 MovieClip "enemy" in Frame 2onClipEvent (enterFrame) { if (_root.magicalzorsecircle.hitTest(_root.enemy)) { _root.friction = _root.friction + 0.05; _root.enemy._x = (Math.random() * 200) + 100; _root.enemy._y = (Math.random() * 300) + 100; _root.score = _root.score + 5; } }Frame 3stop();Frame 4stop();Frame 5stop();Frame 6stop();Frame 7stop(); function send_vars(username, score, code, u) { var _local1 = new LoadVars(); var _local2 = new LoadVars(); _local1.username = username; _local1.score = score; _local1.code458 = code; _local1.sendAndLoad(u, _local2, "POST"); } btn_send.onRelease = function () { player_name = playername; player_score = score; send_vars(player_name, player_score, "7Uv4wV6D2jHal3ZHvI7iUfW7tIihh1J7", "http://www.pogollama.com/scoreboards/submit_scores.php"); getURL ("http://www.pogollama.com/scoreboards/friction_game/view_scores_1.php", _blank); };Frame 8stop();Frame 9friction = 0.5; life = 100; stop();Instance of Symbol 92 MovieClip "circle2" in Frame 9onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; } if (Key.isDown(40)) { vy = vy + 4; } if (Key.isDown(37)) { vx = vx - 4; } if (Key.isDown(39)) { vx = vx + 4; } if (this._y > 400) { _root.life = _root.life - 1; } if (this._y < 0) { _root.life = _root.life - 1; } if (this._x > 550) { _root.life = _root.life - 1; } if (this._x < 0) { _root.life = _root.life - 1; } if (_root.life <= 0) { _root.life = 0; _root.gotoAndStop(11); } } onClipEvent (enterFrame) { if (_root.friction <= 0) { _root.gotoAndStop(11); } }Instance of Symbol 97 MovieClip "square2" in Frame 9onClipEvent (enterFrame) { if (_root.circle2.hitTest(_root.square2)) { _root.friction = _root.friction + 0.05; _root.square2._x = (Math.random() * 200) + 100; _root.square2._y = (Math.random() * 300) + 100; _root.score = _root.score + 5; } }Frame 10stop();Instance of Symbol 99 MovieClip in Frame 10onClipEvent (enterFrame) { if (_root.score >= 50) { _root.gotoAndStop(8); } if (_root.score < 50) { _root.gotoAndStop(7); } }Frame 11stop();Instance of Symbol 99 MovieClip in Frame 11onClipEvent (enterFrame) { if (_root.score >= 125) { _root.gotoAndStop(12); } if (_root.score < 125) { _root.gotoAndStop(7); } }Frame 12stop();Frame 13friction = 0.5; life = 100; stop();Instance of Symbol 109 MovieClip "square3" in Frame 13onClipEvent (enterFrame) { if (_root.circle3.hitTest(_root.square3)) { _root.friction = _root.friction + 0.05; _root.square3._x = (Math.random() * 200) + 100; _root.square3._y = (Math.random() * 300) + 100; _root.score = _root.score + 5; } }Instance of Symbol 113 MovieClip "circle3" in Frame 13onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; } if (Key.isDown(40)) { vy = vy + 4; } if (Key.isDown(37)) { vx = vx - 4; } if (Key.isDown(39)) { vx = vx + 4; } if (this._y > 400) { _root.life = _root.life - 1; } if (this._y < 0) { _root.life = _root.life - 1; } if (this._x > 550) { _root.life = _root.life - 1; } if (this._x < 0) { _root.life = _root.life - 1; } if (_root.life <= 0) { _root.life = 0; _root.gotoAndStop(14); } } onClipEvent (enterFrame) { if (_root.friction <= 0) { _root.gotoAndStop(14); } }Frame 14stop();Instance of Symbol 99 MovieClip in Frame 14onClipEvent (enterFrame) { if (_root.score >= 200) { _root.gotoAndStop(15); } if (_root.score < 200) { _root.gotoAndStop(7); } }Frame 15stop();Frame 16friction = 0.5; life = 100; stop();Instance of Symbol 133 MovieClip "square4" in Frame 16onClipEvent (enterFrame) { if (_root.circle4.hitTest(_root.square4)) { _root.friction = _root.friction + 0.05; _root.square4._x = (Math.random() * 200) + 100; _root.square4._y = (Math.random() * 300) + 100; _root.score = _root.score + 5; } }Instance of Symbol 140 MovieClip "circle4" in Frame 16onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; } if (Key.isDown(40)) { vy = vy + 4; } if (Key.isDown(37)) { vx = vx - 4; } if (Key.isDown(39)) { vx = vx + 4; } if (this._y > 400) { _root.life = _root.life - 1; } if (this._y < 0) { _root.life = _root.life - 1; } if (this._x > 550) { _root.life = _root.life - 1; } if (this._x < 0) { _root.life = _root.life - 1; } if (_root.life <= 0) { _root.life = 0; _root.gotoAndStop(17); } } onClipEvent (enterFrame) { if (_root.friction <= 0) { _root.gotoAndStop(17); } }Instance of Symbol 99 MovieClip in Frame 17onClipEvent (enterFrame) { if (_root.score >= 125) { _root.gotoAndStop(18); } if (_root.score < 125) { _root.gotoAndStop(7); } }Frame 18stop();Frame 19stop();Symbol 14 MovieClip Frame 1stop();Symbol 14 MovieClip Frame 2stop();Symbol 15 MovieClip Frame 30_root.friction = _root.friction - 0.05; _root.enemy.gotoAndPlay(1);Symbol 15 MovieClip Frame 31stop();Symbol 27 Buttonon (release) { gotoAndStop (4); }Symbol 35 Buttonon (release) { gotoAndStop (5); }Symbol 39 Buttonon (release) { gotoAndStop (2); }Symbol 42 Buttonon (release) { getURL ("http://www.magical-zorse.newgrounds.com", "_blank"); _root.Text.gotoAndStop(2); }Symbol 44 MovieClip Frame 1stop();Symbol 44 MovieClip Frame 2stop();Symbol 51 Buttonon (release) { gotoAndStop (6); }Symbol 59 Buttonon (release) { gotoAndStop (4); }Symbol 70 Buttonon (release) { gotoAndStop (4); }Symbol 79 Buttonon (release) { _root.gotoAndStop(9); }Symbol 97 MovieClip Frame 30_root.friction = _root.friction - 0.05; _root.square2.gotoAndPlay(1);Symbol 97 MovieClip Frame 31stop();Symbol 102 Buttonon (release) { _root.gotoAndStop(13); }Symbol 109 MovieClip Frame 30_root.friction = _root.friction - 0.05;Symbol 116 Buttonon (release) { _root.gotoAndStop(16); }Symbol 133 MovieClip Frame 30_root.friction = _root.friction - 0.05;Symbol 144 Buttonon (release) { nextFrame(); }Symbol 151 Buttonon (release) { gotoAndStop (7); }
Library Items
Symbol 1 Sound [song1] | ||
Symbol 2 Bitmap | Used by:3 23 | |
Symbol 3 Graphic | Uses:2 | Used by:Timeline |
Symbol 4 Graphic | Used by:5 | |
Symbol 5 MovieClip | Uses:4 | Used by:Timeline |
Symbol 6 Font | Used by:7 8 28 31 32 33 36 37 40 41 43 47 55 56 57 148 149 | |
Symbol 7 Text | Uses:6 | Used by:Timeline |
Symbol 8 Text | Uses:6 | Used by:Timeline |
Symbol 9 Graphic | Used by:Timeline | |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip | Uses:10 | Used by:Timeline |
Symbol 12 Graphic | Used by:14 | |
Symbol 13 Graphic | Used by:14 | |
Symbol 14 MovieClip | Uses:12 13 | Used by:15 |
Symbol 15 MovieClip | Uses:14 | Used by:Timeline |
Symbol 16 Font | Used by:17 18 19 20 21 22 82 83 84 105 106 107 119 120 121 | |
Symbol 17 Text | Uses:16 | Used by:Timeline |
Symbol 18 EditableText | Uses:16 | Used by:Timeline |
Symbol 19 Text | Uses:16 | Used by:Timeline |
Symbol 20 EditableText | Uses:16 | Used by:Timeline |
Symbol 21 Text | Uses:16 | Used by:Timeline |
Symbol 22 EditableText | Uses:16 | Used by:Timeline |
Symbol 23 Graphic | Uses:2 | Used by:Timeline |
Symbol 24 Graphic | Used by:27 | |
Symbol 25 Graphic | Used by:27 | |
Symbol 26 Graphic | Used by:27 | |
Symbol 27 Button | Uses:24 25 26 | Used by:Timeline |
Symbol 28 Text | Uses:6 | Used by:Timeline |
Symbol 29 Bitmap | Used by:30 | |
Symbol 30 Graphic | Uses:29 | Used by:Timeline |
Symbol 31 Text | Uses:6 | Used by:Timeline |
Symbol 32 Text | Uses:6 | Used by:35 |
Symbol 33 Text | Uses:6 | Used by:35 |
Symbol 34 Graphic | Used by:35 | |
Symbol 35 Button | Uses:32 33 34 | Used by:Timeline |
Symbol 36 Text | Uses:6 | Used by:39 |
Symbol 37 Text | Uses:6 | Used by:39 |
Symbol 38 Graphic | Used by:39 | |
Symbol 39 Button | Uses:36 37 38 | Used by:Timeline |
Symbol 40 Text | Uses:6 | Used by:42 |
Symbol 41 Text | Uses:6 | Used by:42 |
Symbol 42 Button | Uses:40 41 | Used by:Timeline |
Symbol 43 Text | Uses:6 | Used by:44 |
Symbol 44 MovieClip | Uses:43 | Used by:Timeline |
Symbol 45 Bitmap | Used by:46 52 | |
Symbol 46 Graphic | Uses:45 | Used by:Timeline |
Symbol 47 Text | Uses:6 | Used by:Timeline |
Symbol 48 Graphic | Used by:51 144 | |
Symbol 49 Graphic | Used by:51 144 | |
Symbol 50 Graphic | Used by:51 144 | |
Symbol 51 Button | Uses:48 49 50 | Used by:Timeline |
Symbol 52 Graphic | Uses:45 | Used by:Timeline |
Symbol 53 Font | Used by:54 64 65 68 69 73 75 77 143 145 | |
Symbol 54 Text | Uses:53 | Used by:Timeline |
Symbol 55 Text | Uses:6 | Used by:Timeline |
Symbol 56 Text | Uses:6 | Used by:59 |
Symbol 57 Text | Uses:6 | Used by:59 |
Symbol 58 Graphic | Used by:59 | |
Symbol 59 Button | Uses:56 57 58 | Used by:Timeline |
Symbol 60 Graphic | Used by:61 | |
Symbol 61 MovieClip | Uses:60 | Used by:Timeline |
Symbol 62 Font | Used by:63 | |
Symbol 63 EditableText | Uses:62 | Used by:Timeline |
Symbol 64 Text | Uses:53 | Used by:Timeline |
Symbol 65 EditableText | Uses:53 | Used by:Timeline |
Symbol 66 Graphic | Used by:67 | |
Symbol 67 Button | Uses:66 | Used by:Timeline |
Symbol 68 Text | Uses:53 | Used by:Timeline |
Symbol 69 Text | Uses:53 | Used by:70 |
Symbol 70 Button | Uses:69 | Used by:Timeline |
Symbol 71 Bitmap | Used by:72 | |
Symbol 72 Graphic | Uses:71 | Used by:Timeline |
Symbol 73 Text | Uses:53 | Used by:Timeline |
Symbol 74 Graphic | Used by:79 102 116 | |
Symbol 75 Text | Uses:53 | Used by:79 102 116 |
Symbol 76 Graphic | Used by:79 102 116 | |
Symbol 77 Text | Uses:53 | Used by:79 102 116 |
Symbol 78 Graphic | Used by:79 102 116 | |
Symbol 79 Button | Uses:74 75 76 77 78 | Used by:Timeline |
Symbol 80 Bitmap | Used by:81 | |
Symbol 81 Graphic | Uses:80 | Used by:Timeline |
Symbol 82 EditableText | Uses:16 | Used by:Timeline |
Symbol 83 EditableText | Uses:16 | Used by:Timeline |
Symbol 84 EditableText | Uses:16 | Used by:Timeline |
Symbol 85 ShapeTweening | Used by:92 | |
Symbol 86 ShapeTweening | Used by:92 | |
Symbol 87 ShapeTweening | Used by:92 | |
Symbol 88 ShapeTweening | Used by:92 | |
Symbol 89 ShapeTweening | Used by:92 | |
Symbol 90 ShapeTweening | Used by:92 | |
Symbol 91 Graphic | Used by:92 | |
Symbol 92 MovieClip | Uses:85 86 87 88 89 90 91 | Used by:Timeline |
Symbol 93 ShapeTweening | Used by:97 | |
Symbol 94 ShapeTweening | Used by:97 | |
Symbol 95 ShapeTweening | Used by:97 | |
Symbol 96 Graphic | Used by:97 | |
Symbol 97 MovieClip | Uses:93 94 95 96 | Used by:Timeline |
Symbol 98 Graphic | Used by:99 | |
Symbol 99 MovieClip | Uses:98 | Used by:Timeline |
Symbol 100 Bitmap | Used by:101 | |
Symbol 101 Graphic | Uses:100 | Used by:Timeline |
Symbol 102 Button | Uses:74 75 76 77 78 | Used by:Timeline |
Symbol 103 Bitmap | Used by:104 | |
Symbol 104 Graphic | Uses:103 | Used by:Timeline |
Symbol 105 EditableText | Uses:16 | Used by:Timeline |
Symbol 106 EditableText | Uses:16 | Used by:Timeline |
Symbol 107 EditableText | Uses:16 | Used by:Timeline |
Symbol 108 Graphic | Used by:109 | |
Symbol 109 MovieClip | Uses:108 | Used by:Timeline |
Symbol 110 ShapeTweening | Used by:113 | |
Symbol 111 ShapeTweening | Used by:113 | |
Symbol 112 Graphic | Used by:113 | |
Symbol 113 MovieClip | Uses:110 111 112 | Used by:Timeline |
Symbol 114 Bitmap | Used by:115 | |
Symbol 115 Graphic | Uses:114 | Used by:Timeline |
Symbol 116 Button | Uses:74 75 76 77 78 | Used by:Timeline |
Symbol 117 Bitmap | Used by:118 | |
Symbol 118 Graphic | Uses:117 | Used by:Timeline |
Symbol 119 EditableText | Uses:16 | Used by:Timeline |
Symbol 120 EditableText | Uses:16 | Used by:Timeline |
Symbol 121 EditableText | Uses:16 | Used by:Timeline |
Symbol 122 Graphic | Used by:133 | |
Symbol 123 Graphic | Used by:133 | |
Symbol 124 Graphic | Used by:133 | |
Symbol 125 Graphic | Used by:133 | |
Symbol 126 Graphic | Used by:133 | |
Symbol 127 Graphic | Used by:133 | |
Symbol 128 Graphic | Used by:133 | |
Symbol 129 Graphic | Used by:133 | |
Symbol 130 Graphic | Used by:133 | |
Symbol 131 Graphic | Used by:133 | |
Symbol 132 Graphic | Used by:133 | |
Symbol 133 MovieClip | Uses:122 123 124 125 126 127 128 129 130 131 132 | Used by:Timeline |
Symbol 134 Graphic | Used by:140 | |
Symbol 135 Graphic | Used by:140 | |
Symbol 136 Graphic | Used by:140 | |
Symbol 137 Graphic | Used by:140 | |
Symbol 138 Graphic | Used by:140 | |
Symbol 139 Graphic | Used by:140 | |
Symbol 140 MovieClip | Uses:134 135 136 137 138 139 | Used by:Timeline |
Symbol 141 Bitmap | Used by:142 | |
Symbol 142 Graphic | Uses:141 | Used by:Timeline |
Symbol 143 Text | Uses:53 | Used by:Timeline |
Symbol 144 Button | Uses:48 49 50 | Used by:Timeline |
Symbol 145 Text | Uses:53 | Used by:Timeline |
Symbol 146 Graphic | Used by:147 | |
Symbol 147 MovieClip | Uses:146 | Used by:Timeline |
Symbol 148 Text | Uses:6 | Used by:151 |
Symbol 149 Text | Uses:6 | Used by:151 |
Symbol 150 Graphic | Used by:151 | |
Symbol 151 Button | Uses:148 149 150 | Used by:Timeline |
Instance Names
"magicalzorsecircle" | Frame 2 | Symbol 11 MovieClip |
"enemy" | Frame 2 | Symbol 15 MovieClip |
"Text" | Frame 4 | Symbol 44 MovieClip |
"btn_send" | Frame 7 | Symbol 67 Button |
"circle2" | Frame 9 | Symbol 92 MovieClip |
"square2" | Frame 9 | Symbol 97 MovieClip |
"square3" | Frame 13 | Symbol 109 MovieClip |
"circle3" | Frame 13 | Symbol 113 MovieClip |
"square4" | Frame 16 | Symbol 133 MovieClip |
"circle4" | Frame 16 | Symbol 140 MovieClip |
"enemychar" | Symbol 15 MovieClip Frame 1 | Symbol 14 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 "song1" |
Dynamic Text Variables
friction | Symbol 18 EditableText | "<p align="left"></p>" |
life | Symbol 20 EditableText | "<p align="left"></p>" |
score | Symbol 22 EditableText | "<p align="left"></p>" |
score | Symbol 63 EditableText | "" |
playername | Symbol 65 EditableText | "" |
friction | Symbol 82 EditableText | "<p align="left"></p>" |
life | Symbol 83 EditableText | "<p align="left"></p>" |
score | Symbol 84 EditableText | "<p align="left"></p>" |
friction | Symbol 105 EditableText | "<p align="left"></p>" |
life | Symbol 106 EditableText | "<p align="left"></p>" |
score | Symbol 107 EditableText | "<p align="left"></p>" |
friction | Symbol 119 EditableText | "<p align="left"></p>" |
life | Symbol 120 EditableText | "<p align="left"></p>" |
score | Symbol 121 EditableText | "<p align="left"></p>" |
|