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

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

Defend Your Picnic!.swf

This is the info page for
Flash #48598

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


Text
Snubby Land Creative Media Presents...

<p align="center"></p>

NEW GAME

INSTRUCTIONS

SNUBBYLAND.COM

DONATE

<p align="center"></p>

<p align="center"></p>

<p align="left"></p>

<p align="left"></p>

Egg
Cost: $5
HP: 2

Watermelon
Cost: $15
HP: 8

Lemonade
Cost: $30
HP: 19

Aid
Cost: $10
+10 HP

Heal
Cost: $25
+40 HP

BACK TO MENU

<p align="center"></p>

Oh no! Ants are invading your picnic!  Buy
food to place in the ants' path to stop them
from getting to your picnic.  To buy food, click
the food you want to buy from the menu on
the right, and then click which square on the
grid you'd like to place it.  Red ants eat 3x as
much food as black ants.  Remember, food
costs money, so if you don't have enough
money to purchase the food you can't get it.
You earn money at a constant rate, and you
earn points by killing ants and buying food.
Don't forget, your picnic only has 50 HP so
buy health from the menu on the right as well.

ActionScript [AS1/AS2]

Frame 1
var topScore = 0;
Instance of Symbol 21 MovieClip in Frame 1
onClipEvent (load) { function r_menu_1_SnubbyLand() { getURL ("http://www.snubbyland.com/", "_blank"); } _root.stop(); loadBar.stop(); var r_menu = new ContextMenu(); r_menu.hideBuiltInItems(); var r_menu_1 = new ContextMenuItem("Snubby Land", r_menu_1_SnubbyLand); r_menu.customItems.push(r_menu_1); _root.menu = r_menu; } onClipEvent (enterFrame) { if (_root.getBytesTotal() > 0) { if (_root.getBytesLoaded() >= _root.getBytesTotal()) { _root.play(); } else { var percentage = Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 100); if (Math.floor(percentage / 10) < 1) { loadBar.gotoAndStop(1); percentText = "0/10"; } else { loadBar.gotoAndStop(Math.floor(percentage / 10) + 1); percentText = Math.floor(percentage / 10) + "/10"; } } } } on (press) { _root.getURL("http://www.SnubbyLand.com/", "_blank"); }
Instance of Symbol 21 MovieClip in Frame 2
onClipEvent (load) { loadBar.gotoAndStop(11); percentText = "10/10"; }
Instance of Symbol 23 MovieClip in Frame 7
on (press) { getURL ("http://snubbyland.com", "_blank"); }
Frame 56
stop(); topScore_text = "Top Score: " + _root.topScore;
Instance of Symbol 37 MovieClip in Frame 56
on (rollOver) { play(); } on (press) { _root.flashA.play(); _root.gotoAndStop("game"); }
Instance of Symbol 39 MovieClip in Frame 56
on (rollOver) { play(); } on (press) { _root.flashA.play(); _root.gotoAndStop("instructions"); }
Instance of Symbol 41 MovieClip in Frame 56
on (rollOver) { play(); } on (press) { getURL ("http://www.snubbyland.com", "_blank"); }
Instance of Symbol 43 MovieClip in Frame 56
on (rollOver) { play(); } on (press) { getURL ("https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=snubbyland%40gmail%2ecom&no_shipping=0&no_note=1&currency_code=USD&bn=PP%2dBuyNowBF&charset=UTF%2d8", "_blank"); }
Frame 57
function update_score(num) { _root.score = _root.score + num; _root.sidebar.score_text = "Score: " + score; if (_root.score >= _root.topScore) { _root.topScore = score; _root.sidebar.topScore_text = "Top Score: " + topScore; } } function update_money(num) { _root.money = _root.money + num; _root.sidebar.money_text = _root.money + "$"; } function update_money_int() { _root.update_money(1); } function update_health(num) { _root.health = _root.health + num; if (_root.health > 50) { _root.health = 50; } _root.blanket.health_text = health; } function ant_create() { duplicateMovieClip (_root.ant_container.original_ant, "ant" + _root.ant_container.getNextHighestDepth(), _root.ant_container.getNextHighestDepth()); _root.ant_container["ant" + (_root.ant_container.getNextHighestDepth() - 1)]._y = _root.ant_container.original_ant._y; _root.ant_container["ant" + (_root.ant_container.getNextHighestDepth() - 1)]._x = _root.grid_hor[Math.floor(Math.random() * 7)]; } function redAnt_create() { duplicateMovieClip (_root.ant_container.original_redAnt, "redAnt" + _root.ant_container.getNextHighestDepth(), _root.ant_container.getNextHighestDepth()); _root.ant_container["redAnt" + (_root.ant_container.getNextHighestDepth() - 1)]._y = _root.ant_container.original_redAnt._y; _root.ant_container["redAnt" + (_root.ant_container.getNextHighestDepth() - 1)]._x = _root.grid_hor[Math.floor(Math.random() * 7)]; } function grid_highlight(switchA) { var _local3 = 1; while (_local3 < 7) { var _local2 = 1; while (_local2 < 8) { if (!switchA) { if (_root[(("grid_" + _local2) + "_") + _local3].current == null) { _root[(("grid_" + _local2) + "_") + _local3]._alpha = 0; } } else if (_root[(("grid_" + _local2) + "_") + _local3].current == null) { _root[(("grid_" + _local2) + "_") + _local3]._alpha = 100; } _local2++; } _local3++; } } function lose() { var _local3 = 1; while (_local3 < 7) { var _local2 = 1; while (_local2 < 8) { removeMovieClip(_root[(("grid_" + _local2) + "_") + _local3]); _local2++; } _local3++; } clearInterval(_root.money_int); removeMovieClip(_root.ant_container); _root.flashA.play(); } var score = 0; var money = 0; var money_int = setInterval(update_money_int, 1000); var health = 50; var grid_hor = new Array(17.5, 52.5, 87.5, 122.5, 157.5, 192.5, 227.5); var ant_speed = 1; var ant_create_speed = 75; var ant_create_speed_tot = ant_create_speed; var ant_create_speed_min = 5; var ant_create_speed_int = 0.5; var redAnt_speed = 2; var redAnt_create_speed = (ant_create_speed * 5); var redAnt_create_speed_tot = redAnt_create_speed; var redAnt_create_speed_min = (redAnt_create_speed_min * 5); var redAnt_create_speed_int = (ant_create_speed_int * 5); var select = null; var egg_cost = 5; var watermelon_cost = 15; var lemonade_cost = 30; update_score(0); update_money(0); update_health(0); grid_highlight(false);
Instance of Symbol 69 MovieClip "grid_1_1" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_2_1" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_3_1" in Frame 57
onClipEvent (load) { var current = "egg"; this.gotoAndStop(2); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_4_1" in Frame 57
onClipEvent (load) { var current = "egg"; this.gotoAndStop(2); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_5_1" in Frame 57
onClipEvent (load) { var current = "egg"; this.gotoAndStop(2); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_6_1" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_7_1" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_1_2" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_2_2" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_3_2" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_4_2" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_5_2" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_6_2" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_7_2" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_1_3" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_2_3" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_3_3" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_4_3" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_5_3" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_6_3" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_7_3" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_1_4" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_2_4" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_3_4" in Frame 57
onClipEvent (load) { var current = "watermelon"; this.gotoAndStop(3); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_4_4" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_5_4" in Frame 57
onClipEvent (load) { var current = "watermelon"; this.gotoAndStop(3); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_6_4" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_7_4" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_1_5" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_2_5" in Frame 57
onClipEvent (load) { var current = "watermelon"; this.gotoAndStop(3); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_3_5" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_4_5" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_5_5" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_6_5" in Frame 57
onClipEvent (load) { var current = "watermelon"; this.gotoAndStop(3); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_7_5" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_1_6" in Frame 57
onClipEvent (load) { var current = "watermelon"; this.gotoAndStop(3); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_2_6" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_3_6" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_4_6" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_5_6" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_6_6" in Frame 57
onClipEvent (load) { var current = null; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Instance of Symbol 69 MovieClip "grid_7_6" in Frame 57
onClipEvent (load) { var current = "watermelon"; this.gotoAndStop(3); _alpha = 100; } on (press) { if (_currentframe == 1) { if (_root.select == "egg") { if (_root.money >= _root.egg_cost) { this.gotoAndStop(2); _root.update_money(_root.egg_cost * -1); current = "egg"; _root.grid_highlight(false); _root.select = null; _root.update_score(15); _root.sidebar.egg.gotoAndStop(1); } } else if (_root.select == "watermelon") { if (_root.money >= _root.watermelon_cost) { this.gotoAndStop(3); _root.update_money(_root.watermelon_cost * -1); current = "watermelon"; _root.grid_highlight(false); _root.select = null; _root.update_score(25); _root.sidebar.watermelon.gotoAndStop(1); } } else if (_root.select == "lemonade") { if (_root.money >= _root.lemonade_cost) { this.gotoAndStop(4); _root.update_money(_root.lemonade_cost * -1); current = "lemonade"; _root.grid_highlight(false); _root.select = null; _root.update_score(50); _root.sidebar.lemonade.gotoAndStop(1); } } } }
Frame 58
topScore_text = "Top Score: " + _root.topScore;
Instance of Symbol 116 MovieClip in Frame 58
on (rollOver) { play(); } on (press) { _root.flashA.play(); _root.gotoAndStop("menu"); }
Symbol 37 MovieClip Frame 7
stop();
Symbol 39 MovieClip Frame 7
stop();
Symbol 41 MovieClip Frame 7
stop();
Symbol 43 MovieClip Frame 7
stop();
Symbol 44 MovieClip Frame 10
stop();
Symbol 55 MovieClip Frame 1
stop();
Symbol 61 MovieClip Frame 1
stop();
Symbol 68 MovieClip Frame 1
stop();
Symbol 69 MovieClip Frame 1
stop();
Instance of Symbol 52 MovieClip in Symbol 69 MovieClip Frame 1
onClipEvent (load) { this.stop(); } onClipEvent (mouseMove) { if (hitTest(_root._xmouse, _root._ymouse, true)) { this.gotoAndStop(2); } else { this.gotoAndStop(1); } }
Symbol 76 Button
on (press) { _root.lose(); _root.gotoAndStop("menu"); }
Symbol 79 Button
on (press) { getURL ("http://www.snubbyland.com", "_blank"); }
Symbol 82 Button
on (press) { getURL ("https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=snubbyland%40gmail%2ecom&no_shipping=0&no_note=1&currency_code=USD&bn=PP%2dBuyNowBF&charset=UTF%2d8", "_blank"); }
Symbol 104 Button
on (press) { if (_root.money >= 10) { _root.update_money(-10); _root.update_health(10); } }
Symbol 108 Button
on (press) { if (_root.money >= 25) { _root.update_money(-25); _root.update_health(35); } }
Instance of Symbol 89 MovieClip "egg" in Symbol 109 MovieClip Frame 1
onClipEvent (load) { stop(); } on (press) { if ((((_root.money >= _root.egg_cost) && (_root.select == null)) || (_root.select == "watermelon")) || (_root.select == "lemonade")) { _root.select = "egg"; _root.grid_highlight(true); this.gotoAndStop(3); _parent.watermelon.gotoAndStop(1); _parent.lemonade.gotoAndStop(1); } else { _root.select = null; _root.grid_highlight(false); this.gotoAndStop(1); } } on (rollOver) { if (_currentframe != 3) { this.gotoAndStop(2); } } on (rollOut) { if (_currentframe != 3) { this.gotoAndStop(1); } }
Instance of Symbol 95 MovieClip "watermelon" in Symbol 109 MovieClip Frame 1
onClipEvent (load) { stop(); } on (press) { if ((((_root.money >= _root.watermelon_cost) && (_root.select == null)) || (_root.select == "egg")) || (_root.select == "lemonade")) { _root.select = "watermelon"; _root.grid_highlight(true); _parent.egg.gotoAndStop(1); _parent.lemonade.gotoAndStop(1); this.gotoAndStop(3); } else { _root.select = null; _root.grid_highlight(false); this.gotoAndStop(1); } } on (rollOver) { if (_currentframe != 3) { this.gotoAndStop(2); } } on (rollOut) { if (_currentframe != 3) { this.gotoAndStop(1); } }
Instance of Symbol 98 MovieClip "lemonade" in Symbol 109 MovieClip Frame 1
onClipEvent (load) { stop(); } on (press) { if ((((_root.money >= _root.lemonade_cost) && (_root.select == null)) || (_root.select == "egg")) || (_root.select == "watermelon")) { _root.select = "lemonade"; _root.grid_highlight(true); _parent.egg.gotoAndStop(1); _parent.watermelon.gotoAndStop(1); this.gotoAndStop(3); } else { _root.select = null; _root.grid_highlight(false); this.gotoAndStop(1); } } on (rollOver) { if (_currentframe != 3) { this.gotoAndStop(2); } } on (rollOut) { if (_currentframe != 3) { this.gotoAndStop(1); } }
Instance of Symbol 112 MovieClip "original_ant" in Symbol 113 MovieClip Frame 1
onClipEvent (enterFrame) { if (_name != "original_ant") { _y = (_y + _root.ant_speed); if (hitTest(_root.blanket)) { _root.update_health(-1); if (_root.health <= 0) { _root.lose(); _root.gotoAndStop("lose"); } _root.update_score(-10); removeMovieClip(this); } var ver = 1; while (ver < 7) { var hor = 1; while (hor < 8) { if (hitTest(_root[(("grid_" + hor) + "_") + ver]) && (_root[(("grid_" + hor) + "_") + ver].current != null)) { if (_root[(("grid_" + hor) + "_") + ver].current == "egg") { _root[(("grid_" + hor) + "_") + ver].egg.gotoAndStop(_root[(("grid_" + hor) + "_") + ver].egg._currentframe + 1); if (_root[(("grid_" + hor) + "_") + ver].egg._currentframe == _root[(("grid_" + hor) + "_") + ver].egg._totalframes) { _root[(("grid_" + hor) + "_") + ver].current = null; _root[(("grid_" + hor) + "_") + ver].gotoAndStop(1); if (_root.select == null) { _root[(("grid_" + hor) + "_") + ver]._alpha = 0; } } _root.update_score(10); removeMovieClip(this); } if (_root[(("grid_" + hor) + "_") + ver].current == "watermelon") { _root[(("grid_" + hor) + "_") + ver].watermelon.gotoAndStop(_root[(("grid_" + hor) + "_") + ver].watermelon._currentframe + 1); if (_root[(("grid_" + hor) + "_") + ver].watermelon._currentframe == _root[(("grid_" + hor) + "_") + ver].watermelon._totalframes) { _root[(("grid_" + hor) + "_") + ver].current = null; _root[(("grid_" + hor) + "_") + ver].gotoAndStop(1); if (_root.select == null) { _root[(("grid_" + hor) + "_") + ver]._alpha = 0; } } _root.update_score(10); removeMovieClip(this); } if (_root[(("grid_" + hor) + "_") + ver].current == "lemonade") { _root[(("grid_" + hor) + "_") + ver].lemonade.gotoAndStop(_root[(("grid_" + hor) + "_") + ver].lemonade._currentframe + 1); if (_root[(("grid_" + hor) + "_") + ver].lemonade._currentframe == _root[(("grid_" + hor) + "_") + ver].lemonade._totalframes) { _root[(("grid_" + hor) + "_") + ver].current = null; _root[(("grid_" + hor) + "_") + ver].gotoAndStop(1); if (_root.select == null) { _root[(("grid_" + hor) + "_") + ver]._alpha = 0; } } _root.update_score(10); removeMovieClip(this); } } hor++; } ver++; } } else if (_root.ant_create_speed > 0) { _root.ant_create_speed = _root.ant_create_speed - 1; } else { if (_root.ant_create_speed_tot > _root.ant_create_speed_min) { _root.ant_create_speed_tot = _root.ant_create_speed_tot - _root.ant_create_speed_int; } else { _quality = "low"; } if ((_root.ant_create_speed_tot <= 25) && (_root.ant_create_speed_tot <= _root.ant_create_speed_min)) { _quality = "medium"; } _root.ant_create_speed = _root.ant_create_speed_tot; _root.ant_create(); } }
Instance of Symbol 112 MovieClip "original_redAnt" in Symbol 113 MovieClip Frame 1
onClipEvent (enterFrame) { if (_name != "original_redAnt") { _y = (_y + _root.redAnt_speed); if (hitTest(_root.blanket)) { _root.update_health(-3); if (_root.health <= 0) { _root.lose(); } _root.update_score(-25); removeMovieClip(this); } var ver = 1; while (ver < 7) { var hor = 1; while (hor < 8) { if (hitTest(_root[(("grid_" + hor) + "_") + ver]) && (_root[(("grid_" + hor) + "_") + ver].current != null)) { if (_root[(("grid_" + hor) + "_") + ver].current == "egg") { _root[(("grid_" + hor) + "_") + ver].egg.gotoAndStop(_root[(("grid_" + hor) + "_") + ver].egg._currentframe + 3); if (_root[(("grid_" + hor) + "_") + ver].egg._currentframe == _root[(("grid_" + hor) + "_") + ver].egg._totalframes) { _root[(("grid_" + hor) + "_") + ver].current = null; _root[(("grid_" + hor) + "_") + ver].gotoAndStop(1); if (_root.select == null) { _root[(("grid_" + hor) + "_") + ver]._alpha = 0; } } _root.update_score(10); removeMovieClip(this); } if (_root[(("grid_" + hor) + "_") + ver].current == "watermelon") { _root[(("grid_" + hor) + "_") + ver].watermelon.gotoAndStop(_root[(("grid_" + hor) + "_") + ver].watermelon._currentframe + 3); if (_root[(("grid_" + hor) + "_") + ver].watermelon._currentframe == _root[(("grid_" + hor) + "_") + ver].watermelon._totalframes) { _root[(("grid_" + hor) + "_") + ver].current = null; _root[(("grid_" + hor) + "_") + ver].gotoAndStop(1); if (_root.select == null) { _root[(("grid_" + hor) + "_") + ver]._alpha = 0; } } _root.update_score(10); removeMovieClip(this); } if (_root[(("grid_" + hor) + "_") + ver].current == "lemonade") { _root[(("grid_" + hor) + "_") + ver].lemonade.gotoAndStop(_root[(("grid_" + hor) + "_") + ver].lemonade._currentframe + 3); if (_root[(("grid_" + hor) + "_") + ver].lemonade._currentframe == _root[(("grid_" + hor) + "_") + ver].lemonade._totalframes) { _root[(("grid_" + hor) + "_") + ver].current = null; _root[(("grid_" + hor) + "_") + ver].gotoAndStop(1); if (_root.select == null) { _root[(("grid_" + hor) + "_") + ver]._alpha = 0; } } _root.update_score(10); removeMovieClip(this); } } hor++; } ver++; } } else if (_root.redAnt_create_speed > 0) { _root.redAnt_create_speed = _root.redAnt_create_speed - 1; } else { if (_root.redAnt_create_speed_tot > _root.redAnt_create_speed_min) { _root.redAnt_create_speed_tot = _root.redAnt_create_speed_tot - _root.redAnt_create_speed_int; } _root.redAnt_create_speed = _root.redAnt_create_speed_tot; _root.redAnt_create(); } }
Symbol 116 MovieClip Frame 7
stop();

Library Items

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

Instance Names

"flashA"Frame 56Symbol 44 MovieClip
"blanket"Frame 57Symbol 49 MovieClip
"grid_1_1"Frame 57Symbol 69 MovieClip
"grid_2_1"Frame 57Symbol 69 MovieClip
"grid_3_1"Frame 57Symbol 69 MovieClip
"grid_4_1"Frame 57Symbol 69 MovieClip
"grid_5_1"Frame 57Symbol 69 MovieClip
"grid_6_1"Frame 57Symbol 69 MovieClip
"grid_7_1"Frame 57Symbol 69 MovieClip
"grid_1_2"Frame 57Symbol 69 MovieClip
"grid_2_2"Frame 57Symbol 69 MovieClip
"grid_3_2"Frame 57Symbol 69 MovieClip
"grid_4_2"Frame 57Symbol 69 MovieClip
"grid_5_2"Frame 57Symbol 69 MovieClip
"grid_6_2"Frame 57Symbol 69 MovieClip
"grid_7_2"Frame 57Symbol 69 MovieClip
"grid_1_3"Frame 57Symbol 69 MovieClip
"grid_2_3"Frame 57Symbol 69 MovieClip
"grid_3_3"Frame 57Symbol 69 MovieClip
"grid_4_3"Frame 57Symbol 69 MovieClip
"grid_5_3"Frame 57Symbol 69 MovieClip
"grid_6_3"Frame 57Symbol 69 MovieClip
"grid_7_3"Frame 57Symbol 69 MovieClip
"grid_1_4"Frame 57Symbol 69 MovieClip
"grid_2_4"Frame 57Symbol 69 MovieClip
"grid_3_4"Frame 57Symbol 69 MovieClip
"grid_4_4"Frame 57Symbol 69 MovieClip
"grid_5_4"Frame 57Symbol 69 MovieClip
"grid_6_4"Frame 57Symbol 69 MovieClip
"grid_7_4"Frame 57Symbol 69 MovieClip
"grid_1_5"Frame 57Symbol 69 MovieClip
"grid_2_5"Frame 57Symbol 69 MovieClip
"grid_3_5"Frame 57Symbol 69 MovieClip
"grid_4_5"Frame 57Symbol 69 MovieClip
"grid_5_5"Frame 57Symbol 69 MovieClip
"grid_6_5"Frame 57Symbol 69 MovieClip
"grid_7_5"Frame 57Symbol 69 MovieClip
"grid_1_6"Frame 57Symbol 69 MovieClip
"grid_2_6"Frame 57Symbol 69 MovieClip
"grid_3_6"Frame 57Symbol 69 MovieClip
"grid_4_6"Frame 57Symbol 69 MovieClip
"grid_5_6"Frame 57Symbol 69 MovieClip
"grid_6_6"Frame 57Symbol 69 MovieClip
"grid_7_6"Frame 57Symbol 69 MovieClip
"sidebar"Frame 57Symbol 109 MovieClip
"ant_container"Frame 57Symbol 113 MovieClip
"loadBar"Symbol 21 MovieClip Frame 1Symbol 17 MovieClip
"egg"Symbol 69 MovieClip Frame 2Symbol 55 MovieClip
"watermelon"Symbol 69 MovieClip Frame 3Symbol 61 MovieClip
"lemonade"Symbol 69 MovieClip Frame 4Symbol 68 MovieClip
"egg"Symbol 109 MovieClip Frame 1Symbol 89 MovieClip
"watermelon"Symbol 109 MovieClip Frame 1Symbol 95 MovieClip
"lemonade"Symbol 109 MovieClip Frame 1Symbol 98 MovieClip
"original_ant"Symbol 113 MovieClip Frame 1Symbol 112 MovieClip
"original_redAnt"Symbol 113 MovieClip Frame 1Symbol 112 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.

Labels

"menu"Frame 56
"game"Frame 57
"lose"Frame 58
"instructions"Frame 59

Dynamic Text Variables

percentTextSymbol 20 EditableText""
topScore_textSymbol 34 EditableText"<p align="center"></p>"
health_textSymbol 48 EditableText"<p align="center"></p>"
money_textSymbol 71 EditableText"<p align="center"></p>"
score_textSymbol 72 EditableText"<p align="left"></p>"
topScore_textSymbol 73 EditableText"<p align="left"></p>"
topScore_textSymbol 118 EditableText"<p align="center"></p>"




http://swfchan.com/10/48598/info.shtml
Created: 29/4 -2019 16:26:25 Last modified: 29/4 -2019 16:26:25 Server time: 09/05 -2024 13:03:58