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

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

Caviar Rush.swf

This is the info page for
Flash #28323

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


Text
LOADING...

PLAY

PLAY

Caviar Rush!

Instructions

VISIT SPONSOR

Menu

Menu

You control a single caviar in the begining. Collect more
caviar by running into them. Doing this will raise your egg
count. Sounds easy right? Well theres also hungry fish
swimming around hungry for some yummy fish eggs.
hitting a fish will lower your egg count. the bigger the
fish the more eggs you lose. If your egg count hits "0",
you lose the game. Try to get your egg count as high as
possible in 5 minutes.

EGGS

Time remaining

<p align="left"><font face="Haettenschweiler" size="18" color="#ffffff" letterSpacing="0.000000" kerning="1">1</font></p>

<p align="left"><font face="Haettenschweiler" size="18" color="#ffffff" letterSpacing="0.000000" kerning="1">5:00</font></p>

GAME OVER

Your Score is

<p align="left"><font face="Haettenschweiler" size="36" color="#ffffff" letterSpacing="0.000000" kerning="1">0</font></p>

ActionScript [AS1/AS2]

Frame 2
stop();
Frame 3
stop();
Frame 4
function lose() { endscore = totalscore * 3; gotoAndStop (5); } caviar.eggs = 1; caviar.startspeed = 0.4; friction = 0.96; caviar.xvelocity = 0; caviar.yvelocity = 0; min = 2; sec = 30; endscore = 0; totalscore = 0; caviar.onEnterFrame = function () { sec = sec - 0.0416666666666667; if (sec <= 0) { min--; sec = 60; } hud.eggtxt.text = this.eggs; hud.timetxt.text = (min + ":") + Math.floor(sec); if (Key.isDown(39)) { this.xvelocity = this.xvelocity + this.startspeed; } if (Key.isDown(37)) { this.xvelocity = this.xvelocity - this.startspeed; } if (Key.isDown(40)) { this.yvelocity = this.yvelocity + this.startspeed; } if (Key.isDown(38)) { this.yvelocity = this.yvelocity - this.startspeed; } this._x = this._x + this.xvelocity; this._y = this._y + this.yvelocity; this.xvelocity = this.xvelocity * friction; this.yvelocity = this.yvelocity * friction; if (this._x < 0) { this._x = 0; } if (this._x > Stage.width) { this._x = Stage.width; } if (this._y < 0) { this._y = 0; } if (this._y > Stage.height) { this._y = Stage.height; } if (this.eggs < 25) { if (this._currentframe != 1) { this.gotoAndStop(1); } } else if (this.eggs < 100) { if (this._currentframe != 2) { this.gotoAndStop(2); } } else if (this.eggs < 500) { if (this._currentframe != 3) { this.gotoAndStop(3); } } else if (this.eggs < 2000) { if (this._currentframe != 4) { this.gotoAndStop(4); } } else if (this.eggs > 2000) { if (this._currentframe != 5) { this.gotoAndStop(5); } } }; onEnterFrame = function () { if ((caviar.eggs < 0) || (((min == 0) && (sec == 0)) || (min < 0))) { min = 0; sec = 0; caviar.eggs = 0; lose(); delete onEnterFrame; } rand = Math.random() * 100; if (rand >= ((90 + (min * 2)) + ((sec * 2) / 60))) { rand = rand + min; mc = attachMovie("fish", "fish" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); mc.dir = 1; mc._x = -50; if (Math.random() > 0.5) { mc.dir = -1; mc._x = Stage.width + 50; } mc._xscale = Math.abs(mc._xscale) * (-mc.dir); mc._y = (Math.random() * (Stage.height - hud._height)) + hud._height; mc.gotoAndStop(1); mc.score = -10; if ((rand < 97) && (rand > 95)) { mc.gotoAndStop(2); mc.score = -20; } else if ((rand > 93) && (rand < 95)) { mc.gotoAndStop(3); mc.score = -45; } else if ((rand >= 90) && (rand < 93)) { mc.gotoAndStop(4); mc.score = -75; } mc._xscale = mc._xscale * 0.5; mc._yscale = mc._yscale * 0.5; mc.speed = (Math.random() * 5) + 5; mc.onEnterFrame = function () { this._x = this._x + (this.dir * this.speed); if ((this.dir == 1) && ((this._x - this._width) > Stage.width)) { this.removeMovieClip(); } if ((this.dir == -1) && ((this._x + this._width) < 0)) { this.removeMovieClip(); } if (this.hitTest(_root.caviar)) { _root.caviar.eggs = _root.caviar.eggs + this.score; this.removeMovieClip(); } if (_root._currentframe != 4) { this.removeMovieClip(); } }; } if ((Math.random() * 100) > 96) { mc = _root.attachMovie("pickups", "pickups" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); mc._x = Stage.width + mc._width; mc._y = (Math.random() * (Stage.height - 65)) + 65; mc.speed = -8; rand = Math.round((Math.random() * 3) + 1); mc.gotoAndStop(rand); if (rand == 1) { mc.score = 5; } if (rand == 2) { mc.score = 15; } if (rand == 3) { mc.score = 30; } if (rand == 4) { mc.score = 50; } mc.onEnterFrame = function () { this._x = this._x + this.speed; if (this._x < 0) { this.removeMovieClip(); } if (this.hitTest(_root.caviar)) { _root.caviar.eggs = _root.caviar.eggs + this.score; _root.totalscore = _root.totalscore + this.score; this.removeMovieClip(); } if (_root._currentframe != 4) { this.removeMovieClip(); } }; } }; stop();
Frame 5
stop(); bg.scoretxt.text = endscore;
Symbol 35 Button
on (release) { _root.play(); }
Symbol 36 MovieClip Frame 1
_root.stop(); PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100; if (PercentLoaded != 100) { bar._xscale = PercentLoaded; } else { gotoAndStop ("loaded"); }
Symbol 36 MovieClip Frame 2
gotoAndPlay (1);
Symbol 37 Button
on (release) { _root.getURL("http://www.albinoblacksheep.com", "_blank"); }
Symbol 41 Button
on (release) { gotoAndStop (3); }
Symbol 42 Button
on (release) { gotoAndStop (4); }
Symbol 45 Button
on (release) { _root.getURL("http://www.albinoblacksheep.com", "_blank"); }
Symbol 51 Button
on (release) { gotoAndStop (4); }
Symbol 54 Button
on (release) { gotoAndStop (2); }
Symbol 62 Button
on (release) { _root.gotoAndStop(1); }
Symbol 74 MovieClip Frame 1
stop();
Symbol 74 MovieClip Frame 2
stop();
Symbol 74 MovieClip Frame 3
stop();
Symbol 74 MovieClip Frame 4
stop();
Symbol 74 MovieClip Frame 5
stop();

