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

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

Girl Games - Frosty And Friends.swf

This is the info page for
Flash #122583

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


Text
Score:

ActionScript [AS1/AS2]

Frame 2
stop();
Frame 3
function game_init() { removed = 0; score = 0; interval = 250; x2_horiz_pos = 0; mult = 1; game_over = 0; turns = 0; tiles_placed = 0; x = 0; while (x < 10) { field[x] = Array(); y = 0; while (y < 10) { field[x][y] = 0; y++; } x++; } _root.createEmptyMovieClip("things", _root.getNextHighestDepth()); score_obj.score.text = "Score: " + score; place_line(); } function place_line() { x = 0; while (x < 10) { tiles_placed++; if (field[x][0] != 0) { push_blocks(x); } tile = things.attachMovie("tile", "tile_" + tiles_placed, tiles_placed, {_x:10 + (32 * x), _y:300}); num = Math.floor(Math.random() * 6) + 1; tile.gotoAndStop(num); field[x][0] = tiles_placed; x++; } } function push_blocks(col_number) { i = 9; while (i >= 0) { if (!game_over) { if (field[col_number][i] != 0) { if (i != 9) { field[col_number][i + 1] = field[col_number][i]; things["tile_" + field[col_number][i]]._y = things["tile_" + field[col_number][i]]._y - 32; } else { things._alpha = 50; game_over = 1; bXlnYW1lX25hbWVfdmFyaWFibGU = player_name; bXlnYW1lX3Njb3JlX3ZhcmlhYmxl = score; __rankz_send__("MTk0MWolZSVhJW4lcw==", "cHltcFpTaGI=", bXlnYW1lX25hbWVfdmFyaWFibGU, bXlnYW1lX3Njb3JlX3ZhcmlhYmxl); rankz_t10_send = new LoadVars(); _root.attachMovie("ohno", "ohno", _root.getNextHighestDepth(), {_x:75, _y:5}); again_button = ohno.attachMovie("playagain", "playagain", _root.getNextHighestDepth()); again_button._x = 100; again_button._y = 300; again_button.onPress = function () { things.removeMovieClip(); game_init(); ohno.removeMovieClip(); }; } } } i--; } } function remove_tiles(tx, ty, clicked) { tile_type = things["tile_" + field[tx][ty]]._currentframe; if (!clicked) { things["tile_" + field[tx][ty]].onEnterFrame = function () { this._y++; this._alpha--; if (this._alpha == 0) { this.removeMovieClip(); } }; field[tx][ty] = 0; removed++; if (ty == x2_horiz_pos) { mult = 2; } } if ((field[tx + 1][ty] != 0) and (things["tile_" + field[tx + 1][ty]]._currentframe == tile_type)) { remove_tiles(tx + 1, ty); } if ((field[tx - 1][ty] != 0) and (things["tile_" + field[tx - 1][ty]]._currentframe == tile_type)) { remove_tiles(tx - 1, ty); } if ((field[tx][ty + 1] != 0) and (things["tile_" + field[tx][ty + 1]]._currentframe == tile_type)) { remove_tiles(tx, ty + 1); } if ((field[tx][ty - 1] != 0) and (things["tile_" + field[tx][ty - 1]]._currentframe == tile_type)) { remove_tiles(tx, ty - 1); } } function update_field() { i = 0; while (i < 10) { j = 1; while (j < 10) { if ((field[i][j] != 0) and (field[i][j - 1] == 0)) { falling = j - 1; while ((field[i][falling] == 0) and (falling >= 0)) { field[i][falling] = field[i][falling + 1]; things["tile_" + field[i][falling + 1]]._y = things["tile_" + field[i][falling + 1]]._y + 32; field[i][falling + 1] = 0; falling--; } } j++; } i++; } } stop(); field = Array(); _root.attachMovie("splash", "splash", _root.getNextHighestDepth()); _root.attachMovie("playbutton", "playbutton", _root.getNextHighestDepth()); _root.attachMovie("soundbutton", "soundbutton", _root.getNextHighestDepth()); playbutton._x = 105; playbutton._y = 222; soundbutton._x = 425; soundbutton._y = 40; music = new Sound(this); music.attachSound("music"); music.start(0, 10000); playing_the_game = false; playbutton.onPress = function () { player_name = splash.your_name.text; playing_the_game = true; _root.attachMovie("bg", "bg", _root.getNextHighestDepth()); _root.attachMovie("x2_horiz", "x2_horiz", _root.getNextHighestDepth(), {_x:10}); _root.createEmptyMovieClip("bar", _root.getNextHighestDepth()); _root.attachMovie("score", "score_obj", _root.getNextHighestDepth(), {_x:340, _y:10}); game_init(); splash.removeMovieClip(); _root.soundbutton._y = 10000; this._y = 10000; }; soundbutton.onPress = function () { music.stop(); }; _root.onEnterFrame = function () { if (!game_over) { interval--; if (interval == 0) { turns++; interval = 250 - turns; place_line(); x2_horiz_pos = Math.floor(Math.random() * 10); x2_horiz._y = 300 - (x2_horiz_pos * 32); } bar.clear(); bar.lineStyle(6, 16777215); bar.moveTo(10, 350); bar.lineTo(328, 350); bar.lineStyle(4, 0); bar.moveTo(10, 350); bar.lineTo(10 + ((318 * interval) / (250 - turns)), 350); } }; onMouseDown = function () { if (playing_the_game) { if (!game_over) { x_tile_clicked = Math.floor((_root._xmouse - 10) / 32); y_tile_clicked = -Math.floor((_root._ymouse - 300) / 32); if ((((x_tile_clicked >= 0) and (x_tile_clicked <= 9)) and (y_tile_clicked >= 0)) and (y_tile_clicked <= 9)) { if (field[x_tile_clicked][y_tile_clicked] != 0) { remove_tiles(x_tile_clicked, y_tile_clicked, 1); update_field(); i = 1; while (i <= removed) { score = score + (i * mult); i++; } score_obj.score.text = "Score: " + score; removed = 0; mult = 1; } } } } };
Symbol 18 Button
on (release) { getURL ("http://lulz.ws", "_blank"); }
Symbol 19 Button
on (release) { getURL ("http://thatcomposerguy.newgrounds.com/", "_blank"); }
Symbol 34 MovieClip Frame 11
stop();
Symbol 36 Button
on (release) { getURL ("http://lulz.ws/", "_blank"); }
Symbol 39 Button
on (release) { getURL ("http://lulz.ws/index.php?task=tag&t=christmas", "_blank"); }
Symbol 58 MovieClip Frame 83
stop();
Symbol 59 MovieClip Frame 180
_root.nextFrame();
Symbol 60 Button
on (release) { var link = "http://www.lulz.ws"; this.getURL(link, "_blank"); }

