STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229428 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2574 · P5147 |
This is the info page for Flash #23719 |
Loading... |
Complete |
www.flash-the-brain.com - Game |
Fishing the sea |
Fishing the sea |
How to Play |
Play Now |
score |
time |
quota |
3 |
2 |
1 |
GO |
score |
time bonus |
Level |
2 |
Play Again |
Using your mouse, move your hook in front of a fish. |
When the fish becomes interested in the worm, it will bite the hook! A fishes interested is based on it's size. The larger the fish, the more interested it is in your bate. |
When the fish is hooked, slowly bring it back to the reel-in line hanging off your fishing boat. Larger fish will set the hook better then smaller fish. |
You need to meet your quota. The number of red fish in your status bar, are the amount you need to ketch. |
The green fish in your status bar indicate the number you have caught. |
To win, ketch your quota in the allotted time. Good Luck! |
! |
How to play |
How to play |
Back to Main |
ActionScript [AS1/AS2]
Frame 1ifFrameLoaded (32) { play(); } gotoAndPlay (1);Frame 2ifFrameLoaded (33) { play(); } gotoAndPlay (2);Frame 3ifFrameLoaded (60) { play(); } gotoAndPlay (3);Frame 4ifFrameLoaded (80) { play(); } gotoAndPlay (4);Frame 31score = 0; level = 0; stop();Frame 32num_caught = 0; time = 1500; level = level + 1; tellTarget ("quota") { play(); }; tellTarget ("caught") { gotoAndStop (1); };Frame 84setProperty(p1, _visible , false); setProperty(mouse, _visible , false); setProperty("line", _visible , false); setProperty("fish", _visible , false); tellTarget ("fish") { stop(); }; startDrag ("mouse", true, 100, 120, 430, 430); hooked = "none"; x = 20; while (x < 30) { duplicateMovieClip ("fish", "fish" + x, x); setProperty("fish" + x, _x , random(330) + 100); setProperty("fish" + x, _y , random(310) + 120); x++; }Frame 85mx = getProperty("mouse", _x); my = getProperty("mouse", _y); p3x = getProperty("p3", _x); p3y = getProperty("p3", _y); xspeed = oldx - p3x; oldx = p3x; setProperty("p3", _x , mx + ((p3x - mx) * 0.9)); setProperty("p3", _y , my + ((p3y - my) * 0.9)); setProperty("p2", _x , p3x); duplicateMovieClip ("line", "line1", 1); setProperty("line1", _x , getProperty("p1", _x)); setProperty("line1", _y , getProperty("p1", _y)); setProperty("line1", _xscale , getProperty("p2", _x) - getProperty("p1", _x)); setProperty("line1", _yscale , getProperty("p2", _y) - getProperty("p1", _y)); duplicateMovieClip ("line", "line2", 2); setProperty("line2", _x , getProperty("p2", _x)); setProperty("line2", _y , getProperty("p2", _y)); setProperty("line2", _xscale , getProperty("p3", _x) - getProperty("p2", _x)); setProperty("line2", _yscale , getProperty("p3", _y) - getProperty("p2", _y));Frame 86time = time - 1; if ((0 >= time) or (num_caught >= 10)) { play(); } else { gotoAndPlay (85); }Frame 87removeMovieClip("line1"); removeMovieClip("line2"); x = 20; while (x < 30) { removeMovieClip("fish" + x); x++; } if ((num_caught >= level) and (level < 10)) { message = "Quota Met!"; setProperty("next_level", _visible , true); setProperty("play_again", _visible , false); } else if ((num_caught >= level) and (level == 10)) { message = "You Win!"; setProperty("next_level", _visible , false); setProperty("play_again", _visible , true); } else { message = "Quota Not Met!"; setProperty("next_level", _visible , false); setProperty("play_again", _visible , true); } old_score = score; score = time + score; nlevel = level + 1; stopDrag(); stop();Frame 88stop();Symbol 19 Buttonon (release) { play(); }Symbol 20 Buttonon (release) { gotoAndPlay (88); }Symbol 46 MovieClip Frame 1stop();Symbol 46 MovieClip Frame 2stop();Symbol 46 MovieClip Frame 3stop();Symbol 46 MovieClip Frame 4stop();Symbol 46 MovieClip Frame 5stop();Symbol 46 MovieClip Frame 6stop();Symbol 46 MovieClip Frame 7stop();Symbol 46 MovieClip Frame 8stop();Symbol 46 MovieClip Frame 9stop();Symbol 46 MovieClip Frame 10stop();Symbol 57 MovieClip Frame 1stop();Symbol 57 MovieClip Frame 2stop();Symbol 57 MovieClip Frame 3stop();Symbol 57 MovieClip Frame 4stop();Symbol 57 MovieClip Frame 5stop();Symbol 57 MovieClip Frame 6stop();Symbol 57 MovieClip Frame 7stop();Symbol 57 MovieClip Frame 8stop();Symbol 57 MovieClip Frame 9stop();Symbol 57 MovieClip Frame 10stop();Symbol 57 MovieClip Frame 11stop();Symbol 63 MovieClip Frame 1stop();Symbol 63 MovieClip Frame 15gotoAndStop (1);Symbol 79 MovieClip Frame 1setProperty("right", _visible , false); setProperty(this, _xscale , random(70) + 30); setProperty(this, _yscale , random(70) + 30); tx = random(300) + 81; ty = random(180) + 101; cx = tx; cy = ty;Symbol 79 MovieClip Frame 2d = getProperty(this, _xscale) / 5; x = getProperty(this, _x); y = getProperty(this, _y); direction = x - oldx; oldx = x; mx = getProperty("../p3", _x); my = getProperty("../p3", _y); s = Math.sqrt(Math.pow(Math.abs(my - y), 2) + Math.pow(Math.abs(mx - x), 2)); if (((../:hooked == "none") or (../:hooked == this)) and (d >= s)) { Set("../:hooked", this); setProperty(this, _x , mx + ((x - mx) / (d / s))); setProperty(this, _y , my + ((y - my) / (d / s))); if (0 < (x - getProperty("../p3", _x))) { setProperty("right", _visible , false); setProperty("left", _visible , true); } else if ((x - getProperty("../p3", _x)) < 0) { setProperty("left", _visible , false); setProperty("right", _visible , true); } if ((x < 105) and (y < 125)) { Set("../:hooked", "none"); Set("../:score", ../:score + int(5000 / getProperty(this, _xscale))); Set("../:num_caught", ../:num_caught + 1); tellTarget ("../caught") { play(); }; tellTarget ("../reel-in") { play(); }; removeMovieClip(this); } } else { tx = random(330) + 100; ty = random(310) + 120; if ((x < (cx + 5)) and ((cx - 5) < x)) { cx = tx; } if ((y < (cy + 5)) and ((cy - 5) < y)) { cy = ty; } setProperty(this, _x , cx + ((x - cx) * 0.9)); setProperty(this, _y , cy + ((y - cy) * 0.9)); if (direction < 0) { setProperty("right", _visible , false); setProperty("left", _visible , true); } else if (0 < direction) { setProperty("left", _visible , false); setProperty("right", _visible , true); } } if ((../:hooked == this) and (25 < s)) { Set("../:hooked", "none"); }Symbol 79 MovieClip Frame 3gotoAndPlay(_currentframe - 1);Symbol 95 Buttonon (release) { if (getProperty("next_level", _visible) == true) { gotoAndPlay (32); } else { gotoAndPlay (31); } }Symbol 108 Buttonon (release) { gotoAndPlay (31); }
Library Items
Symbol 1 Graphic | Used by:Timeline | |
Symbol 2 Font | Used by:3 8 13 14 15 16 17 31 32 33 34 35 65 66 67 68 82 83 84 85 86 87 89 90 93 97 98 99 100 101 102 103 105 106 107 | |
Symbol 3 Text | Uses:2 | Used by:Timeline |
Symbol 4 Graphic | Used by:Timeline | |
Symbol 5 Graphic | Used by:Timeline | |
Symbol 6 Graphic | Used by:Timeline | |
Symbol 7 Graphic | Used by:Timeline | |
Symbol 8 Text | Uses:2 | Used by:Timeline |
Symbol 9 Graphic | Used by:Timeline | |
Symbol 10 Bitmap | Used by:11 | |
Symbol 11 Graphic | Uses:10 | Used by:Timeline |
Symbol 12 Graphic | Used by:Timeline | |
Symbol 13 Text | Uses:2 | Used by:Timeline |
Symbol 14 Text | Uses:2 | Used by:Timeline |
Symbol 15 Text | Uses:2 | Used by:Timeline |
Symbol 16 Text | Uses:2 | Used by:Timeline |
Symbol 17 Text | Uses:2 | Used by:Timeline |
Symbol 18 Graphic | Used by:19 20 95 108 | |
Symbol 19 Button | Uses:18 | Used by:Timeline |
Symbol 20 Button | Uses:18 | Used by:Timeline |
Symbol 21 Graphic | Used by:Timeline | |
Symbol 22 Graphic | Used by:23 | |
Symbol 23 MovieClip | Uses:22 | Used by:Timeline |
Symbol 24 Graphic | Used by:29 | |
Symbol 25 ShapeTweening | Used by:28 | |
Symbol 26 ShapeTweening | Used by:28 | |
Symbol 27 Graphic | Used by:28 | |
Symbol 28 MovieClip | Uses:25 26 27 | Used by:29 |
Symbol 29 MovieClip | Uses:24 28 | Used by:Timeline |
Symbol 30 Graphic | Used by:Timeline | |
Symbol 31 Text | Uses:2 | Used by:Timeline |
Symbol 32 EditableText | Uses:2 | Used by:Timeline |
Symbol 33 Text | Uses:2 | Used by:Timeline |
Symbol 34 EditableText | Uses:2 | Used by:Timeline |
Symbol 35 Text | Uses:2 | Used by:Timeline |
Symbol 36 Graphic | Used by:46 | |
Symbol 37 Graphic | Used by:46 | |
Symbol 38 Graphic | Used by:46 | |
Symbol 39 Graphic | Used by:46 | |
Symbol 40 Graphic | Used by:46 | |
Symbol 41 Graphic | Used by:46 | |
Symbol 42 Graphic | Used by:46 | |
Symbol 43 Graphic | Used by:46 | |
Symbol 44 Graphic | Used by:46 | |
Symbol 45 Graphic | Used by:46 | |
Symbol 46 MovieClip | Uses:36 37 38 39 40 41 42 43 44 45 | Used by:Timeline |
Symbol 47 Graphic | Used by:57 | |
Symbol 48 Graphic | Used by:57 | |
Symbol 49 Graphic | Used by:57 | |
Symbol 50 Graphic | Used by:57 | |
Symbol 51 Graphic | Used by:57 | |
Symbol 52 Graphic | Used by:57 | |
Symbol 53 Graphic | Used by:57 | |
Symbol 54 Graphic | Used by:57 | |
Symbol 55 Graphic | Used by:57 | |
Symbol 56 Graphic | Used by:57 | |
Symbol 57 MovieClip | Uses:47 48 49 50 51 52 53 54 55 56 | Used by:Timeline |
Symbol 58 ShapeTweening | Used by:63 | |
Symbol 59 Graphic | Used by:60 | |
Symbol 60 MovieClip | Uses:59 | Used by:63 79 |
Symbol 61 ShapeTweening | Used by:63 | |
Symbol 62 Graphic | Used by:63 76 | |
Symbol 63 MovieClip | Uses:58 60 61 62 | Used by:Timeline |
Symbol 64 Graphic | Used by:Timeline | |
Symbol 65 Text | Uses:2 | Used by:Timeline |
Symbol 66 Text | Uses:2 | Used by:Timeline |
Symbol 67 Text | Uses:2 | Used by:Timeline |
Symbol 68 Text | Uses:2 | Used by:Timeline |
Symbol 69 Graphic | Used by:73 80 | |
Symbol 70 Graphic | Used by:72 | |
Symbol 71 Graphic | Used by:72 | |
Symbol 72 MovieClip | Uses:70 71 | Used by:73 80 |
Symbol 73 MovieClip | Uses:69 72 | Used by:Timeline |
Symbol 74 Graphic | Used by:75 | |
Symbol 75 MovieClip | Uses:74 | Used by:Timeline |
Symbol 76 MovieClip | Uses:62 | Used by:Timeline |
Symbol 77 Graphic | Used by:78 | |
Symbol 78 MovieClip | Uses:77 | Used by:79 Timeline |
Symbol 79 MovieClip | Uses:60 78 | Used by:Timeline |
Symbol 80 MovieClip | Uses:69 72 | Used by:Timeline |
Symbol 81 Graphic | Used by:Timeline | |
Symbol 82 EditableText | Uses:2 | Used by:Timeline |
Symbol 83 Text | Uses:2 | Used by:Timeline |
Symbol 84 EditableText | Uses:2 | Used by:Timeline |
Symbol 85 Text | Uses:2 | Used by:Timeline |
Symbol 86 EditableText | Uses:2 | Used by:Timeline |
Symbol 87 EditableText | Uses:2 | Used by:Timeline |
Symbol 88 Graphic | Used by:91 | |
Symbol 89 Text | Uses:2 | Used by:91 |
Symbol 90 EditableText | Uses:2 | Used by:91 |
Symbol 91 MovieClip | Uses:88 89 90 | Used by:Timeline |
Symbol 92 Graphic | Used by:94 | |
Symbol 93 Text | Uses:2 | Used by:94 |
Symbol 94 MovieClip | Uses:92 93 | Used by:Timeline |
Symbol 95 Button | Uses:18 | Used by:Timeline |
Symbol 96 Graphic | Used by:Timeline | |
Symbol 97 Text | Uses:2 | Used by:Timeline |
Symbol 98 Text | Uses:2 | Used by:Timeline |
Symbol 99 Text | Uses:2 | Used by:Timeline |
Symbol 100 Text | Uses:2 | Used by:Timeline |
Symbol 101 Text | Uses:2 | Used by:Timeline |
Symbol 102 Text | Uses:2 | Used by:Timeline |
Symbol 103 Text | Uses:2 | Used by:Timeline |
Symbol 104 Graphic | Used by:Timeline | |
Symbol 105 Text | Uses:2 | Used by:Timeline |
Symbol 106 Text | Uses:2 | Used by:Timeline |
Symbol 107 Text | Uses:2 | Used by:Timeline |
Symbol 108 Button | Uses:18 | Used by:Timeline |
Symbol 109 Graphic | Used by:Timeline |
Instance Names
"quota" | Frame 32 | Symbol 46 MovieClip |
"caught" | Frame 32 | Symbol 57 MovieClip |
"reel-in" | Frame 32 | Symbol 63 MovieClip |
"p3" | Frame 84 | Symbol 73 MovieClip |
"p2" | Frame 84 | Symbol 75 MovieClip |
"p1" | Frame 84 | Symbol 73 MovieClip |
"line" | Frame 84 | Symbol 76 MovieClip |
"fish" | Frame 84 | Symbol 79 MovieClip |
"mouse" | Frame 84 | Symbol 80 MovieClip |
"next_level" | Frame 87 | Symbol 91 MovieClip |
"play_again" | Frame 87 | Symbol 94 MovieClip |
"left" | Symbol 79 MovieClip Frame 1 | Symbol 60 MovieClip |
"right" | Symbol 79 MovieClip Frame 1 | Symbol 78 MovieClip |
Dynamic Text Variables
score | Symbol 32 EditableText | "" |
time | Symbol 34 EditableText | "" |
message | Symbol 82 EditableText | "" |
old_score | Symbol 84 EditableText | "" |
time | Symbol 86 EditableText | "" |
score | Symbol 87 EditableText | "" |
../:nlevel | Symbol 90 EditableText | "2" |
|