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

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

snake.swf

This is the info page for
Flash #25252

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


Text
PRESENTS

11%

LOADING...

access denied

start

start

start

Instructions

Use the left and right
arrows to move the
snake. Watch out for the
walls and your tail!

Score:

0

0

High Score:

Special Points:

0

try again?

try again?

GAME OVER

GAME OVER

CONGRATULATIONS

CONGRATULATIONS

your final score is:

0

ActionScript [AS1/AS2]

Frame 1
stop(); fscommand ("fullscreen", "false"); fscommand ("allowscale", "false"); fscommand ("showmenu", "false");
Frame 2
fscommand ("fullscreen", "false"); fscommand ("allowscale", "false"); fscommand ("showmenu", "false"); current_bytes = this.getBytesLoaded(); tot_bytes = this.getBytesTotal(); percent = int((current_bytes / tot_bytes) * 100) + "% "; if (current_bytes >= tot_bytes) { gotoAndPlay (5); }
Frame 3
this.gotoAndPlay("loader");
Frame 6
c1 = _url.indexOf("://") + 3; c2 = _url.indexOf("/", c1); domain = _url.substring(c1, c2); if (((domain == "www.dreamarcade.com") || (domain == "216.55.181.4")) || (domain == "www.ultimatearcade.com")) { gotoAndStop (8); } else { gotoAndStop (8); }
Frame 7
stop();
Frame 8
play();
Frame 16
function move() { posx[0] = _root.snake._x; posy[0] = _root.snake._y; _root.snake._x = _root.snake._x + (4 * Math.cos((Math.PI/180) * theta)); _root.snake._y = _root.snake._y + (4 * Math.sin((Math.PI/180) * theta)); if (_root.init) { t = 0; while (t < _root.snakelength) { nn = "body" + Number(t); duplicateMovieClip ("snake", nn, t); nn._x = -20; nn._y = -20; t++; } _root.init = false; _root.specialtime.stime = 0; _root.specialtime.sout = false; _root.specialtime._visible = false; } _root.ltf(); t = _root.snakelength - 1; while (t > 0) { posx[t] = posx[t - 1]; posy[t] = posy[t - 1]; t--; } if (collide(_root.food._x, _root.food._y)) { _root.foods = false; t = 0; while (t < 20) { nn = "body" + Number(_root.snakelength); duplicateMovieClip ("snake", nn, _root.snakelength); nn._x = -20; nn._y = -20; posx[_root.snakelength] = posx[_root.snakelength - 1]; posy[_root.snakelength] = posy[_root.snakelength - 1]; _root.snakelength++; fx = new sound(); fx.attachSound("fx"); fx.start(); fx.setVolume(50); t++; } t = 0; while (t < _root.snakelength) { nn = "body" + Number(t); setProperty(nn, _x , posx[t]); setProperty(nn, _y , posy[t]); t++; } _root.count = 0; _root.score = _root.score + 5; } if (collide(_root.specialfood._x, _root.specialfood._y)) { fx2 = new sound(); fx2.attachSound("fx2"); fx2.start(); fx2.setVolume(70); _root.score = _root.score + Number(_root.specialtime.spoints); _root.specialtime.spoints = 0; _root.specialtime.stime = 0; _root.specialfood._x = -30; _root.specialfood._y = -20; _root.specialtime.sout = false; _root.specialtime._visible = false; } if (_root.specialtime.sout) { _root.specialtime.stime = _root.specialtime.stime - 1; _root.specialtime.spoints = int(_root.specialtime.stime / 10.5); if (_root.specialtime.stime == 0) { _root.specialfood._x = -30; _root.specialfood._y = -20; _root.specialtime.sout = false; _root.specialtime._visible = false; } } if (!_root.foods) { x = random(292) + 19; y = random(272) + 19; _root.food._x = x; _root.food._y = y; if ((_root.score != 0) && (((_root.snakelength - 19) % 100) == 0)) { sx = random(292) + 19; sy = random(272) + 19; _root.specialfood._x = sx; _root.specialfood._y = sy; _root.specialtime.stime = 210; _root.specialtime.spoints = 20; _root.specialtime.sout = true; _root.specialtime._visible = true; } _root.foods = true; } if ((((_root.snake._x < 10) || (_root.snake._x > 310)) || (_root.snake._y < 10)) || (_root.snake._y > 290)) { _root.destroy(); } t = 0; while (t < _root.snakelength) { if (collide(posx[t], posy[t])) { _root.destroy(); } t++; } } function ltf() { last = (_root.snakelength - 1) - _root.count; nn = "body" + Number(last); _root.count++; if (last == 0) { _root.count = 0; } setProperty(nn, _x , posx[0]); setProperty(nn, _y , posy[0]); } function collide(objectx, objecty) { delta_x = _root.snake._x - objectx; delta_y = _root.snake._y - objecty; if (((delta_x * delta_x) + (delta_y * delta_y)) < 15) { return(true); } return(false); } function destroy() { _root.crash._x = _root.snake._x; _root.crash._y = _root.snake._y; t = 0; while (t < _root.snakelength) { nn = "body" + Number(t); removeMovieClip(nn); t++; } _root.snake._visible = false; _root.crash.gotoAndPlay(2); if (score > _root.scoretable.topten.SCORE9) { gotoAndStop (20); } else { gotoAndStop (19); } } sfile = "http://www"; sview = sfile + "?filename=score.sco&scoresize=10&action=VIEW&viewtype=FLASH"; posx = new Array(); posy = new Array(); snakelength = 19; t = 0; while (t < snakelength) { posx[t] = -20; posy[t] = -20; t++; } init = true; theta = 0; foods = false; score = 0; count = 0; _root.scoretable.topten.loadVariables(_root.sview); _root.scoretable._visible = false; stop();
Frame 17
move(); if (Key.isDown(39)) { theta = theta + 10; if (theta >= 360) { theta = theta - 360; } } else if (Key.isDown(37)) { theta = theta - 10; if (theta < 0) { theta = theta + 360; } }
Frame 18
gotoAndPlay (17);
Frame 19
_root.scoretable._visible = true; stop();
Frame 20
playername = "<enter your name>"; stop();
Symbol 9 MovieClip Frame 79
_root.gotoAndPlay(2);
Symbol 13 Button
on (release) { getURL ("http://www.ultimatearcade.com", "_blank"); }
Symbol 22 MovieClip Frame 2
stop();
Symbol 41 Button
on (release) { gotoAndPlay (17); } on (rollOver) { _root.crash.gotoAndPlay(4); }
Symbol 42 Button
on (keyPress "<Space>") { gotoAndPlay (17); }
Symbol 52 Button
on (release) { getURL ("http://www.ultimatearcade.com/", "_blank"); }
Symbol 56 Button
on (release) { getURL ("http://www.ultimatearcade.com/downloads/", "_blank"); }
Symbol 80 MovieClip Frame 1
stop();
Symbol 99 Button
on (keyPress "<Space>") { gotoAndPlay (16); }
Symbol 105 Button
on (release) { gotoAndPlay (16); }
Symbol 109 MovieClip Frame 12
stop();
Symbol 110 Button
on (keyPress "<Space>") { gotoAndPlay (16); } on (keyPress "<Enter>") { _root.scoretable.topten.ssend(); }