Library Items

Symbol 1 Sound [music]
Symbol 2 BitmapUsed by:3
Symbol 3 GraphicUses:2Used by:14
Symbol 4 BitmapUsed by:5
Symbol 5 GraphicUses:4Used by:14
Symbol 6 BitmapUsed by:7
Symbol 7 GraphicUses:6Used by:14
Symbol 8 BitmapUsed by:9
Symbol 9 GraphicUses:8Used by:14
Symbol 10 BitmapUsed by:11
Symbol 11 GraphicUses:10Used by:14
Symbol 12 BitmapUsed by:13
Symbol 13 GraphicUses:12Used by:14
Symbol 14 MovieClip [tile]Uses:3 5 7 9 11 13
Symbol 15 BitmapUsed by:16
Symbol 16 GraphicUses:15Used by:20
Symbol 17 GraphicUsed by:18 19 39
Symbol 18 ButtonUses:17Used by:20 26 40
Symbol 19 ButtonUses:17Used by:20
Symbol 20 MovieClip [splash]Uses:16 18 19
Symbol 21 FontUsed by:22
Symbol 22 EditableTextUses:21Used by:23
Symbol 23 MovieClip [score]Uses:22
Symbol 24 BitmapUsed by:25
Symbol 25 GraphicUses:24Used by:26
Symbol 26 MovieClip [ohno]Uses:25 18
Symbol 27 GraphicUsed by:40
Symbol 28 BitmapUsed by:29
Symbol 29 GraphicUses:28Used by:33
Symbol 30 BitmapUsed by:31
Symbol 31 GraphicUses:30Used by:32
Symbol 32 MovieClipUses:31Used by:33
Symbol 33 MovieClipUses:29 32Used by:34 36
Symbol 34 MovieClipUses:33Used by:36
Symbol 35 GraphicUsed by:36
Symbol 36 ButtonUses:33 34 35Used by:40
Symbol 37 BitmapUsed by:38
Symbol 38 GraphicUses:37Used by:40
Symbol 39 ButtonUses:17Used by:40
Symbol 40 MovieClip [bg]Uses:27 18 36 38 39
Symbol 41 BitmapUsed by:42
Symbol 42 GraphicUses:41Used by:43
Symbol 43 Button [playagain]Uses:42
Symbol 44 BitmapUsed by:45
Symbol 45 GraphicUses:44Used by:46
Symbol 46 Button [soundbutton]Uses:45
Symbol 47 BitmapUsed by:48
Symbol 48 GraphicUses:47Used by:49
Symbol 49 Button [playbutton]Uses:48
Symbol 50 GraphicUsed by:61
Symbol 51 GraphicUsed by:58 59 60
Symbol 52 BitmapUsed by:53
Symbol 53 GraphicUses:52Used by:54
Symbol 54 MovieClipUses:53Used by:58
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:57
Symbol 57 MovieClipUses:56Used by:58
Symbol 58 MovieClipUses:51 54 57Used by:59
Symbol 59 MovieClipUses:51 58Used by:61
Symbol 60 ButtonUses:51Used by:61
Symbol 61 MovieClipUses:50 59 60Used by:Timeline

Instance Names

"play_more_games_button"Symbol 20 MovieClip [splash] Frame 1Symbol 18 Button
"play_more_games_button"Symbol 20 MovieClip [splash] Frame 1Symbol 19 Button
"score"Symbol 23 MovieClip [score] Frame 1Symbol 22 EditableText
"play_more_games_button"Symbol 26 MovieClip [ohno] Frame 1Symbol 18 Button
"play_more_games_button"Symbol 40 MovieClip [bg] Frame 1Symbol 18 Button
"play_more_games_button"Symbol 40 MovieClip [bg] Frame 1Symbol 39 Button

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "music"
ExportAssets (56)Timeline Frame 1Symbol 14 as "tile"
ExportAssets (56)Timeline Frame 1Symbol 20 as "splash"
ExportAssets (56)Timeline Frame 1Symbol 23 as "score"
ExportAssets (56)Timeline Frame 1Symbol 26 as "ohno"
ExportAssets (56)Timeline Frame 1Symbol 40 as "bg"
ExportAssets (56)Timeline Frame 1Symbol 43 as "playagain"
ExportAssets (56)Timeline Frame 1Symbol 46 as "soundbutton"
ExportAssets (56)Timeline Frame 1Symbol 49 as "playbutton"




http://swfchan.com/25/122583/info.shtml
Created: 3/3 -2019 22:31:25 Last modified: 3/3 -2019 22:31:25 Server time: 05/05 -2024 14:04:26