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

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

The Friction Game.swf

This is the info page for
Flash #55578

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


Text
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 1
function 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 1
onClipEvent (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 2
friction = 0.5; life = 100; score = 0; stop();
Instance of Symbol 11 MovieClip "magicalzorsecircle" in Frame 2
onClipEvent (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 2
onClipEvent (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 3
stop();
Frame 4
stop();
Frame 5
stop();
Frame 6
stop();
Frame 7
stop(); 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 8
stop();
Frame 9
friction = 0.5; life = 100; stop();
Instance of Symbol 92 MovieClip "circle2" in Frame 9
onClipEvent (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 9
onClipEvent (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 10
stop();
Instance of Symbol 99 MovieClip in Frame 10
onClipEvent (enterFrame) { if (_root.score >= 50) { _root.gotoAndStop(8); } if (_root.score < 50) { _root.gotoAndStop(7); } }
Frame 11
stop();
Instance of Symbol 99 MovieClip in Frame 11
onClipEvent (enterFrame) { if (_root.score >= 125) { _root.gotoAndStop(12); } if (_root.score < 125) { _root.gotoAndStop(7); } }
Frame 12
stop();
Frame 13
friction = 0.5; life = 100; stop();
Instance of Symbol 109 MovieClip "square3" in Frame 13
onClipEvent (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 13
onClipEvent (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 14
stop();
Instance of Symbol 99 MovieClip in Frame 14
onClipEvent (enterFrame) { if (_root.score >= 200) { _root.gotoAndStop(15); } if (_root.score < 200) { _root.gotoAndStop(7); } }
Frame 15
stop();
Frame 16
friction = 0.5; life = 100; stop();
Instance of Symbol 133 MovieClip "square4" in Frame 16
onClipEvent (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 16
onClipEvent (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 17
onClipEvent (enterFrame) { if (_root.score >= 125) { _root.gotoAndStop(18); } if (_root.score < 125) { _root.gotoAndStop(7); } }
Frame 18
stop();
Frame 19
stop();
Symbol 14 MovieClip Frame 1
stop();
Symbol 14 MovieClip Frame 2
stop();
Symbol 15 MovieClip Frame 30
_root.friction = _root.friction - 0.05; _root.enemy.gotoAndPlay(1);
Symbol 15 MovieClip Frame 31
stop();
Symbol 27 Button
on (release) { gotoAndStop (4); }
Symbol 35 Button
on (release) { gotoAndStop (5); }
Symbol 39 Button
on (release) { gotoAndStop (2); }
Symbol 42 Button
on (release) { getURL ("http://www.magical-zorse.newgrounds.com", "_blank"); _root.Text.gotoAndStop(2); }
Symbol 44 MovieClip Frame 1
stop();
Symbol 44 MovieClip Frame 2
stop();
Symbol 51 Button
on (release) { gotoAndStop (6); }
Symbol 59 Button
on (release) { gotoAndStop (4); }
Symbol 70 Button
on (release) { gotoAndStop (4); }
Symbol 79 Button
on (release) { _root.gotoAndStop(9); }
Symbol 97 MovieClip Frame 30
_root.friction = _root.friction - 0.05; _root.square2.gotoAndPlay(1);
Symbol 97 MovieClip Frame 31
stop();
Symbol 102 Button
on (release) { _root.gotoAndStop(13); }
Symbol 109 MovieClip Frame 30
_root.friction = _root.friction - 0.05;
Symbol 116 Button
on (release) { _root.gotoAndStop(16); }
Symbol 133 MovieClip Frame 30
_root.friction = _root.friction - 0.05;
Symbol 144 Button
on (release) { nextFrame(); }
Symbol 151 Button
on (release) { gotoAndStop (7); }

Library Items

Symbol 1 Sound [song1]
Symbol 2 BitmapUsed by:3 23
Symbol 3 GraphicUses:2Used by:Timeline
Symbol 4 GraphicUsed by:5
Symbol 5 MovieClipUses:4Used by:Timeline
Symbol 6 FontUsed by:7 8 28 31 32 33 36 37 40 41 43 47 55 56 57 148 149
Symbol 7 TextUses:6Used by:Timeline
Symbol 8 TextUses:6Used by:Timeline
Symbol 9 GraphicUsed by:Timeline
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:Timeline
Symbol 12 GraphicUsed by:14
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:12 13Used by:15
Symbol 15 MovieClipUses:14Used by:Timeline
Symbol 16 FontUsed by:17 18 19 20 21 22 82 83 84 105 106 107 119 120 121
Symbol 17 TextUses:16Used by:Timeline
Symbol 18 EditableTextUses:16Used by:Timeline
Symbol 19 TextUses:16Used by:Timeline
Symbol 20 EditableTextUses:16Used by:Timeline
Symbol 21 TextUses:16Used by:Timeline
Symbol 22 EditableTextUses:16Used by:Timeline
Symbol 23 GraphicUses:2Used by:Timeline
Symbol 24 GraphicUsed by:27
Symbol 25 GraphicUsed by:27
Symbol 26 GraphicUsed by:27
Symbol 27 ButtonUses:24 25 26Used by:Timeline
Symbol 28 TextUses:6Used by:Timeline
Symbol 29 BitmapUsed by:30
Symbol 30 GraphicUses:29Used by:Timeline
Symbol 31 TextUses:6Used by:Timeline
Symbol 32 TextUses:6Used by:35
Symbol 33 TextUses:6Used by:35
Symbol 34 GraphicUsed by:35
Symbol 35 ButtonUses:32 33 34Used by:Timeline
Symbol 36 TextUses:6Used by:39
Symbol 37 TextUses:6Used by:39
Symbol 38 GraphicUsed by:39
Symbol 39 ButtonUses:36 37 38Used by:Timeline
Symbol 40 TextUses:6Used by:42
Symbol 41 TextUses:6Used by:42
Symbol 42 ButtonUses:40 41Used by:Timeline
Symbol 43 TextUses:6Used by:44
Symbol 44 MovieClipUses:43Used by:Timeline
Symbol 45 BitmapUsed by:46 52
Symbol 46 GraphicUses:45Used by:Timeline
Symbol 47 TextUses:6Used by:Timeline
Symbol 48 GraphicUsed by:51 144
Symbol 49 GraphicUsed by:51 144
Symbol 50 GraphicUsed by:51 144
Symbol 51 ButtonUses:48 49 50Used by:Timeline
Symbol 52 GraphicUses:45Used by:Timeline
Symbol 53 FontUsed by:54 64 65 68 69 73 75 77 143 145
Symbol 54 TextUses:53Used by:Timeline
Symbol 55 TextUses:6Used by:Timeline
Symbol 56 TextUses:6Used by:59
Symbol 57 TextUses:6Used by:59
Symbol 58 GraphicUsed by:59
Symbol 59 ButtonUses:56 57 58Used by:Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:Timeline
Symbol 62 FontUsed by:63
Symbol 63 EditableTextUses:62Used by:Timeline
Symbol 64 TextUses:53Used by:Timeline
Symbol 65 EditableTextUses:53Used by:Timeline
Symbol 66 GraphicUsed by:67
Symbol 67 ButtonUses:66Used by:Timeline
Symbol 68 TextUses:53Used by:Timeline
Symbol 69 TextUses:53Used by:70
Symbol 70 ButtonUses:69Used by:Timeline
Symbol 71 BitmapUsed by:72
Symbol 72 GraphicUses:71Used by:Timeline
Symbol 73 TextUses:53Used by:Timeline
Symbol 74 GraphicUsed by:79 102 116
Symbol 75 TextUses:53Used by:79 102 116
Symbol 76 GraphicUsed by:79 102 116
Symbol 77 TextUses:53Used by:79 102 116
Symbol 78 GraphicUsed by:79 102 116
Symbol 79 ButtonUses:74 75 76 77 78Used by:Timeline
Symbol 80 BitmapUsed by:81
Symbol 81 GraphicUses:80Used by:Timeline
Symbol 82 EditableTextUses:16Used by:Timeline
Symbol 83 EditableTextUses:16Used by:Timeline
Symbol 84 EditableTextUses:16Used by:Timeline
Symbol 85 ShapeTweeningUsed by:92
Symbol 86 ShapeTweeningUsed by:92
Symbol 87 ShapeTweeningUsed by:92
Symbol 88 ShapeTweeningUsed by:92
Symbol 89 ShapeTweeningUsed by:92
Symbol 90 ShapeTweeningUsed by:92
Symbol 91 GraphicUsed by:92
Symbol 92 MovieClipUses:85 86 87 88 89 90 91Used by:Timeline
Symbol 93 ShapeTweeningUsed by:97
Symbol 94 ShapeTweeningUsed by:97
Symbol 95 ShapeTweeningUsed by:97
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClipUses:93 94 95 96Used by:Timeline
Symbol 98 GraphicUsed by:99
Symbol 99 MovieClipUses:98Used by:Timeline
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:Timeline
Symbol 102 ButtonUses:74 75 76 77 78Used by:Timeline
Symbol 103 BitmapUsed by:104
Symbol 104 GraphicUses:103Used by:Timeline
Symbol 105 EditableTextUses:16Used by:Timeline
Symbol 106 EditableTextUses:16Used by:Timeline
Symbol 107 EditableTextUses:16Used by:Timeline
Symbol 108 GraphicUsed by:109
Symbol 109 MovieClipUses:108Used by:Timeline
Symbol 110 ShapeTweeningUsed by:113
Symbol 111 ShapeTweeningUsed by:113
Symbol 112 GraphicUsed by:113
Symbol 113 MovieClipUses:110 111 112Used by:Timeline
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:Timeline
Symbol 116 ButtonUses:74 75 76 77 78Used by:Timeline
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:Timeline
Symbol 119 EditableTextUses:16Used by:Timeline
Symbol 120 EditableTextUses:16Used by:Timeline
Symbol 121 EditableTextUses:16Used by:Timeline
Symbol 122 GraphicUsed by:133
Symbol 123 GraphicUsed by:133
Symbol 124 GraphicUsed by:133
Symbol 125 GraphicUsed by:133
Symbol 126 GraphicUsed by:133
Symbol 127 GraphicUsed by:133
Symbol 128 GraphicUsed by:133
Symbol 129 GraphicUsed by:133
Symbol 130 GraphicUsed by:133
Symbol 131 GraphicUsed by:133
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClipUses:122 123 124 125 126 127 128 129 130 131 132Used by:Timeline
Symbol 134 GraphicUsed by:140
Symbol 135 GraphicUsed by:140
Symbol 136 GraphicUsed by:140
Symbol 137 GraphicUsed by:140
Symbol 138 GraphicUsed by:140
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:134 135 136 137 138 139Used by:Timeline
Symbol 141 BitmapUsed by:142
Symbol 142 GraphicUses:141Used by:Timeline
Symbol 143 TextUses:53Used by:Timeline
Symbol 144 ButtonUses:48 49 50Used by:Timeline
Symbol 145 TextUses:53Used by:Timeline
Symbol 146 GraphicUsed by:147
Symbol 147 MovieClipUses:146Used by:Timeline
Symbol 148 TextUses:6Used by:151
Symbol 149 TextUses:6Used by:151
Symbol 150 GraphicUsed by:151
Symbol 151 ButtonUses:148 149 150Used by:Timeline

Instance Names

"magicalzorsecircle"Frame 2Symbol 11 MovieClip
"enemy"Frame 2Symbol 15 MovieClip
"Text"Frame 4Symbol 44 MovieClip
"btn_send"Frame 7Symbol 67 Button
"circle2"Frame 9Symbol 92 MovieClip
"square2"Frame 9Symbol 97 MovieClip
"square3"Frame 13Symbol 109 MovieClip
"circle3"Frame 13Symbol 113 MovieClip
"square4"Frame 16Symbol 133 MovieClip
"circle4"Frame 16Symbol 140 MovieClip
"enemychar"Symbol 15 MovieClip Frame 1Symbol 14 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "song1"

Dynamic Text Variables

frictionSymbol 18 EditableText"<p align="left"></p>"
lifeSymbol 20 EditableText"<p align="left"></p>"
scoreSymbol 22 EditableText"<p align="left"></p>"
scoreSymbol 63 EditableText""
playernameSymbol 65 EditableText""
frictionSymbol 82 EditableText"<p align="left"></p>"
lifeSymbol 83 EditableText"<p align="left"></p>"
scoreSymbol 84 EditableText"<p align="left"></p>"
frictionSymbol 105 EditableText"<p align="left"></p>"
lifeSymbol 106 EditableText"<p align="left"></p>"
scoreSymbol 107 EditableText"<p align="left"></p>"
frictionSymbol 119 EditableText"<p align="left"></p>"
lifeSymbol 120 EditableText"<p align="left"></p>"
scoreSymbol 121 EditableText"<p align="left"></p>"




http://swfchan.com/12/55578/info.shtml
Created: 20/4 -2019 07:33:07 Last modified: 20/4 -2019 07:33:07 Server time: 14/05 -2024 06:59:13