Library Items

Symbol 1 Sound [fx]
Symbol 2 Sound [fx2]
Symbol 3 BitmapUsed by:4
Symbol 4 GraphicUses:3Used by:7
Symbol 5 FontUsed by:6
Symbol 6 TextUses:5Used by:7
Symbol 7 MovieClipUses:4 6Used by:9
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:7 8Used by:Timeline
Symbol 10 GraphicUsed by:11 13
Symbol 11 MovieClipUses:10Used by:13
Symbol 12 GraphicUsed by:13
Symbol 13 ButtonUses:11 12 10Used by:Timeline
Symbol 14 GraphicUsed by:Timeline
Symbol 15 FontUsed by:16 21
Symbol 16 EditableTextUses:15Used by:Timeline
Symbol 17 FontUsed by:18 106 107 111 112
Symbol 18 TextUses:17Used by:Timeline
Symbol 19 GraphicUsed by:20 42 99 110
Symbol 20 MovieClipUses:19Used by:Timeline
Symbol 21 TextUses:15Used by:22
Symbol 22 MovieClipUses:21Used by:Timeline
Symbol 23 GraphicUsed by:Timeline
Symbol 24 FontUsed by:25 36 38
Symbol 25 TextUses:24Used by:41
Symbol 26 GraphicUsed by:27 32
Symbol 27 MovieClipUses:26Used by:35
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:28Used by:35
Symbol 30 GraphicUsed by:31
Symbol 31 MovieClipUses:30Used by:35
Symbol 32 MovieClipUses:26Used by:35
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:33Used by:35
Symbol 35 MovieClipUses:27 29 31 32 34Used by:41
Symbol 36 TextUses:24Used by:41
Symbol 37 GraphicUsed by:41
Symbol 38 TextUses:24Used by:41
Symbol 39 SoundUsed by:41
Symbol 40 SoundUsed by:41
Symbol 41 ButtonUses:25 35 36 37 38 39 40Used by:Timeline
Symbol 42 ButtonUses:19Used by:Timeline
Symbol 43 FontUsed by:44
Symbol 44 TextUses:43Used by:Timeline
Symbol 45 FontUsed by:46
Symbol 46 TextUses:45Used by:Timeline
Symbol 47 GraphicUsed by:57
Symbol 48 GraphicUsed by:52
Symbol 49 GraphicUsed by:52
Symbol 50 GraphicUsed by:52
Symbol 51 SoundUsed by:52 56
Symbol 52 ButtonUses:48 49 50 51Used by:57
Symbol 53 GraphicUsed by:56
Symbol 54 GraphicUsed by:56
Symbol 55 GraphicUsed by:56
Symbol 56 ButtonUses:53 54 55 51Used by:57
Symbol 57 MovieClipUses:47 52 56Used by:Timeline
Symbol 58 BitmapUsed by:59
Symbol 59 GraphicUses:58Used by:Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:63
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:61 62Used by:Timeline
Symbol 64 GraphicUsed by:80
Symbol 65 SoundUsed by:80
Symbol 66 GraphicUsed by:80
Symbol 67 GraphicUsed by:80
Symbol 68 GraphicUsed by:80
Symbol 69 GraphicUsed by:80
Symbol 70 GraphicUsed by:80
Symbol 71 GraphicUsed by:80
Symbol 72 GraphicUsed by:80
Symbol 73 GraphicUsed by:80
Symbol 74 GraphicUsed by:80
Symbol 75 GraphicUsed by:80
Symbol 76 GraphicUsed by:80
Symbol 77 GraphicUsed by:80
Symbol 78 GraphicUsed by:80
Symbol 79 GraphicUsed by:80
Symbol 80 MovieClipUses:64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79Used by:Timeline
Symbol 81 GraphicUsed by:Timeline
Symbol 82 SoundUsed by:Timeline
Symbol 83 FontUsed by:84 85 115 116
Symbol 84 TextUses:83Used by:Timeline
Symbol 85 EditableTextUses:83Used by:Timeline
Symbol 86 FontUsed by:87 88 89 90
Symbol 87 EditableTextUses:86Used by:Timeline
Symbol 88 TextUses:86Used by:Timeline
Symbol 89 TextUses:86Used by:91
Symbol 90 EditableTextUses:86Used by:91
Symbol 91 MovieClipUses:89 90Used by:Timeline
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:Timeline
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:94Used by:Timeline
Symbol 96 GraphicUsed by:98
Symbol 97 GraphicUsed by:98
Symbol 98 MovieClipUses:96 97Used by:Timeline
Symbol 99 ButtonUses:19Used by:Timeline
Symbol 100 FontUsed by:101 102
Symbol 101 TextUses:100Used by:105
Symbol 102 TextUses:100Used by:105
Symbol 103 GraphicUsed by:105
Symbol 104 SoundUsed by:105
Symbol 105 ButtonUses:101 102 103 104Used by:Timeline
Symbol 106 TextUses:17Used by:108
Symbol 107 TextUses:17Used by:108
Symbol 108 MovieClipUses:106 107Used by:109
Symbol 109 MovieClipUses:108Used by:Timeline
Symbol 110 ButtonUses:19Used by:Timeline
Symbol 111 TextUses:17Used by:113
Symbol 112 TextUses:17Used by:113
Symbol 113 MovieClipUses:111 112Used by:114
Symbol 114 MovieClipUses:113Used by:Timeline
Symbol 115 TextUses:83Used by:Timeline
Symbol 116 EditableTextUses:83Used by:Timeline

