STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229595 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2595 · P5190 |
This is the info page for Flash #28323 |
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 2stop();Frame 3stop();Frame 4function 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 5stop(); bg.scoretxt.text = endscore;Symbol 35 Buttonon (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 2gotoAndPlay (1);Symbol 37 Buttonon (release) { _root.getURL("http://www.albinoblacksheep.com", "_blank"); }Symbol 41 Buttonon (release) { gotoAndStop (3); }Symbol 42 Buttonon (release) { gotoAndStop (4); }Symbol 45 Buttonon (release) { _root.getURL("http://www.albinoblacksheep.com", "_blank"); }Symbol 51 Buttonon (release) { gotoAndStop (4); }Symbol 54 Buttonon (release) { gotoAndStop (2); }Symbol 62 Buttonon (release) { _root.gotoAndStop(1); }Symbol 74 MovieClip Frame 1stop();Symbol 74 MovieClip Frame 2stop();Symbol 74 MovieClip Frame 3stop();Symbol 74 MovieClip Frame 4stop();Symbol 74 MovieClip Frame 5stop();
Library Items
Symbol 1 Graphic | Used by:2 | |
Symbol 2 MovieClip | Uses:1 | Used by:9 |
Symbol 3 Graphic | Used by:4 | |
Symbol 4 MovieClip | Uses:3 | Used by:9 |
Symbol 5 Graphic | Used by:6 | |
Symbol 6 MovieClip | Uses:5 | Used by:9 |
Symbol 7 Graphic | Used by:8 | |
Symbol 8 MovieClip | Uses:7 | Used by:9 |
Symbol 9 MovieClip [pickups] | Uses:2 4 6 8 | |
Symbol 10 Graphic | Used by:11 | |
Symbol 11 MovieClip | Uses:10 | Used by:18 |
Symbol 12 Graphic | Used by:13 | |
Symbol 13 MovieClip | Uses:12 | Used by:18 |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:14 | Used by:18 |
Symbol 16 Graphic | Used by:17 | |
Symbol 17 MovieClip | Uses:16 | Used by:18 |
Symbol 18 MovieClip [fish] | Uses:11 13 15 17 | |
Symbol 19 Bitmap | Used by:20 | |
Symbol 20 Graphic | Uses:19 | Used by:37 |
Symbol 21 Graphic | Used by:22 37 | |
Symbol 22 MovieClip | Uses:21 | Used by:36 |
Symbol 23 Graphic | Used by:24 37 | |
Symbol 24 MovieClip | Uses:23 | Used by:36 |
Symbol 25 Graphic | Used by:36 37 | |
Symbol 26 Graphic | Used by:36 37 | |
Symbol 27 Font | Used by:28 30 34 39 40 43 52 53 55 58 59 60 61 76 77 78 | |
Symbol 28 Text | Uses:27 | Used by:36 37 |
Symbol 29 Graphic | Used by:35 41 42 51 54 62 | |
Symbol 30 Text | Uses:27 | Used by:35 42 51 |
Symbol 31 Graphic | Used by:35 41 42 51 54 62 | |
Symbol 32 Graphic | Used by:35 41 42 51 54 62 | |
Symbol 33 Graphic | Used by:35 41 42 51 54 62 | |
Symbol 34 Text | Uses:27 | Used by:35 42 51 |
Symbol 35 Button | Uses:29 30 31 32 33 34 | Used by:36 |
Symbol 36 MovieClip | Uses:22 24 25 26 28 35 | Used by:37 |
Symbol 37 Button | Uses:20 36 21 23 25 26 28 | Used by:Timeline |
Symbol 38 Graphic | Used by:Timeline | |
Symbol 39 Text | Uses:27 | Used by:Timeline |
Symbol 40 Text | Uses:27 | Used by:41 |
Symbol 41 Button | Uses:29 40 31 32 33 | Used by:Timeline |
Symbol 42 Button | Uses:29 30 31 32 33 34 | Used by:Timeline |
Symbol 43 Text | Uses:27 | Used by:45 |
Symbol 44 Graphic | Used by:45 | |
Symbol 45 Button | Uses:43 44 | Used by:Timeline |
Symbol 46 Graphic | Used by:47 | |
Symbol 47 MovieClip | Uses:46 | Used by:Timeline |
Symbol 48 Graphic | Used by:49 | |
Symbol 49 MovieClip | Uses:48 | Used by:Timeline |
Symbol 50 Graphic | Used by:Timeline | |
Symbol 51 Button | Uses:29 30 31 32 33 34 | Used by:Timeline |
Symbol 52 Text | Uses:27 | Used by:54 62 |
Symbol 53 Text | Uses:27 | Used by:54 62 |
Symbol 54 Button | Uses:29 52 31 32 33 53 | Used by:Timeline |
Symbol 55 Text | Uses:27 | Used by:Timeline |
Symbol 56 Graphic | Used by:Timeline | |
Symbol 57 Graphic | Used by:63 | |
Symbol 58 Text | Uses:27 | Used by:63 |
Symbol 59 Text | Uses:27 | Used by:63 |
Symbol 60 EditableText | Uses:27 | Used by:63 |
Symbol 61 EditableText | Uses:27 | Used by:63 |
Symbol 62 Button | Uses:29 52 31 32 33 53 | Used by:63 |
Symbol 63 MovieClip | Uses:57 58 59 60 61 62 | Used by:Timeline |
Symbol 64 Graphic | Used by:65 | |
Symbol 65 MovieClip | Uses:64 | Used by:74 |
Symbol 66 Graphic | Used by:67 | |
Symbol 67 MovieClip | Uses:66 | Used by:74 |
Symbol 68 Graphic | Used by:69 | |
Symbol 69 MovieClip | Uses:68 | Used by:74 |
Symbol 70 Graphic | Used by:71 | |
Symbol 71 MovieClip | Uses:70 | Used by:74 |
Symbol 72 Graphic | Used by:73 | |
Symbol 73 MovieClip | Uses:72 | Used by:74 |
Symbol 74 MovieClip | Uses:65 67 69 71 73 | Used by:Timeline |
Symbol 75 Graphic | Used by:79 | |
Symbol 76 Text | Uses:27 | Used by:79 |
Symbol 77 Text | Uses:27 | Used by:79 |
Symbol 78 EditableText | Uses:27 | Used by:79 |
Symbol 79 MovieClip | Uses:75 76 77 78 | Used by:Timeline |
Instance Names
"hud" | Frame 4 | Symbol 63 MovieClip |
"caviar" | Frame 4 | Symbol 74 MovieClip |
"bg" | Frame 5 | Symbol 79 MovieClip |
"bar" | Symbol 36 MovieClip Frame 1 | Symbol 24 MovieClip |
"eggtxt" | Symbol 63 MovieClip Frame 1 | Symbol 60 EditableText |
"timetxt" | Symbol 63 MovieClip Frame 1 | Symbol 61 EditableText |
"scoretxt" | Symbol 79 MovieClip Frame 1 | Symbol 78 EditableText |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 9 as "pickups" |
ExportAssets (56) | Timeline Frame 1 | Symbol 18 as "fish" |
Labels
"loaded" | Symbol 36 MovieClip Frame 3 |
|