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 #46416 |
Loading... |
Play! |
Play! |
Play! |
.com |
.com |
~Cloudo~ -Main Menu- -Play- -Instructions- -Visit Site- -Play More Games- -Credits- -Sugggames 2006- |
~Cloudo~ -Credits- -Idea- R.Sugg -Art & Animation- C.Sugg (Sugggames) -Programming- C.Sugg(Sugggames) -Beta Testers- R.Sugg -Menu- |
~Cloudo~ -Instructions- Oh No! The lake has dried up! The city of Raintown has used up all of the water in the nearby lake, and they can't survive for long! It's up to you to return water to Raintown, before they parish of dehydration! Use your mouse to choose altitude and left-click anywhere onscreen to launch your water-collection device. aim for clouds to absorb their water. The higher you reach, the bigger the clouds you will encounter, and the more water you will absorb. Try to get as high as possible without colliding with enemy birds. Although you may be able to fill the lake, Raintown will surely empty it again. When this happens you wil llevel up, with each level comes more enemies to block your collector, and each time even more water is needed to fill the lake! Attemp to reach the highest level possible, are you skilled enough to pass level 25? Prove it. -Menu- |
Added |
Level: |
Water: |
Left: |
HP: |
L M H B |
~Game Over~ |
Ah, you have failed Raintown and caused them to perish of dehydration. Please try again another time... |
-Play More Games- |
-Play Again- |
ActionScript [AS1/AS2]
Frame 1var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); _root.menu = myMenu;Instance of Symbol 12 MovieClip in Frame 1onClipEvent (load) { _root.stop(); percent = 0; total = 0; loaded = 0; } onClipEvent (enterFrame) { total = _root.getBytesTotal(); loaded = _root.getBytesLoaded(); percent = Math.round((loaded / total) * 100); gotoAndStop(percent); }Frame 2stop();Instance of Symbol 68 MovieClip in Frame 2on (release) { getURL ("http://www.sugggames.com", "_blank"); }Frame 3stop();Frame 4stop();Frame 5stop();Instance of Symbol 121 MovieClip in Frame 5on (release) { _root.gotoAndStop("game"); }Instance of Symbol 121 MovieClip in Frame 5on (release) { _root.gotoAndStop("instructions"); }Instance of Symbol 121 MovieClip in Frame 5on (release) { getURL ("http://www.sugggames.com", "_blank"); }Instance of Symbol 121 MovieClip in Frame 5on (release) { getURL ("http://www.armorgames.com", "_blank"); }Instance of Symbol 121 MovieClip in Frame 5on (release) { _root.gotoAndStop("creds"); }Frame 6stop();Instance of Symbol 121 MovieClip in Frame 6on (release) { _root.gotoAndStop("menu"); }Frame 7stop();Frame 10stop(); sound = 1;Instance of Symbol 126 MovieClip "wat" in Frame 10onClipEvent (enterFrame) { _y = (600 - _root.water); if (_height < _root.water) { _height = (_height+1); } if (_height > _root.water) { _height = (_height-1); } if (_y < (600 - _root.water)) { _y = (_y+1); } if (_y > (600 - _root.water)) { _y = (_y-1); } }Instance of Symbol 134 MovieClip "waves" in Frame 10onClipEvent (enterFrame) { _y = ((600 - _root.water) - 5); }Instance of Symbol 139 MovieClip "addanim" in Frame 10onClipEvent (enterFrame) { watadd = ("+ " + _root.added) + " Water"; }Instance of Symbol 139 MovieClip "lvlanim" in Frame 10onClipEvent (enterFrame) { watadd = "Level Up!"; }Instance of Symbol 126 MovieClip "wat" in Frame 10onClipEvent (enterFrame) { _y = (_root.wat._y - 610); _height = 600; }Instance of Symbol 141 MovieClip "claw" in Frame 10onClipEvent (load) { act = 0; dest = 0; used = 0; } onClipEvent (enterFrame) { _x = (_root.man._x - 15); if (act == 0) { _y = (_y + ((650 - _y) / 10)); } if (act == 1) { _y = (_y + (((dest - 10) - _y) / 10)); } if (_y < dest) { dest = 0; act = 0; } } onClipEvent (mouseDown) { if ((act == 0) && (_y > 600)) { act = 1; dest = _root._ymouse; } }Instance of Symbol 144 MovieClip "man" in Frame 10onClipEvent (enterFrame) { if (_x > 230) { _x = 230; } if (_x < 70) { _x = 70; } if (_root.wat._y < 570) { _rotation = ((-(_root._xmouse - _x)) / 10); this._x = this._x + ((_root._xmouse - _x) / 10); } if (_root.wat._y < 570) { _root.man._y = _root.wat._y; } if (_y > _root.wat._y) { _y = (_y+1); } if (_root.water < 50) { gotoAndStop (1); } else { play(); } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; set = 0; _y = random(250); _x = -50; size = 300 - y; shape = 1 + random(5); speed = 1 + random(9); _alpha = (40 + random(60)); } onClipEvent (enterFrame) { if ((_y > 600) && (set == 0)) { _root.added = size; _root.addanim.play(); _root.waves.gotoAndPlay("splash"); _root.waterval = _root.waterval + (size / (_root.level * 2)); set = 1; } _x = (_x + (speed / 10)); if (dead == 0) { size = 300 - _y; ySpeed = 0; _width = (0.5 * size); _height = (0.3 * size); } gotoAndStop(shape); if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } if (_y > 700) { _x = (-_width); _alpha = (40 + random(60)); shape = 1 + random(5); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; set = 0; _rotation = 0; } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -50; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 1) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -50; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 8) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -50; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 3) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -50; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 11) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -50; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 5) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -50; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 15) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -50; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 18) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -50; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 21) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 156 MovieClip in Frame 10onClipEvent (load) { ySpeed = 0; dead = 0; _y = random(250); _x = -100; speed = 1 + random(9); } onClipEvent (enterFrame) { if (_root.level > 24) { _x = (_x + (speed / 2)); if (dead == 0) { size = 300 - _y; ySpeed = 0; } if ((this.hitTest(_root.claw) && (dead == 0)) && (_root.claw.act == 1)) { _root.claw.act = 0; _root.health = _root.health - (_root.level * 2); dead = 1; } if (dead == 1) { ySpeed++; _rotation = (_rotation + ySpeed); _y = (_y + ySpeed); _alpha = (_alpha - 2); } if (_x > (300 + _width)) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } if (_y > 700) { _x = (-_width); speed = 1 + random(9); _y = random(250); ySpeed = 0; dead = 0; _rotation = 0; _alpha = 100; } } }Instance of Symbol 151 MovieClip in Frame 10onClipEvent (load) { _root.water = 0; _root.depth = 0; _root.waterval = 0; _root.added = 0; _root.level = 1; _root.left = 0; _root.wtr = 0; _root.health = 100; } onClipEvent (enterFrame) { if (_root.health < 0) { _root.gotoAndStop("gameover"); } _visible = false; _root.left = (280 * (_root.level * 2)) - (_root.water * (_root.level * 2)); _root.wtr = _root.water * (_root.level * 2); if (_root.water > 280) { _root.lvlanim.play(); _root.level++; _root.waterval = 0; } if (_root.water < _root.waterval) { _root.water++; } if (_root.water > _root.waterval) { _root.water--; } _root.depth++; }Instance of Symbol 170 MovieClip in Frame 10onClipEvent (load) { gotoAndPlay(_root.sound); } on (release) { play(); }Frame 11stop(); stopAllSounds();Instance of Symbol 121 MovieClip in Frame 11on (release) { _root.gotoAndStop("game"); }Instance of Symbol 121 MovieClip in Frame 11on (release) { getURL ("http://www.armorgames.com", "_blank"); }Symbol 10 Buttonon (release) { _root.play(); }Symbol 68 MovieClip Frame 1_root.stop();Symbol 68 MovieClip Frame 70_root.play();Symbol 74 MovieClip Frame 45_root.play();Symbol 118 Buttonon (release) { _root.play(); }Symbol 119 MovieClip Frame 143_root.play(); stop();Symbol 134 MovieClip Frame 75gotoAndPlay (1);Symbol 139 MovieClip Frame 1stop();Instance of Symbol 121 MovieClip in Symbol 143 MovieClip Frame 1onClipEvent (enterFrame) { _width = (_root.health / 2); }Symbol 170 MovieClip Frame 2stop(); _root.sound = 1;Symbol 170 MovieClip Frame 3stopAllSounds();Symbol 170 MovieClip Frame 4stop(); _root.sound = 3;Symbol 173 Buttonon (release) { _quality = "LOW"; if ("LOW") { _quality = "MEDIUM"; } else { _quality = "MEDIUM"; if ("MEDIUM") { _quality = "HIGH"; } else { _quality = "HIGH"; if ("HIGH") { _quality = "BEST"; } else { _quality = "BEST"; if ("BEST") { _quality = "LOW"; } } } } }Symbol 176 Buttonon (release) { _quality = "MEDIUM"; }Symbol 177 Buttonon (release) { _quality = "LOW"; }Symbol 178 Buttonon (release) { _quality = "HIGH"; }Symbol 179 Buttonon (release) { _quality = "BEST"; }
Library Items
Symbol 1 Font | Used by:2 6 7 9 120 122 123 135 157 158 159 160 161 162 163 164 181 182 183 184 | |
Symbol 2 Text | Uses:1 | Used by:12 |
Symbol 3 Graphic | Used by:12 74 121 Timeline | |
Symbol 4 ShapeTweening | Used by:12 | |
Symbol 5 Graphic | Used by:12 | |
Symbol 6 Text | Uses:1 | Used by:10 |
Symbol 7 Text | Uses:1 | Used by:10 |
Symbol 8 Graphic | Used by:10 | |
Symbol 9 Text | Uses:1 | Used by:10 |
Symbol 10 Button | Uses:6 7 8 9 | Used by:12 |
Symbol 11 Graphic | Used by:12 | |
Symbol 12 MovieClip | Uses:2 3 4 5 10 11 | Used by:Timeline |
Symbol 13 Graphic | Used by:Timeline | |
Symbol 14 Graphic | Used by:68 | |
Symbol 15 Graphic | Used by:68 | |
Symbol 16 Graphic | Used by:68 | |
Symbol 17 ShapeTweening | Used by:68 | |
Symbol 18 Graphic | Used by:68 | |
Symbol 19 Graphic | Used by:68 | |
Symbol 20 Graphic | Used by:68 | |
Symbol 21 Graphic | Used by:68 | |
Symbol 22 Graphic | Used by:68 74 | |
Symbol 23 Sound | Used by:68 | |
Symbol 24 Graphic | Used by:68 | |
Symbol 25 Graphic | Used by:68 | |
Symbol 26 Graphic | Used by:68 | |
Symbol 27 Graphic | Used by:68 | |
Symbol 28 Graphic | Used by:68 | |
Symbol 29 Graphic | Used by:68 | |
Symbol 30 Graphic | Used by:68 | |
Symbol 31 Graphic | Used by:68 | |
Symbol 32 Graphic | Used by:68 | |
Symbol 33 Graphic | Used by:68 | |
Symbol 34 Graphic | Used by:68 | |
Symbol 35 Graphic | Used by:68 | |
Symbol 36 Graphic | Used by:68 | |
Symbol 37 Graphic | Used by:68 | |
Symbol 38 Graphic | Used by:68 | |
Symbol 39 Graphic | Used by:68 | |
Symbol 40 Graphic | Used by:68 | |
Symbol 41 Graphic | Used by:68 | |
Symbol 42 Graphic | Used by:68 | |
Symbol 43 Graphic | Used by:68 | |
Symbol 44 Graphic | Used by:68 | |
Symbol 45 Graphic | Used by:68 | |
Symbol 46 Graphic | Used by:68 | |
Symbol 47 Graphic | Used by:68 | |
Symbol 48 Graphic | Used by:68 | |
Symbol 49 Graphic | Used by:68 | |
Symbol 50 Graphic | Used by:68 | |
Symbol 51 Graphic | Used by:68 | |
Symbol 52 Graphic | Used by:68 | |
Symbol 53 Graphic | Used by:68 | |
Symbol 54 Graphic | Used by:68 | |
Symbol 55 Graphic | Used by:68 | |
Symbol 56 Graphic | Used by:68 | |
Symbol 57 Graphic | Used by:68 | |
Symbol 58 Graphic | Used by:68 | |
Symbol 59 Graphic | Used by:68 | |
Symbol 60 Graphic | Used by:68 | |
Symbol 61 Graphic | Used by:68 | |
Symbol 62 Graphic | Used by:68 | |
Symbol 63 Graphic | Used by:68 | |
Symbol 64 Graphic | Used by:68 | |
Symbol 65 Graphic | Used by:68 | |
Symbol 66 ShapeTweening | Used by:68 | |
Symbol 67 Graphic | Used by:68 | |
Symbol 68 MovieClip | Uses:14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | Used by:Timeline |
Symbol 69 Graphic | Used by:70 | |
Symbol 70 MovieClip | Uses:69 | Used by:74 |
Symbol 71 ShapeTweening | Used by:74 | |
Symbol 72 Sound | Used by:74 | |
Symbol 73 ShapeTweening | Used by:74 | |
Symbol 74 MovieClip | Uses:70 71 22 72 73 3 | Used by:Timeline |
Symbol 75 Graphic | Used by:119 | |
Symbol 76 Graphic | Used by:119 | |
Symbol 77 Graphic | Used by:119 | |
Symbol 78 Graphic | Used by:119 | |
Symbol 79 Graphic | Used by:80 | |
Symbol 80 MovieClip | Uses:79 | Used by:119 |
Symbol 81 Graphic | Used by:82 | |
Symbol 82 MovieClip | Uses:81 | Used by:119 |
Symbol 83 Graphic | Used by:119 | |
Symbol 84 Graphic | Used by:119 | |
Symbol 85 Graphic | Used by:119 | |
Symbol 86 Graphic | Used by:119 | |
Symbol 87 Graphic | Used by:119 | |
Symbol 88 Graphic | Used by:119 | |
Symbol 89 Graphic | Used by:119 | |
Symbol 90 Graphic | Used by:119 | |
Symbol 91 Graphic | Used by:119 | |
Symbol 92 Graphic | Used by:119 | |
Symbol 93 Sound | Used by:119 | |
Symbol 94 Graphic | Used by:119 | |
Symbol 95 Graphic | Used by:119 | |
Symbol 96 Graphic | Used by:119 | |
Symbol 97 Graphic | Used by:119 | |
Symbol 98 ShapeTweening | Used by:119 | |
Symbol 99 Graphic | Used by:119 | |
Symbol 100 Graphic | Used by:119 | |
Symbol 101 Graphic | Used by:119 | |
Symbol 102 Graphic | Used by:119 | |
Symbol 103 Graphic | Used by:119 | |
Symbol 104 Graphic | Used by:119 | |
Symbol 105 Graphic | Used by:119 | |
Symbol 106 Graphic | Used by:119 | |
Symbol 107 ShapeTweening | Used by:119 | |
Symbol 108 ShapeTweening | Used by:119 | |
Symbol 109 Graphic | Used by:113 | |
Symbol 110 Font | Used by:111 112 | |
Symbol 111 Text | Uses:110 | Used by:113 |
Symbol 112 Text | Uses:110 | Used by:113 |
Symbol 113 MovieClip | Uses:109 111 112 | Used by:119 |
Symbol 114 ShapeTweening | Used by:119 | |
Symbol 115 Graphic | Used by:119 | |
Symbol 116 Graphic | Used by:119 | |
Symbol 117 Graphic | Used by:118 | |
Symbol 118 Button | Uses:117 | Used by:119 |
Symbol 119 MovieClip | Uses:75 76 77 78 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 113 114 115 116 118 | Used by:Timeline |
Symbol 120 Text | Uses:1 | Used by:Timeline |
Symbol 121 MovieClip | Uses:3 | Used by:143 Timeline |
Symbol 122 Text | Uses:1 | Used by:Timeline |
Symbol 123 Text | Uses:1 | Used by:Timeline |
Symbol 124 Graphic | Used by:Timeline | |
Symbol 125 Graphic | Used by:126 134 | |
Symbol 126 MovieClip | Uses:125 | Used by:Timeline |
Symbol 127 ShapeTweening | Used by:134 | |
Symbol 128 ShapeTweening | Used by:134 | |
Symbol 129 ShapeTweening | Used by:134 | |
Symbol 130 ShapeTweening | Used by:134 | |
Symbol 131 ShapeTweening | Used by:134 | |
Symbol 132 ShapeTweening | Used by:134 | |
Symbol 133 ShapeTweening | Used by:134 | |
Symbol 134 MovieClip | Uses:127 128 129 125 130 131 132 133 | Used by:Timeline |
Symbol 135 EditableText | Uses:1 | Used by:136 |
Symbol 136 MovieClip | Uses:135 | Used by:139 |
Symbol 137 Graphic | Used by:139 | |
Symbol 138 ShapeTweening | Used by:139 | |
Symbol 139 MovieClip | Uses:136 137 138 | Used by:Timeline |
Symbol 140 Graphic | Used by:141 | |
Symbol 141 MovieClip | Uses:140 | Used by:Timeline |
Symbol 142 Graphic | Used by:143 | |
Symbol 143 MovieClip | Uses:142 121 | Used by:144 Timeline |
Symbol 144 MovieClip | Uses:143 | Used by:Timeline |
Symbol 145 Graphic | Used by:Timeline | |
Symbol 146 Graphic | Used by:151 | |
Symbol 147 Graphic | Used by:151 | |
Symbol 148 Graphic | Used by:151 | |
Symbol 149 Graphic | Used by:151 | |
Symbol 150 Graphic | Used by:151 | |
Symbol 151 MovieClip | Uses:146 147 148 149 150 | Used by:Timeline |
Symbol 152 Graphic | Used by:155 | |
Symbol 153 Graphic | Used by:154 | |
Symbol 154 MovieClip | Uses:153 | Used by:155 |
Symbol 155 MovieClip | Uses:152 154 | Used by:156 |
Symbol 156 MovieClip | Uses:155 | Used by:Timeline |
Symbol 157 Text | Uses:1 | Used by:Timeline |
Symbol 158 Text | Uses:1 | Used by:Timeline |
Symbol 159 Text | Uses:1 | Used by:Timeline |
Symbol 160 EditableText | Uses:1 | Used by:Timeline |
Symbol 161 EditableText | Uses:1 | Used by:Timeline |
Symbol 162 EditableText | Uses:1 | Used by:Timeline |
Symbol 163 Text | Uses:1 | Used by:Timeline |
Symbol 164 EditableText | Uses:1 | Used by:Timeline |
Symbol 165 Graphic | Used by:Timeline | |
Symbol 166 Graphic | Used by:170 | |
Symbol 167 Sound | Used by:170 | |
Symbol 168 Graphic | Used by:170 | |
Symbol 169 Graphic | Used by:170 | |
Symbol 170 MovieClip | Uses:166 167 168 169 | Used by:Timeline |
Symbol 171 Graphic | Used by:173 176 177 178 179 | |
Symbol 172 Graphic | Used by:173 176 177 178 179 | |
Symbol 173 Button | Uses:171 172 | Used by:Timeline |
Symbol 174 Font | Used by:175 | |
Symbol 175 Text | Uses:174 | Used by:Timeline |
Symbol 176 Button | Uses:171 172 | Used by:Timeline |
Symbol 177 Button | Uses:171 172 | Used by:Timeline |
Symbol 178 Button | Uses:171 172 | Used by:Timeline |
Symbol 179 Button | Uses:171 172 | Used by:Timeline |
Symbol 180 Graphic | Used by:Timeline | |
Symbol 181 Text | Uses:1 | Used by:Timeline |
Symbol 182 Text | Uses:1 | Used by:Timeline |
Symbol 183 Text | Uses:1 | Used by:Timeline |
Symbol 184 Text | Uses:1 | Used by:Timeline |
Symbol 185 Graphic | Used by:Timeline |
Instance Names
"wat" | Frame 10 | Symbol 126 MovieClip |
"waves" | Frame 10 | Symbol 134 MovieClip |
"addanim" | Frame 10 | Symbol 139 MovieClip |
"lvlanim" | Frame 10 | Symbol 139 MovieClip |
"wat" | Frame 10 | Symbol 126 MovieClip |
"claw" | Frame 10 | Symbol 141 MovieClip |
"man" | Frame 10 | Symbol 144 MovieClip |
Labels
"menu" | Frame 5 |
"creds" | Frame 6 |
"instructions" | Frame 7 |
"game" | Frame 10 |
"gameover" | Frame 11 |
"splash" | Symbol 134 MovieClip Frame 76 |
Dynamic Text Variables
_parent.watadd | Symbol 135 EditableText | "Added" |
_root.level | Symbol 160 EditableText | "" |
_root.wtr | Symbol 161 EditableText | "" |
_root.left | Symbol 162 EditableText | "" |
_root.health | Symbol 164 EditableText | "" |
|