Instance Names

"crash"Frame 16Symbol 80 MovieClip
"scoretext"Frame 17Symbol 85 EditableText
"scoretext"Frame 17Symbol 87 EditableText
"specialtime"Frame 17Symbol 91 MovieClip
"snake"Frame 17Symbol 93 MovieClip
"food"Frame 17Symbol 95 MovieClip
"specialfood"Frame 17Symbol 98 MovieClip
"crash"Frame 17Symbol 80 MovieClip
"scoretext"Frame 20Symbol 116 EditableText
"scoretext"Symbol 91 MovieClip Frame 1Symbol 90 EditableText

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "fx"
ExportAssets (56)Timeline Frame 1Symbol 2 as "fx2"
Tag 0x0FF (255)Timeline Frame 11 bytes "."

Labels

"loader"Frame 2
"stolen"Frame 7
"good"Frame 8

Dynamic Text Variables

percentSymbol 16 EditableText"11%"
scoreSymbol 85 EditableText"0"
_root.scoretable.topten.SCORE0Symbol 87 EditableText"0"
spointsSymbol 90 EditableText"0"
scoreSymbol 116 EditableText"0"




http://swfchan.com/6/25252/info.shtml
Created: 23/5 -2019 22:12:49 Last modified: 23/5 -2019 22:12:49 Server time: 14/05 -2024 00:55:21