Library Items

Symbol 1 GraphicUsed by:2
Symbol 2 MovieClipUses:1Used by:9
Symbol 3 GraphicUsed by:4
Symbol 4 MovieClipUses:3Used by:9
Symbol 5 GraphicUsed by:6
Symbol 6 MovieClipUses:5Used by:9
Symbol 7 GraphicUsed by:8
Symbol 8 MovieClipUses:7Used by:9
Symbol 9 MovieClip [pickups]Uses:2 4 6 8
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:18
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:18
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:18
Symbol 16 GraphicUsed by:17
Symbol 17 MovieClipUses:16Used by:18
Symbol 18 MovieClip [fish]Uses:11 13 15 17
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:37
Symbol 21 GraphicUsed by:22 37
Symbol 22 MovieClipUses:21Used by:36
Symbol 23 GraphicUsed by:24 37
Symbol 24 MovieClipUses:23Used by:36
Symbol 25 GraphicUsed by:36 37
Symbol 26 GraphicUsed by:36 37
Symbol 27 FontUsed by:28 30 34 39 40 43 52 53 55 58 59 60 61 76 77 78
Symbol 28 TextUses:27Used by:36 37
Symbol 29 GraphicUsed by:35 41 42 51 54 62
Symbol 30 TextUses:27Used by:35 42 51
Symbol 31 GraphicUsed by:35 41 42 51 54 62
Symbol 32 GraphicUsed by:35 41 42 51 54 62
Symbol 33 GraphicUsed by:35 41 42 51 54 62
Symbol 34 TextUses:27Used by:35 42 51
Symbol 35 ButtonUses:29 30 31 32 33 34Used by:36
Symbol 36 MovieClipUses:22 24 25 26 28 35Used by:37
Symbol 37 ButtonUses:20 36 21 23 25 26 28Used by:Timeline
Symbol 38 GraphicUsed by:Timeline
Symbol 39 TextUses:27Used by:Timeline
Symbol 40 TextUses:27Used by:41
Symbol 41 ButtonUses:29 40 31 32 33Used by:Timeline
Symbol 42 ButtonUses:29 30 31 32 33 34Used by:Timeline
Symbol 43 TextUses:27Used by:45
Symbol 44 GraphicUsed by:45
Symbol 45 ButtonUses:43 44Used by:Timeline
Symbol 46 GraphicUsed by:47
Symbol 47 MovieClipUses:46Used by:Timeline
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:48Used by:Timeline
Symbol 50 GraphicUsed by:Timeline
Symbol 51 ButtonUses:29 30 31 32 33 34Used by:Timeline
Symbol 52 TextUses:27Used by:54 62
Symbol 53 TextUses:27Used by:54 62
Symbol 54 ButtonUses:29 52 31 32 33 53Used by:Timeline
Symbol 55 TextUses:27Used by:Timeline
Symbol 56 GraphicUsed by:Timeline
Symbol 57 GraphicUsed by:63
Symbol 58 TextUses:27Used by:63
Symbol 59 TextUses:27Used by:63
Symbol 60 EditableTextUses:27Used by:63
Symbol 61 EditableTextUses:27Used by:63
Symbol 62 ButtonUses:29 52 31 32 33 53Used by:63
Symbol 63 MovieClipUses:57 58 59 60 61 62Used by:Timeline
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:74
Symbol 66 GraphicUsed by:67
Symbol 67 MovieClipUses:66Used by:74
Symbol 68 GraphicUsed by:69
Symbol 69 MovieClipUses:68Used by:74
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:74
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:74
Symbol 74 MovieClipUses:65 67 69 71 73Used by:Timeline
Symbol 75 GraphicUsed by:79
Symbol 76 TextUses:27Used by:79
Symbol 77 TextUses:27Used by:79
Symbol 78 EditableTextUses:27Used by:79
Symbol 79 MovieClipUses:75 76 77 78Used by:Timeline

Instance Names

"hud"Frame 4Symbol 63 MovieClip
"caviar"Frame 4Symbol 74 MovieClip
"bg"Frame 5Symbol 79 MovieClip
"bar"Symbol 36 MovieClip Frame 1Symbol 24 MovieClip
"eggtxt"Symbol 63 MovieClip Frame 1Symbol 60 EditableText
"timetxt"Symbol 63 MovieClip Frame 1Symbol 61 EditableText
"scoretxt"Symbol 79 MovieClip Frame 1Symbol 78 EditableText

Special Tags

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

Labels

"loaded"Symbol 36 MovieClip Frame 3




http://swfchan.com/6/28323/info.shtml
Created: 20/5 -2019 11:19:43 Last modified: 20/5 -2019 11:19:43 Server time: 13/05 -2024 00:06:20