| STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229923 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2598 · P5196 |
![]() | This is the info page for Flash #239087 |
stop(); mspeed = 0; this._x -= 0; var touchingGround:Boolean = false; this.attachMovie("particle_explode", "partex", 3()); |
_root.boxArray[ c].attachMovie(" particle_explode ", "partex", 3()); |
0 |
$ |
100 |
ActionScript [AS1/AS2]
Frame 1function createBox() { currentBox = _root.attachMovie("enemy", "box" + boxArray.length, _root.getNextHighestDepth()); currentBox._x = 920; currentBox._y = 395; boxArray.push(currentBox); } function createSprout() { currentSprout = _root.attachMovie("sprout", "spr" + sproutArray.length, _root.getNextHighestDepth()); currentSprout._x = 920; currentSprout._y = 395; SproutArray.push(currentSprout); } function fireWeapon() { if (reloadComplete && (mouseClicked)) { var _local3 = _root.attachMovie("bullet1", "b" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); _local3._x = char._x; _local3._y = char._y; _local3.bulletLifeTimer = 0; randomNum = random(bulletOffset) - (bulletOffset / 2); bulletAngle = (((char._rotation + randomNum) - 90) * Math.PI) / 180; _local3.xSpeed = Math.cos(bulletAngle) * bulletSpeed; _local3.ySpeed = Math.sin(bulletAngle) * bulletSpeed; _local3.onEnterFrame = function () { if (this._x >= 810) { this.removeMovieClip(); } if (this._x <= 75) { this.removeMovieClip(); } if (this._y >= 510) { this.removeMovieClip(); } if (this._y <= 25) { this.removeMovieClip(); } this._rotation = rotationDirection; if (flamethrower == true) { cuttershot = false; this.gotoAndStop(2); } else if (cuttershot == true) { flamethrower = false; this.gotoAndStop(3); } while (ground.realground.hitTest(this._x, this._y, true)) { this.removeMovieClip(); } if (life == 0) { _root.target.removeMovieClip(); this.removeMovieClip(); } this._x = this._x + this.xSpeed; this._y = this._y + this.ySpeed; if (this.bulletLifeTimer >= bulletLifeTimerTotal) { this.removeMovieClip(); } this.bulletLifeTimer++; }; startReloading(); } } function startReloading() { reloadComplete = false; reloadTimer = setInterval(this, "gunReloaded", reloadSpeed); } function gunReloaded() { clearInterval(reloadTimer); reloadComplete = true; } function rotatePlayer() { playerX = char._x; playerY = char._y; rotationDirection = Math.round(180 - ((Math.atan2(_root._xmouse - playerX, _root._ymouse - playerY) * 180) / Math.PI)); char._rotation = rotationDirection; } var bulletOffset = 5; var bulletLifeTimerTotal = 190; var bulletSpeed = 18; var reloadSpeed = 180; var bulletNumber = 2; var reloadTimer; var reloadComplete = true; var bulletAngle; var randomNum; var playerX; var playerY; var rotationDirection; var mouseClicked = false; var dead = false; var flamethrower = false; var cuttershot = false; var bullx = this._x; var bully = this._y; playerX = this._x; playerY = this._y; var ground = _root.ground; var boxArray = []; var sproutArray = []; c = 0; while (c < 1) { d = 0; while (d < 3) { createBox(); d++; } c++; } _root.coins = 0; mouseListener = new Object(); mouseListener.onMouseDown = function () { mouseClicked = true; }; mouseListener.onMouseUp = function () { mouseClicked = false; }; mouseListener.onMouseMove = function () { rotatePlayer(); }; _root.onEnterFrame = function () { fireWeapon(); rotatePlayer(); updateBullets(); }; Mouse.addListener(mouseListener);Instance of Symbol 408 MovieClip "lifebar" in Frame 1onClipEvent (enterFrame) { this._xscale = _root.life * 1; if (_root.life < 0) { unloadMovie (_root.hero); unloadMovie (_root.char); _root.life = 0; } }Instance of Symbol 414 MovieClip "hero" in Frame 1onClipEvent (load) { var ground = _root.ground; var grav = 0; var gravity = 0.8; var speed = 8; var maxJump = -17; var touchingGround = false; } onClipEvent (enterFrame) { if (this._x >= 550) { this._x = 549; _root.ground._x = _root.ground._x - speed; _root["box" + c]._x = _root["box" + c]._x - speed; _root.bg._x = _root.bg._x - 0.4; } if (this._x <= 150) { this._x = 151; _root.ground._x = _root.ground._x + speed; _root.bg._x = _root.bg._x + 0.4; _root["box" + c]._x = _root["box" + c]._x + speed; } _root.char._x = this._x; _root.char._y = this._y - 40; _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; } else { touchingGround = false; } if (Key.isDown(68)) { _root.char._xscale = 100; this._xscale = 100; _x = (_x + speed); } if (Key.isDown(65)) { _root.char._xscale = -100; this._xscale = -100; _x = (_x - speed); } if (Key.isDown(87) && (touchingGround)) { grav = maxJump; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } if (ground.hitTest(_x, _y - _height, true)) { grav = 3; } }Instance of Symbol 567 MovieClip "tank3" in Frame 1onClipEvent (load) { var xsp = 1; } onClipEvent (enterFrame) { this._x = this._x - xsp; }Instance of Symbol 567 MovieClip "tank4" in Frame 1onClipEvent (load) { var xsp = 1; } onClipEvent (enterFrame) { this._x = this._x - xsp; }Instance of Symbol 408 MovieClip "xpbar" in Frame 1onClipEvent (enterFrame) { this._xscale = _root.life * 1; if (_root.life < 0) { unloadMovie (_root.hero); unloadMovie (_root.char); _root.life = 0; } }Instance of Symbol 581 MovieClip in Frame 1onClipEvent (load) { Mouse.hide(); } onClipEvent (enterFrame) { _x = _root._xmouse; _y = _root._ymouse; updateAfterEvent(); this.swapDepths(_root.getNextHighestDepth()); }Symbol 15 MovieClip Frame 6_parent.prevFrame();Symbol 16 MovieClip [sprout] Frame 1stop();Symbol 31 MovieClip [dia_explode] Frame 12this.removeMovieClip(); stop();Symbol 32 MovieClip [bullet_explode] Frame 20_parent._parent.removeMovieClip(); stop();Symbol 33 MovieClip Frame 1stop();Symbol 38 MovieClip Frame 1this._alpha = "0";Symbol 41 MovieClip Frame 28stop();Symbol 45 MovieClip [bullet1] Frame 1stop();Instance of Symbol 33 MovieClip in Symbol 45 MovieClip [bullet1] Frame 1onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.shot.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].sprout_main.nextFrame(); removeMovieClip(_parent); } c++; } if (this.shot.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); this.nextFrame(); this.removeMovieClip(); this.attachMovie(bullet_explode, be, 100); } if (this.shot.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys13.crys_alive)) { _root.ground.crys13.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys14.crys_alive)) { _root.ground.crys14.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys15.crys_alive)) { _root.ground.crys15.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys16.crys_alive)) { _root.ground.crys16.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys17.crys_alive)) { _root.ground.crys17.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys18.crys_alive)) { _root.ground.crys18.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate.crate_alive)) { _root.crate.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate2.crate_alive)) { _root.crate2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate3.crate_alive)) { _root.crate3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate4.crate_alive)) { _root.crate4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate5.crate_alive)) { _root.crate5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); _root.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz9.buzz_alive)) { _root.buzz9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz10.buzz_alive)) { _root.buzz10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz11.buzz_alive)) { _root.buzz11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz12.buzz_alive)) { _root.buzz12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.wall1.wall_alive)) { _root.ground.wall1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall2.wall_alive)) { _root.wall2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall3.wall_alive)) { _root.wall3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall4.wall_alive)) { _root.wall4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall5.wall_alive)) { _root.wall5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ceiling1.wall_alive)) { _root.ceiling1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g2.node)) { _root.tank1.g2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g5.node)) { _root.tank1.g5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g8.node)) { _root.tank1.g8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g9.node)) { _root.tank1.g9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g1.node)) { _root.tank1.g1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g10.node)) { _root.tank1.g10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g12.node)) { _root.tank2.g12.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g10.node)) { _root.tank2.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g12.node)) { _root.tank3.g12.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g4.node)) { _root.tank3.g4.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g5.node)) { _root.tank3.g5.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g6.node)) { _root.tank3.g6.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g7.node)) { _root.tank3.g7.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g8.node)) { _root.tank3.g8.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g9.node)) { _root.tank3.g9.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g10.node)) { _root.tank3.g10.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g11.node)) { _root.tank3.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g12.node)) { _root.tank4.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g2.node)) { _root.tank4.g2.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g3.node)) { _root.tank4.g3.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g4.node)) { _root.tank4.g4.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g5.node)) { _root.tank4.g5.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g6.node)) { _root.tank4.g6.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g7.node)) { _root.tank4.g7.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g8.node)) { _root.tank4.g8.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g9.node)) { _root.tank4.g9.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g10.node)) { _root.tank4.g10.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g11.node)) { _root.tank4.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } }Instance of Symbol 33 MovieClip in Symbol 45 MovieClip [bullet1] Frame 1onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.shot.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].nextFrame(); _root.boxArray[c].sprout_main.nextFrame(); removeMovieClip(_parent); } c++; } if (this.shot.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); this.nextFrame(); this.removeMovieClip(); this.attachMovie(bullet_explode, be, 100); } if (this.shot.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys13.crys_alive)) { _root.ground.crys13.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys14.crys_alive)) { _root.ground.crys14.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys15.crys_alive)) { _root.ground.crys15.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys16.crys_alive)) { _root.ground.crys16.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys17.crys_alive)) { _root.ground.crys17.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys18.crys_alive)) { _root.ground.crys18.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate.crate_alive)) { _root.crate.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate2.crate_alive)) { _root.crate2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate3.crate_alive)) { _root.crate3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate4.crate_alive)) { _root.crate4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate5.crate_alive)) { _root.crate5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); _root.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz9.buzz_alive)) { _root.buzz9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz10.buzz_alive)) { _root.buzz10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz11.buzz_alive)) { _root.buzz11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz12.buzz_alive)) { _root.buzz12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.wall1.wall_alive)) { _root.ground.wall1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall2.wall_alive)) { _root.wall2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall3.wall_alive)) { _root.wall3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall4.wall_alive)) { _root.wall4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall5.wall_alive)) { _root.wall5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ceiling1.wall_alive)) { _root.ceiling1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g2.node)) { _root.tank1.g2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g5.node)) { _root.tank1.g5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g8.node)) { _root.tank1.g8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g9.node)) { _root.tank1.g9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g1.node)) { _root.tank1.g1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g10.node)) { _root.tank1.g10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g12.node)) { _root.tank2.g12.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g10.node)) { _root.tank2.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g12.node)) { _root.tank3.g12.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g4.node)) { _root.tank3.g4.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g5.node)) { _root.tank3.g5.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g6.node)) { _root.tank3.g6.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g7.node)) { _root.tank3.g7.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g8.node)) { _root.tank3.g8.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g9.node)) { _root.tank3.g9.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g10.node)) { _root.tank3.g10.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g11.node)) { _root.tank3.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g12.node)) { _root.tank4.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g2.node)) { _root.tank4.g2.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g3.node)) { _root.tank4.g3.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g4.node)) { _root.tank4.g4.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g5.node)) { _root.tank4.g5.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g6.node)) { _root.tank4.g6.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g7.node)) { _root.tank4.g7.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g8.node)) { _root.tank4.g8.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g9.node)) { _root.tank4.g9.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g10.node)) { _root.tank4.g10.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank4.g11.node)) { _root.tank4.g11.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister1.lips.node)) { _root.blister1.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister2.lips.node)) { _root.blister2.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister3.lips.node)) { _root.blister3.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister4.lips.node)) { _root.blister4.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister5.lips.node)) { _root.blister5.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister6.lips.node)) { _root.blister6.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister7.lips.node)) { _root.blister7.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister8.lips.node)) { _root.blister8.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister1.node2)) { _root.blister1.nextFrame(); _root.blister1.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister2.node2)) { _root.blister2.nextFrame(); _root.blister2.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister3.node2)) { _root.blister3.nextFrame(); _root.blister3.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister4.node2)) { _root.blister4.nextFrame(); _root.blister4.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister5.node2)) { _root.blister5.nextFrame(); _root.blister5.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister6.node2)) { _root.blister6.nextFrame(); _root.blister6.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister7.node2)) { _root.blister7.nextFrame(); _root.blister7.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.blister8.node2)) { _root.blister8.nextFrame(); _root.blister8.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.legs.legs1.part1.legbox)) { _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.legs.legs1.part1.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.torso.top1.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.legs.legs1.part2.legbox)) { _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.legs.legs1.part2.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.torso.bodyshot)) { _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); _root.ench1.torso.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.head1.head_destruct.head.headshot)) { _root.ench1.head1.head_destruct.head.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.legs.legs1.part3.legbox)) { _root.ench1.legs.legshit.part3.nextFrame(); _root.ench1.legs.legs1.part3.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); _root.ench1.legs.legs1.gotoAndPlay(17); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.legs.legs1.part4.legbox)) { _root.ench1.legs.legshit.part4.nextFrame(); _root.ench1.legs.legs1.part4.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.legs.legs1.part4.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } }Symbol 45 MovieClip [bullet1] Frame 2stop();Instance of Symbol 41 MovieClip "bullet2" in Symbol 45 MovieClip [bullet1] Frame 2onClipEvent (load) { var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 7; var maxJump = -18; var touchingGround = false; } onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.rose.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].gotoAndStop(6); removeMovieClip(_parent); } c++; } if (this.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate.crate_alive)) { _root.ground.crate.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate2.crate_alive)) { _root.ground.crate2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate3.crate_alive)) { _root.ground.crate3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate4.crate_alive)) { _root.ground.crate4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate5.crate_alive)) { _root.ground.crate5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall1.wall_alive)) { _root.wall1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall2.wall_alive)) { _root.wall2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall3.wall_alive)) { _root.wall3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g2.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g5.node)) { _root.tank.g5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g8.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g9.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g10.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g10.node)) { _root.tank2.g10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank2.g12.node)) { _root.tank2.g2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } }Instance of Symbol 41 MovieClip "bullet2" in Symbol 45 MovieClip [bullet1] Frame 2onClipEvent (load) { var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 7; var maxJump = -18; var touchingGround = false; } onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.rose.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].gotoAndStop(6); removeMovieClip(_parent); } c++; } if (this.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate.crate_alive)) { _root.ground.crate.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate2.crate_alive)) { _root.ground.crate2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate3.crate_alive)) { _root.ground.crate3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate4.crate_alive)) { _root.ground.crate4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate5.crate_alive)) { _root.ground.crate5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall1.wall_alive)) { _root.wall1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall2.wall_alive)) { _root.wall2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall3.wall_alive)) { _root.wall3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall4.wall_alive)) { _root.wall4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall5.wall_alive)) { _root.wall5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g2.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g5.node)) { _root.tank.g5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g8.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g9.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g10.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g10.node)) { _root.tank2.g10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g12.node)) { _root.tank2.g2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g4.node)) { _root.tank3.g4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g5.node)) { _root.tank3.g5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g6.node)) { _root.tank3.g6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g7.node)) { _root.tank3.g7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g8.node)) { _root.tank3.g8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g9.node)) { _root.tank3.g9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g10.node)) { _root.tank3.g10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g11.node)) { _root.tank3.g11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g2.node)) { _root.tank4.g2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g3.node)) { _root.tank4.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g4.node)) { _root.tank4.g4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g12.node)) { _root.tank4.g12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g5.node)) { _root.tank4.g5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g6.node)) { _root.tank4.g6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g7.node)) { _root.tank4.g7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g8.node)) { _root.tank4.g8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g9.node)) { _root.tank4.g9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g10.node)) { _root.tank4.g10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g11.node)) { _root.tank4.g11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz9.buzz_alive)) { _root.buzz9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz10.buzz_alive)) { _root.buzz10.nextFrame(); } if (this.hitTest(_root.buzz11.buzz_alive)) { _root.buzz11.nextFrame(); } if (this.hitTest(_root.buzz12.buzz_alive)) { _root.buzz12.nextFrame(); } }Symbol 45 MovieClip [bullet1] Frame 3stop();Instance of Symbol 44 MovieClip in Symbol 45 MovieClip [bullet1] Frame 3onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].gotoAndStop(5); removeMovieClip(_parent); } c++; } if (this.hitTest(_root.crate.crate_alive)) { _root.crate.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys13.crys_alive)) { _root.ground.crys13.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys14.crys_alive)) { _root.ground.crys14.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys15.crys_alive)) { _root.ground.crys15.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys16.crys_alive)) { _root.ground.crys16.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys17.crys_alive)) { _root.ground.crys17.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crys18.crys_alive)) { _root.ground.crys18.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.crate.crate_alive)) { _root.crate.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate2.crate_alive)) { _root.crate2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate3.crate_alive)) { _root.crate3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate4.crate_alive)) { _root.crate4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate5.crate_alive)) { _root.crate5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz9.buzz_alive)) { _root.buzz9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz10.buzz_alive)) { _root.buzz10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz11.buzz_alive)) { _root.buzz11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz12.buzz_alive)) { _root.buzz12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.buzz13.buzz_alive)) { _root.buzz13.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall1.wall_alive)) { _root.wall1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall2.wall_alive)) { _root.wall2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall3.wall_alive)) { _root.wall3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall4.wall_alive)) { _root.wall4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.wall5.wall_alive)) { _root.wall5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g5.node)) { _root.tank1.g5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g8.node)) { _root.tank1.g8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g9.node)) { _root.tank1.g9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g1.node)) { _root.tank1.g1.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g10.node)) { _root.tank1.g10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g10.node)) { _root.tank2.g10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank2.g12.node)) { _root.tank2.g12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g4.node)) { _root.tank3.g4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g5.node)) { _root.tank3.g5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g6.node)) { _root.tank3.g6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g7.node)) { _root.tank3.g7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g8.node)) { _root.tank3.g8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g9.node)) { _root.tank3.g9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g10.node)) { _root.tank3.g10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank3.g11.node)) { _root.tank3.g11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g2.node)) { _root.tank4.g2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g3.node)) { _root.tank4.g3.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g4.node)) { _root.tank4.g4.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g12.node)) { _root.tank4.g12.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g5.node)) { _root.tank4.g5.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g6.node)) { _root.tank4.g6.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g7.node)) { _root.tank4.g7.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g8.node)) { _root.tank4.g8.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g9.node)) { _root.tank4.g9.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g10.node)) { _root.tank4.g10.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.tank4.g11.node)) { _root.tank4.g11.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister1.lips.node)) { _root.blister1.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister2.lips.node)) { _root.blister2.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister3.lips.node)) { _root.blister3.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister4.lips.node)) { _root.blister4.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister5.lips.node)) { _root.blister5.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister6.lips.node)) { _root.blister6.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister7.lips.node)) { _root.blister7.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister8.lips.node)) { _root.blister8.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench1.legs.legs1.part1.legbox)) { _root.ench1.legs.legs1.part1.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench1.legs.legs1.part2.legbox)) { _root.ench1.legs.legs1.part2.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench1.torso.bodyshot)) { _root.ench1.torso.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench1.head1.head_destruct.head.headshot)) { _root.ench1.head1.head_destruct.head.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench1.legs.legs1.part3.legbox)) { _root.ench1.legs.legshit.part3.nextFrame(); _root.ench1.legs.legs1.part3.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench1.legs.legs1.part4.legbox)) { _root.ench1.legs.legshit.part4.nextFrame(); _root.ench1.legs.legs1.part4.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.legs.legs1.part4.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } }Symbol 62 MovieClip Frame 79_parent.gotoAndStop(3);Symbol 68 MovieClip Frame 17_parent.gotoAndStop(4);Symbol 87 MovieClip Frame 1play();Symbol 87 MovieClip Frame 58_parent.gotoAndStop(1);Symbol 95 MovieClip [sprout1] Frame 1stop();Symbol 99 MovieClip Frame 11stop();Symbol 117 MovieClip Frame 65stop(); _parent._parent.removeMovieClip();Symbol 125 MovieClip Frame 1var ySp = 1; var xSp = 1; var fall = 29; var gravi = ((this.gravi = random(1) - 0.85)); var explode = function () { this._rotation = this.rota; }; this.rota = random(50) - 20;Symbol 125 MovieClip Frame 22stop();Symbol 126 MovieClip Frame 1stop(); this.gotoAndStop(random(11));Symbol 128 MovieClip Frame 1var ySp = 1; var xSp = 1; var fall = 29; var gravi = ((this.gravi = random(1) - 0.85)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(21) - 10; this.ySp = random(22) - 15; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 132 MovieClip Frame 10stop();Symbol 143 MovieClip Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(20) - 10; this.ySp = random(20) - 15; this.rota = random(50) - 20; this.onEnterFrame = explode; stop(); gotoAndStop(random(11));Symbol 156 MovieClip Frame 1gotoAndStop(random(6)); var fall = 2; var gravi = ((this.gravi = random(0.5) - 0.5)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(18) - 14; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 159 MovieClip Frame 1var counter = 500; counter--; this.onEnterFrame == function () { counter--; if (counter <= 0) { this.removeMovieClip(); } }; this.gotoAndStop(random(11)); var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(20) - 10; this.ySp = random(20) - 15; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 159 MovieClip Frame 2stop();Instance of Symbol 143 MovieClip in Symbol 160 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 143 MovieClip in Symbol 160 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 143 MovieClip in Symbol 160 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 156 MovieClip in Symbol 160 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 143 MovieClip in Symbol 160 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 143 MovieClip in Symbol 160 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 143 MovieClip in Symbol 160 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 143 MovieClip in Symbol 160 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 160 MovieClip Frame 81_parent.removeMovieClip();Symbol 161 MovieClip Frame 55stop(); _parent.removeMovieClip(); _parent._parent.removeMovieClip();Symbol 194 MovieClip Frame 1var gravi = ((this.gravi = random(0.5) - 0.5)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(5) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode; var fall = 2;Symbol 194 MovieClip Frame 33var gravi = ((this.gravi = random(0.5) - 0.5)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = 0; this.ySp = 0; this.rota = 20; this.onEnterFrame = explode;Symbol 196 MovieClip Frame 1var gravi = ((this.gravi = random(0.5) - 0.5)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(5) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 196 MovieClip Frame 40_parent.removeMovieClip();Symbol 198 MovieClip Frame 1var gravi = ((this.gravi = random(0.5) - 0.5)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(5) - 5; this.ySp = random(5) - 8; this.rota = random(5) - 5; this.onEnterFrame = explode;Symbol 198 MovieClip Frame 35_parent.removeMovieClip();Symbol 200 MovieClip Frame 1var gravi = ((this.gravi = random(0.5) - 0.5)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(5) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 200 MovieClip Frame 31_parent.removeMovieClip();Symbol 201 MovieClip Frame 1stop(); gotoAndStop(random(7));Instance of Symbol 194 MovieClip in Symbol 201 MovieClip Frame 4onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 25; this._alpha = this._alpha - 42; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = this._alpha - 42; } }Instance of Symbol 196 MovieClip in Symbol 201 MovieClip Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = this._alpha - 42; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = this._alpha - 42; } }Instance of Symbol 198 MovieClip in Symbol 201 MovieClip Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = this._alpha - 42; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = this._alpha - 42; } }Instance of Symbol 143 MovieClip in Symbol 201 MovieClip Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 143 MovieClip in Symbol 201 MovieClip Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 211 MovieClip Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; }; this.xSp = random(20) - 10; this.ySp = random(20) - 15; this.onEnterFrame = explode; onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { xSp = 0; ySp = 0; fall = 0; gravi = 0; } if (this.hitTest(_root.ground.stubble2)) { xSp = 0; ySp = 0; fall = 0; } };Symbol 211 MovieClip Frame 16stop();Symbol 212 MovieClip Frame 51stop(); _parent._parent.removeMovieClip();Symbol 239 MovieClip [ammog] Frame 24stop();Symbol 294 MovieClip Frame 1this._alpha = "0";Symbol 294 MovieClip Frame 50this._alpha = "0"; _parent.removeMovieClip();Symbol 295 MovieClip Frame 55stop(); stop();Symbol 296 MovieClip Frame 1stop(); gotoAndStop(random(5));Symbol 296 MovieClip Frame 2stop();Symbol 296 MovieClip Frame 3stop();Symbol 297 MovieClip [enemy] Frame 1stop(); var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 2; var maxJump = -12; var touchingGround = false; onEnterFrame = function () { _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; } else { touchingGround = false; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } }; var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 7; var maxJump = -18; var touchingGround = false; onEnterFrame = function () { _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; } else { touchingGround = false; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } }; stop();Instance of Symbol 95 MovieClip [sprout1] "sprout_main" in Symbol 297 MovieClip [enemy] Frame 1onClipEvent (load) { var mspeed = 2; var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 4; var maxJump = -18; var touchingGround = false; } onClipEvent (enterFrame) { this.gotoAndStop(3); if (_parent._x > _root.hero._x) { _parent._xscale = 100; _parent._x = _parent._x - mspeed; } if (_parent._x < _root.hero._x) { _parent._xscale = -100; _parent._x = _parent._x + mspeed; } if (_parent._x > _root.hero._x) { _parent._x = _parent._x - 1; } }Instance of Symbol 97 MovieClip [box_alive] in Symbol 297 MovieClip [enemy] Frame 1onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 2; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 2; } }Instance of Symbol 97 MovieClip [box_alive] "box_alive" in Symbol 297 MovieClip [enemy] Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 1; _root.lifebar.nextFrame(); } }Instance of Symbol 97 MovieClip [box_alive] in Symbol 297 MovieClip [enemy] Frame 1onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }Instance of Symbol 97 MovieClip [box_alive] in Symbol 297 MovieClip [enemy] Frame 3onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }Instance of Symbol 97 MovieClip [box_alive] "box_alive" in Symbol 297 MovieClip [enemy] Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 1; _root.lifebar.nextFrame(); } }Symbol 307 MovieClip [gib] Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(25) - 10; this.ySp = random(10) - 15; this.rota = random(10) - 20; this.onEnterFrame = explode; this.gotoAndStop(random(10)); stop();Symbol 323 MovieClip Frame 1gotoAndStop(random(3));Symbol 324 MovieClip [particle] Frame 1stop(); var fall = 6; var gravi = ((this.gravi = random(0.3) - 0.3)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this._xscale = random(210) - 190; this._yscale = random(210) - 190; this.xSp = random(10) - 5; this.ySp = random(12) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Instance of Symbol 323 MovieClip in Symbol 324 MovieClip [particle] Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground._x, _y)) { _parent.rota = 0; _parent.gravi = 1; _parent.xSp = 0; _parent.ySp = 0; } }Symbol 325 MovieClip [particle_explode] Frame 1play();Instance of Symbol 324 MovieClip [particle] "shard" in Symbol 325 MovieClip [particle_explode] Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 30; this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = 0; this._y = this._y - 30; } }Symbol 325 MovieClip [particle_explode] Frame 70stop(); this.removeMovieClip();Symbol 334 MovieClip Frame 1stop(); this._alpha = "0";Symbol 346 MovieClip Frame 1stop();Instance of Symbol 345 MovieClip "gem" in Symbol 346 MovieClip Frame 1/* no clip actions */Symbol 358 MovieClip Frame 15stop();Symbol 371 MovieClip Frame 1stop(); var fall = 6; var gravi = ((this.gravi = random(0.2) - 0.2)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(6) - 3; this.ySp = random(4) - 5; this.onEnterFrame = explode;Instance of Symbol 370 MovieClip in Symbol 371 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.gotoAndStop(8); _parent.xSp = 0; _parent.ySp = 0; _parent.fall = 0; _parent.gravi = 0; } if (this.hitTest(_root.ground.stubble2)) { this.gotoAndStop(8); _parent.xSp = 0; _parent.ySp = 0; _parent.fall = 0; _parent.gravi = 0; } }Instance of Symbol 97 MovieClip [box_alive] in Symbol 371 MovieClip Frame 1/* no clip actions */Symbol 371 MovieClip Frame 2var xSp = 0; var ySp = 0; stop(); _root.coins = _root.coins + 1;Symbol 372 MovieClip Frame 1stop();Symbol 372 MovieClip Frame 3play();Instance of Symbol 371 MovieClip "coin_grab" in Symbol 372 MovieClip Frame 120onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Symbol 372 MovieClip Frame 121stop(); this.removeMovieClip();Symbol 377 MovieClip Frame 1play();Symbol 377 MovieClip Frame 4stop();Symbol 383 MovieClip Frame 1stop(); this.gotoAndStop(random(6));Symbol 384 MovieClip Frame 1play(); var fall = 6; var gravi = ((this.gravi = random(0.3) - 0.3)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(12) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 384 MovieClip Frame 80stop(); this.removeMovieClip();Symbol 393 MovieClip Frame 1play();Symbol 393 MovieClip Frame 31stop(); this.removeMovieClip();Symbol 398 MovieClip Frame 1play(); play(); var fall = 4; var gravi = ((this.gravi = random(0.4) - 0.4)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; }; this.xSp = random(4) - 4; this.ySp = random(4) - 4; this.onEnterFrame = explode;Symbol 398 MovieClip Frame 85stop();Symbol 400 MovieClip Frame 1play(); var fall = 6; var gravi = ((this.gravi = random(0.7) - 0.7)); var explode = function () { this._x = this._x - this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(2) - 2; this.ySp = random(2) - 2; this.onEnterFrame = explode;Symbol 400 MovieClip Frame 27stop();Symbol 401 MovieClip Frame 1stop();Instance of Symbol 384 MovieClip in Symbol 401 MovieClip Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 401 MovieClip Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 401 MovieClip Frame 10onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 401 MovieClip Frame 10onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 401 MovieClip Frame 11play();Instance of Symbol 384 MovieClip in Symbol 401 MovieClip Frame 11onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 401 MovieClip Frame 11onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 401 MovieClip Frame 126stop(); this.removeMovieClip();Symbol 402 MovieClip Frame 1stop();Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 40; _root.hero._y = 210; _root.hero._x = 350; } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 40; _root.hero._y = 210; _root.hero._x = 350; } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 346 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.flamethrower = false; _root.cuttershot = true; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.char.gotoAndStop(3); _root.bulletLifeTimerTotal = 670; _root.bulletSpeed = 25; _root.bulletOffset = 0; _root.reloadSpeed = 80; } }Instance of Symbol 346 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.cuttershot = false; _root.flamethrower = true; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.char.gotoAndStop(2); _root.bulletLifeTimerTotal = 21; _root.bulletSpeed = 15; _root.bulletOffset = 13; _root.reloadSpeed = 20; } }Instance of Symbol 346 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.flamethrower = false; _root.cuttershot = true; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.char.gotoAndStop(3); _root.bulletLifeTimerTotal = 670; _root.bulletSpeed = 25; _root.bulletOffset = 0; _root.reloadSpeed = 80; } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Instance of Symbol 334 MovieClip in Symbol 402 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }Symbol 406 MovieClip Frame 1stop();Symbol 406 MovieClip Frame 2stop();Symbol 408 MovieClip Frame 1stop();Instance of Symbol 412 MovieClip "head" in Symbol 414 MovieClip Frame 1onClipEvent (enterFrame) { playerX = this._x; playerY = this._y; rotationDirection = Math.round(90 - ((Math.atan2(_xmouse - playerX, _ymouse - playerY) * 90) / Math.PI)); this._rotation = rotationDirection; }Symbol 434 MovieClip Frame 1stop();Symbol 438 MovieClip Frame 1var fall = 2; var gravi = ((this.gravi = random(0.5) - 0.5)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this._xscale = random(210) - 120; this._yscale = random(210) - 120; this.xSp = random(10) - 5; this.ySp = random(18) - 18; this.rota = random(50) - 20; this.onEnterFrame = explode; this.gotoAndStop(random(4));Symbol 443 MovieClip Frame 20stop();Symbol 444 MovieClip Frame 1stop(); var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 2; var maxJump = -12; var rota = (math.random(4) - 10); var touchingGround = false; onEnterFrame = function () { rota_box._rotation = rota_box._rotation + this.rota; _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; rota = 0; } else { touchingGround = false; rota = 6; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } }; stop(); var ground = _root.ground; var grav = 0;Instance of Symbol 97 MovieClip [box_alive] in Symbol 444 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }Symbol 444 MovieClip Frame 2stop(); var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 2; var maxJump = -12; var rota = (math.random(4) - 10); var touchingGround = false; var ysp = 5; onEnterFrame = function () { this._y = this._y - ysp; ysp = ysp - 0.5; this._x = this._x - (math.random(2) - 20); rota_box._rotation = rota_box._rotation + this.rota; _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; rota = 0; } else { touchingGround = false; rota = 6; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } };Instance of Symbol 434 MovieClip "rota_box" in Symbol 444 MovieClip Frame 2onClipEvent (enterFrame) { this.nextFrame(); }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 444 MovieClip Frame 3var touchingGround = true; var speed = 0; var ysp = 0; play();Instance of Symbol 32 MovieClip [bullet_explode] in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 371 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 371 MovieClip in Symbol 444 MovieClip Frame 3onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 182onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 182onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 182onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 182onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 438 MovieClip in Symbol 444 MovieClip Frame 182onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 444 MovieClip Frame 186var touchingGround = true; var speed = 0; stop(); this.removeMovieClip();Symbol 456 MovieClip Frame 1play(); var fall = 6; var gravi = ((this.gravi = random(0.3) - 0.3)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(12) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 456 MovieClip Frame 80stop(); this.removeMovieClip();Symbol 457 MovieClip Frame 1stop();Instance of Symbol 97 MovieClip [box_alive] in Symbol 457 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }Instance of Symbol 97 MovieClip [box_alive] in Symbol 457 MovieClip Frame 1onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 457 MovieClip Frame 6play(); var touchingGround = true; var speed = 0;Instance of Symbol 456 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = this._alpha - 5; } }Instance of Symbol 456 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 371 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 371 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 371 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 371 MovieClip in Symbol 457 MovieClip Frame 6onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Symbol 457 MovieClip Frame 127stop(); this.removeMovieClip();Symbol 465 MovieClip Frame 1play(); var fall = 6; var gravi = ((this.gravi = random(0.3) - 0.3)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(12) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 465 MovieClip Frame 60this.removeMovieClip(); stop();Symbol 466 MovieClip Frame 1stop();Symbol 466 MovieClip Frame 2onEnterFrame = function () { _parent.g5.bt.stop(); _parent.g6.t.stop(); _parent.g7.t.stop(); _parent.g8.t.stop(); _parent.g9.bt.stop(); _parent.g10.nextFrame(); };Instance of Symbol 384 MovieClip in Symbol 466 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 466 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 466 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 466 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 466 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 466 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 466 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 465 MovieClip in Symbol 466 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 473 MovieClip Frame 2stop();Symbol 479 MovieClip Frame 14stop();Symbol 486 MovieClip Frame 5stop();Symbol 488 MovieClip Frame 1play(); var fall = 6; var gravi = ((this.gravi = random(0.3) - 0.3)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(12) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 488 MovieClip Frame 144this.removeMovieClip(); stop();Symbol 490 MovieClip Frame 1play(); var fall = 6; var gravi = ((this.gravi = random(0.3) - 0.3)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(12) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 490 MovieClip Frame 125stop(); this.removeMovieClip();Symbol 492 MovieClip Frame 1stop();Instance of Symbol 479 MovieClip in Symbol 492 MovieClip Frame 11onClipEvent (enterFrame) { this.play(); }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 488 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 490 MovieClip in Symbol 492 MovieClip Frame 12onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 492 MovieClip Frame 14stop();Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 492 MovieClip Frame 14onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 509 MovieClip Frame 54stop();Symbol 510 MovieClip Frame 1stop();Instance of Symbol 384 MovieClip in Symbol 510 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 510 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 510 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 510 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 510 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 510 MovieClip Frame 3_parent.xsp = 0; _parent.g5.stop(); _parent.g6.stop(); _parent.g7.stop(); _parent.g8.stop(); _parent.g9.stop();Instance of Symbol 371 MovieClip in Symbol 510 MovieClip Frame 3onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 371 MovieClip in Symbol 510 MovieClip Frame 3onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 371 MovieClip in Symbol 510 MovieClip Frame 3onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 371 MovieClip in Symbol 510 MovieClip Frame 3onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 371 MovieClip in Symbol 510 MovieClip Frame 3onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Instance of Symbol 371 MovieClip in Symbol 510 MovieClip Frame 3onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }Symbol 515 MovieClip Frame 1play(); var fall = 6; var gravi = ((this.gravi = random(0.3) - 0.3)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(10) - 5; this.ySp = random(12) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;Symbol 515 MovieClip Frame 60stop(); this.removeMovieClip();Symbol 516 MovieClip Frame 1stop();Symbol 516 MovieClip Frame 2onEnterFrame = function () { _parent.g5.bt.stop(); _parent.g6.t.stop(); _parent.g7.t.stop(); _parent.g8.t.stop(); _parent.g9.bt.stop(); _parent.g10.nextFrame(); };Symbol 518 MovieClip Frame 1stop();Instance of Symbol 384 MovieClip in Symbol 518 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 518 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 518 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 518 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 518 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 525 MovieClip Frame 2stop();Symbol 536 MovieClip Frame 1stop();Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 536 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip "2" in Symbol 536 MovieClip Frame 7onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip "2" in Symbol 536 MovieClip Frame 7onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 536 MovieClip Frame 8_parent.g2.gotoAndStop(14); _parent.g3.gotoAndStop(11); _parent.g12.gotoAndStop(6); _parent.g1.gotoAndStop(18); _parent.g11.gotoAndStop(6);Instance of Symbol 384 MovieClip "5" in Symbol 536 MovieClip Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip "8" in Symbol 536 MovieClip Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip "7" in Symbol 536 MovieClip Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip "33" in Symbol 536 MovieClip Frame 8onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 547 MovieClip Frame 12stop();Symbol 548 MovieClip Frame 1stop();Symbol 548 MovieClip Frame 2onEnterFrame = function () { _parent.g5.bt.stop(); _parent.g6.t.stop(); _parent.g7.t.stop(); _parent.g8.t.stop(); _parent.g9.bt.stop(); _parent.xsp = 0; };Symbol 553 MovieClip Frame 1stop();Instance of Symbol 384 MovieClip in Symbol 553 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 553 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 553 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 553 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 553 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 560 MovieClip Frame 2stop();Symbol 565 MovieClip Frame 3stop();Symbol 566 MovieClip Frame 1stop();Instance of Symbol 384 MovieClip in Symbol 566 MovieClip Frame 10onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 566 MovieClip Frame 10onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 566 MovieClip Frame 10onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 566 MovieClip Frame 10onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 566 MovieClip Frame 11_parent.g1.gotoAndStop(2); _parent.g11.gotoAndStop(2);Symbol 567 MovieClip Frame 1stop(); var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 2; var maxJump = -12; var touchingGround = false; onEnterFrame = function () { _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; } else { touchingGround = false; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } }; var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 7; var maxJump = -18; var touchingGround = false; onEnterFrame = function () { _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; } else { touchingGround = false; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } };Instance of Symbol 97 MovieClip [box_alive] in Symbol 567 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }Symbol 572 MovieClip Frame 1stop(); var grav = 0; var gravity = 0.5; var speed = 0.5; var maxJump = -5; var rota = (math.random(4) - 10); var touchingGround = false; onEnterFrame = function () { rota_box._rotation = rota_box._rotation + this.rota; _y = (_y + grav); grav = grav + gravity; while (_parent.ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (_parent.ground.hitTest(_x, _y + 5, true)) { touchingGround = true; rota = 0; } else { touchingGround = false; rota = 6; } if (_parent.ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (_parent.ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } }; stop();Instance of Symbol 97 MovieClip [box_alive] in Symbol 572 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }Instance of Symbol 377 MovieClip "flash" in Symbol 572 MovieClip Frame 2onClipEvent (load) { this.gotoAndPlay(1); }Instance of Symbol 97 MovieClip [box_alive] in Symbol 572 MovieClip Frame 3onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 3onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 377 MovieClip "flash2" in Symbol 572 MovieClip Frame 3onClipEvent (load) { this.gotoAndPlay(1); }Instance of Symbol 377 MovieClip "flash3" in Symbol 572 MovieClip Frame 4onClipEvent (load) { this.gotoAndPlay(1); }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 5onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 377 MovieClip "flash4" in Symbol 572 MovieClip Frame 5onClipEvent (load) { this.gotoAndPlay(1); }Symbol 572 MovieClip Frame 6play();Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Instance of Symbol 384 MovieClip in Symbol 572 MovieClip Frame 6onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 572 MovieClip Frame 121stop(); this.removeMovieClip();Symbol 589 MovieClip Frame 1onLoad = function () { turn = 0; }; onEnterFrame = function () { _parent._x = _parent._x - 0; };Symbol 589 MovieClip Frame 20onEnterFrame = function () { xsp = 3; _parent._x = _parent._x - xsp; };Symbol 597 MovieClip Frame 3stop();Symbol 613 MovieClip Frame 1onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }; var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(25) - 10; this.ySp = random(10) - 15; this.rota = random(10) - 20; this.onEnterFrame = explode; this.gotoAndStop(random(7));Symbol 614 MovieClip Frame 1play();Instance of Symbol 613 MovieClip in Symbol 614 MovieClip Frame 1onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = this._alpha - 5; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 614 MovieClip Frame 60stop(); this.unloadMovie();Symbol 619 MovieClip Frame 10stop();Symbol 621 MovieClip [tooth] Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.25)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(15) - 10; this.ySp = random(5) - 8; this.rota = random(10) - 20; this.onEnterFrame = explode; this.gotoAndStop(random(4));Symbol 622 MovieClip Frame 1stop();Symbol 622 MovieClip Frame 6_parent._x = _parent._x + 1;Instance of Symbol 608 MovieClip in Symbol 622 MovieClip Frame 6onClipEvent (load) { this.gotoAndPlay(random(12)); }Symbol 622 MovieClip Frame 7onEnterFrame = function () { this.attachMovie(tooth, t1, _root.getNextHighestDepth); };Symbol 622 MovieClip Frame 8_parent.nextFrame();Symbol 627 MovieClip Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(15) - 10; this.ySp = random(6) - 11; this.rota = random(5) - 10; this.onEnterFrame = explode; stop(); this.gotoAndStop(random(4));Symbol 628 MovieClip Frame 1stop(); var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 2; var maxJump = -12; var touchingGround = false; onEnterFrame = function () { _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; } else { touchingGround = false; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } }; var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 7; var maxJump = -18; var touchingGround = false; onEnterFrame = function () { _y = (_y + grav); grav = grav + gravity; while (ground.hitTest(_x, _y, true)) { _y = (_y - gravity); grav = 0; } if (ground.hitTest(_x, _y + 5, true)) { touchingGround = true; } else { touchingGround = false; } if (ground.hitTest(_x + (_width / 2), _y - (_height / 2), true)) { _x = (_x - speed); } if (ground.hitTest(_x - (_width / 2), _y - (_height / 2), true)) { _x = (_x + speed); } }; stop();Instance of Symbol 97 MovieClip [box_alive] in Symbol 628 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }Instance of Symbol 627 MovieClip in Symbol 628 MovieClip Frame 2onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }Symbol 633 MovieClip Frame 10gotoAndPlay (1);Symbol 633 MovieClip Frame 13gotoAndPlay (1);Symbol 639 MovieClip Frame 2stop();Symbol 670 MovieClip Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(25) - 10; this.ySp = random(10) - 15; this.rota = random(10) - 20; this.onEnterFrame = explode;Symbol 672 MovieClip Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(25) - 10; this.ySp = random(10) - 15; this.rota = random(10) - 20; this.onEnterFrame = explode;Symbol 674 MovieClip Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(25) - 10; this.ySp = random(10) - 15; this.rota = random(10) - 20; this.onEnterFrame = explode;Symbol 676 MovieClip Frame 1var fall = 3; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(25) - 10; this.ySp = random(10) - 15; this.rota = random(10) - 20; this.onEnterFrame = explode;Symbol 678 MovieClip Frame 1var fall = 6; var gravi = ((this.gravi = random(1) - 0.55)); var explode = function () { this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + this.rota; }; this.xSp = random(25) - 10; this.ySp = random(10) - 15; this.rota = random(10) - 20; this.onEnterFrame = explode;Symbol 679 MovieClip Frame 1stop();Symbol 679 MovieClip Frame 32_parent.legs.unloadMovie(); _parent.arm1.unloadMovie(); _parent.arm2.unloadMovie(); _parent.levi1.unloadMovie(); _parent.levi2.unloadMovie(); _parent.head1.nextFrame();Symbol 709 MovieClip Frame 1stop();Symbol 716 MovieClip Frame 1stop();Symbol 716 MovieClip Frame 6this._rotation = -15;Symbol 723 MovieClip Frame 1stop();Symbol 723 MovieClip Frame 7_parent.part1.gotoAndStop(6); this._rotation = -15;Symbol 724 MovieClip Frame 15gotoAndPlay (1);Symbol 724 MovieClip Frame 16_parent._parent.head1.head_destruct.gotoAndPlay(31);Symbol 724 MovieClip Frame 25gotoAndPlay (1);Symbol 725 MovieClip Frame 1stop();Symbol 737 MovieClip Frame 2stop();Symbol 758 MovieClip Frame 1stop();Symbol 758 MovieClip Frame 30play();Symbol 758 MovieClip Frame 95_parent._parent.unloadMovie(); stop();Symbol 759 MovieClip Frame 30gotoAndPlay (1);Symbol 759 MovieClip Frame 46gotoAndPlay (1);Symbol 760 MovieClip Frame 1stop();Instance of Symbol 38 MovieClip in Symbol 760 MovieClip Frame 2onClipEvent (load) { stop(); var fall = 6; var gravi = ((_parent.head_destruct.gravi = random(0.3) - 0.3)); var explode = function () { _parent.head_destruct._x = _parent.head_destruct._x + _parent.head_destruct.xSp; _parent.head_destruct.ySp = _parent.head_destruct.ySp - gravi; _parent.head_destruct._y = _parent.head_destruct._y + _parent.head_destruct.ySp; _parent.head_destruct._rotation = _parent.head_destruct._rotation + _parent.head_destruct.rota; }; _parent.head_destruct.xSp = random(10) - 5; _parent.head_destruct.ySp = random(12) - 8; _parent.head_destruct.rota = random(50) - 20; _parent.head_destruct.onEnterFrame = explode; }Symbol 762 MovieClip Frame 20gotoAndPlay (1);Symbol 762 MovieClip Frame 27gotoAndPlay (1);Symbol 763 MovieClip Frame 1stop();Symbol 765 MovieClip Frame 15gotoAndPlay (1);Symbol 765 MovieClip Frame 25_parent.gotoAndStop(1);Symbol 766 MovieClip Frame 1stop();Symbol 767 MovieClip Frame 1stop(); this.gotoAndStop(random(4));Instance of Symbol 97 MovieClip [box_alive] in Symbol 767 MovieClip Frame 1onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Library Items
Symbol 1 Graphic | Used by:9 | |
Symbol 2 Graphic | Used by:9 | |
Symbol 3 Graphic | Used by:9 | |
Symbol 4 Graphic | Used by:9 | |
Symbol 5 Graphic | Used by:9 | |
Symbol 6 Graphic | Used by:9 | |
Symbol 7 Graphic | Used by:9 | |
Symbol 8 Graphic | Used by:9 | |
Symbol 9 MovieClip | Uses:1 2 3 4 5 6 7 8 | Used by:16 |
Symbol 10 Graphic | Used by:15 | |
Symbol 11 Graphic | Used by:15 | |
Symbol 12 Graphic | Used by:15 | |
Symbol 13 Graphic | Used by:15 | |
Symbol 14 Graphic | Used by:15 | |
Symbol 15 MovieClip | Uses:10 11 12 13 14 | Used by:16 |
Symbol 16 MovieClip [sprout] | Uses:9 15 | |
Symbol 17 Graphic | Used by:45 | |
Symbol 18 Graphic | Used by:19 | |
Symbol 19 MovieClip | Uses:18 | Used by:33 |
Symbol 20 Graphic | Used by:31 | |
Symbol 21 Graphic | Used by:31 | |
Symbol 22 Graphic | Used by:31 | |
Symbol 23 Graphic | Used by:31 | |
Symbol 24 Graphic | Used by:31 | |
Symbol 25 Graphic | Used by:31 | |
Symbol 26 Graphic | Used by:31 | |
Symbol 27 Graphic | Used by:31 | |
Symbol 28 Graphic | Used by:31 | |
Symbol 29 Graphic | Used by:31 | |
Symbol 30 Graphic | Used by:31 | |
Symbol 31 MovieClip [dia_explode] | Uses:20 21 22 23 24 25 26 27 28 29 30 | Used by:32 161 201 212 372 457 |
Symbol 32 MovieClip [bullet_explode] | Uses:31 | Used by:33 68 297 444 510 |
Symbol 33 MovieClip | Uses:19 32 | Used by:45 |
Symbol 34 Graphic | Used by:41 | |
Symbol 35 Bitmap | Used by:36 40 | |
Symbol 36 Graphic | Uses:35 | Used by:41 |
Symbol 37 Graphic | Used by:38 | |
Symbol 38 MovieClip | Uses:37 | Used by:41 372 402 444 466 492 510 516 518 536 548 553 566 622 628 679 716 723 758 760 |
Symbol 39 Graphic | Used by:41 | |
Symbol 40 Graphic | Uses:35 | Used by:41 |
Symbol 41 MovieClip | Uses:34 36 38 39 40 | Used by:45 |
Symbol 42 Graphic | Used by:44 | |
Symbol 43 Graphic | Used by:44 | |
Symbol 44 MovieClip | Uses:42 43 | Used by:45 |
Symbol 45 MovieClip [bullet1] | Uses:17 33 41 44 | |
Symbol 46 Bitmap | Used by:47 | |
Symbol 47 Graphic | Uses:46 | Used by:62 |
Symbol 48 Bitmap | Used by:49 | |
Symbol 49 Graphic | Uses:48 | Used by:62 |
Symbol 50 Bitmap | Used by:51 | |
Symbol 51 Graphic | Uses:50 | Used by:62 |
Symbol 52 Bitmap | Used by:53 | |
Symbol 53 Graphic | Uses:52 | Used by:62 |
Symbol 54 Bitmap | Used by:55 | |
Symbol 55 Graphic | Uses:54 | Used by:62 |
Symbol 56 Graphic | Used by:62 | |
Symbol 57 Graphic | Used by:62 | |
Symbol 58 Graphic | Used by:62 | |
Symbol 59 Graphic | Used by:62 | |
Symbol 60 Graphic | Used by:62 | |
Symbol 61 Graphic | Used by:62 | |
Symbol 62 MovieClip | Uses:47 49 51 53 55 56 57 58 59 60 61 | Used by:95 |
Symbol 63 Graphic | Used by:68 | |
Symbol 64 Graphic | Used by:68 | |
Symbol 65 Graphic | Used by:68 | |
Symbol 66 Graphic | Used by:68 | |
Symbol 67 Graphic | Used by:68 | |
Symbol 68 MovieClip | Uses:63 32 64 65 66 67 | Used by:95 |
Symbol 69 Graphic | Used by:87 | |
Symbol 70 Graphic | Used by:87 | |
Symbol 71 Graphic | Used by:87 | |
Symbol 72 Graphic | Used by:87 | |
Symbol 73 Graphic | Used by:87 | |
Symbol 74 Graphic | Used by:87 | |
Symbol 75 Graphic | Used by:87 | |
Symbol 76 Graphic | Used by:87 | |
Symbol 77 Graphic | Used by:87 | |
Symbol 78 Graphic | Used by:87 | |
Symbol 79 Graphic | Used by:87 | |
Symbol 80 Graphic | Used by:87 | |
Symbol 81 Graphic | Used by:87 | |
Symbol 82 Graphic | Used by:87 | |
Symbol 83 Graphic | Used by:87 | |
Symbol 84 Graphic | Used by:87 | |
Symbol 85 Graphic | Used by:87 | |
Symbol 86 Graphic | Used by:87 | |
Symbol 87 MovieClip | Uses:69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | Used by:95 |
Symbol 88 Graphic | Used by:94 | |
Symbol 89 Graphic | Used by:94 | |
Symbol 90 Graphic | Used by:94 | |
Symbol 91 Graphic | Used by:94 | |
Symbol 92 Graphic | Used by:94 | |
Symbol 93 Graphic | Used by:94 | |
Symbol 94 MovieClip | Uses:88 89 90 91 92 93 | Used by:95 |
Symbol 95 MovieClip [sprout1] | Uses:62 68 87 94 | Used by:297 |
Symbol 96 Graphic | Used by:97 | |
Symbol 97 MovieClip [box_alive] | Uses:96 | Used by:297 371 444 457 567 572 628 767 |
Symbol 98 Graphic | Used by:99 | |
Symbol 99 MovieClip | Uses:98 | Used by:297 |
Symbol 100 Graphic | Used by:117 | |
Symbol 101 Graphic | Used by:117 | |
Symbol 102 Graphic | Used by:117 | |
Symbol 103 Graphic | Used by:117 | |
Symbol 104 Graphic | Used by:117 | |
Symbol 105 Graphic | Used by:117 | |
Symbol 106 Graphic | Used by:117 | |
Symbol 107 Graphic | Used by:117 | |
Symbol 108 Graphic | Used by:117 | |
Symbol 109 Graphic | Used by:117 | |
Symbol 110 Graphic | Used by:117 | |
Symbol 111 Graphic | Used by:117 | |
Symbol 112 Graphic | Used by:117 | |
Symbol 113 Graphic | Used by:117 | |
Symbol 114 Graphic | Used by:117 | |
Symbol 115 Graphic | Used by:117 | |
Symbol 116 Graphic | Used by:117 | |
Symbol 117 MovieClip | Uses:100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | Used by:201 295 296 |
Symbol 118 Graphic | Used by:125 | |
Symbol 119 Graphic | Used by:125 | |
Symbol 120 Graphic | Used by:125 | |
Symbol 121 Graphic | Used by:125 | |
Symbol 122 Graphic | Used by:125 | |
Symbol 123 Graphic | Used by:125 | |
Symbol 124 Graphic | Used by:125 | |
Symbol 125 MovieClip | Uses:118 119 120 121 122 123 124 | Used by:126 |
Symbol 126 MovieClip | Uses:125 | Used by:161 201 212 510 622 628 679 716 723 758 |
Symbol 127 Graphic | Used by:128 | |
Symbol 128 MovieClip | Uses:127 | Used by:161 201 212 295 296 372 510 628 |
Symbol 129 Graphic | Used by:132 | |
Symbol 130 Graphic | Used by:132 | |
Symbol 131 Graphic | Used by:132 | |
Symbol 132 MovieClip | Uses:129 130 131 | Used by:161 201 212 |
Symbol 133 Graphic | Used by:143 | |
Symbol 134 Graphic | Used by:143 | |
Symbol 135 Graphic | Used by:143 | |
Symbol 136 Graphic | Used by:143 | |
Symbol 137 Graphic | Used by:143 | |
Symbol 138 Graphic | Used by:143 | |
Symbol 139 Graphic | Used by:143 | |
Symbol 140 Graphic | Used by:143 | |
Symbol 141 Graphic | Used by:143 | |
Symbol 142 Graphic | Used by:143 | |
Symbol 143 MovieClip | Uses:133 134 135 136 137 138 139 140 141 142 | Used by:160 201 |
Symbol 144 Graphic | Used by:151 | |
Symbol 145 Graphic | Used by:151 | |
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:144 145 146 147 148 149 150 | Used by:156 |
Symbol 152 Graphic | Used by:156 | |
Symbol 153 Graphic | Used by:156 | |
Symbol 154 Graphic | Used by:156 | |
Symbol 155 Graphic | Used by:156 | |
Symbol 156 MovieClip | Uses:151 152 153 154 155 | Used by:160 |
Symbol 157 Graphic | Used by:159 | |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 MovieClip | Uses:157 158 | Used by:160 |
Symbol 160 MovieClip | Uses:143 156 159 | Used by:161 212 |
Symbol 161 MovieClip | Uses:132 160 31 128 126 | Used by:201 297 |
Symbol 162 Graphic | Used by:194 | |
Symbol 163 Graphic | Used by:194 | |
Symbol 164 Graphic | Used by:194 | |
Symbol 165 Graphic | Used by:194 | |
Symbol 166 Graphic | Used by:194 | |
Symbol 167 Graphic | Used by:194 | |
Symbol 168 Graphic | Used by:194 | |
Symbol 169 Graphic | Used by:194 | |
Symbol 170 Graphic | Used by:194 | |
Symbol 171 Graphic | Used by:194 | |
Symbol 172 Graphic | Used by:194 | |
Symbol 173 Graphic | Used by:194 | |
Symbol 174 Graphic | Used by:194 | |
Symbol 175 Graphic | Used by:194 | |
Symbol 176 Graphic | Used by:194 | |
Symbol 177 Graphic | Used by:194 | |
Symbol 178 Graphic | Used by:194 | |
Symbol 179 Graphic | Used by:194 | |
Symbol 180 Graphic | Used by:194 | |
Symbol 181 Graphic | Used by:194 | |
Symbol 182 Graphic | Used by:194 | |
Symbol 183 Graphic | Used by:194 | |
Symbol 184 Graphic | Used by:194 | |
Symbol 185 Graphic | Used by:194 | |
Symbol 186 Graphic | Used by:194 | |
Symbol 187 Graphic | Used by:194 | |
Symbol 188 Graphic | Used by:194 | |
Symbol 189 Graphic | Used by:194 | |
Symbol 190 Graphic | Used by:194 | |
Symbol 191 Graphic | Used by:194 | |
Symbol 192 Graphic | Used by:194 | |
Symbol 193 Graphic | Used by:194 | |
Symbol 194 MovieClip | Uses:162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 | Used by:201 |
Symbol 195 Graphic | Used by:196 | |
Symbol 196 MovieClip | Uses:195 | Used by:201 |
Symbol 197 Graphic | Used by:198 | |
Symbol 198 MovieClip | Uses:197 | Used by:201 |
Symbol 199 Graphic | Used by:200 | |
Symbol 200 MovieClip | Uses:199 | Used by:201 |
Symbol 201 MovieClip | Uses:117 126 31 128 161 194 196 198 200 143 132 | Used by:297 |
Symbol 202 Graphic | Used by:211 | |
Symbol 203 Graphic | Used by:211 | |
Symbol 204 Graphic | Used by:211 | |
Symbol 205 Graphic | Used by:211 | |
Symbol 206 Graphic | Used by:211 | |
Symbol 207 Graphic | Used by:211 | |
Symbol 208 Graphic | Used by:211 | |
Symbol 209 Graphic | Used by:211 | |
Symbol 210 Graphic | Used by:211 | |
Symbol 211 MovieClip | Uses:202 203 204 205 206 207 208 209 210 | Used by:212 296 |
Symbol 212 MovieClip | Uses:132 160 31 128 126 211 | Used by:296 |
Symbol 213 Graphic | Used by:226 | |
Symbol 214 Graphic | Used by:226 | |
Symbol 215 Graphic | Used by:226 | |
Symbol 216 Graphic | Used by:226 | |
Symbol 217 Graphic | Used by:226 | |
Symbol 218 Graphic | Used by:226 | |
Symbol 219 Graphic | Used by:226 | |
Symbol 220 Graphic | Used by:226 | |
Symbol 221 Graphic | Used by:226 | |
Symbol 222 Graphic | Used by:226 | |
Symbol 223 Graphic | Used by:226 | |
Symbol 224 Graphic | Used by:226 | |
Symbol 225 Graphic | Used by:226 | |
Symbol 226 MovieClip | Uses:213 214 215 216 217 218 219 220 221 222 223 224 225 | Used by:295 296 |
Symbol 227 Graphic | Used by:295 | |
Symbol 228 Graphic | Used by:295 | |
Symbol 229 Graphic | Used by:295 | |
Symbol 230 Graphic | Used by:239 | |
Symbol 231 Graphic | Used by:239 | |
Symbol 232 Graphic | Used by:239 | |
Symbol 233 Graphic | Used by:239 | |
Symbol 234 Graphic | Used by:239 | |
Symbol 235 Graphic | Used by:239 | |
Symbol 236 Graphic | Used by:239 | |
Symbol 237 Graphic | Used by:239 | |
Symbol 238 Graphic | Used by:239 | |
Symbol 239 MovieClip [ammog] | Uses:230 231 232 233 234 235 236 237 238 | Used by:295 346 371 393 |
Symbol 240 Graphic | Used by:295 | |
Symbol 241 Graphic | Used by:295 | |
Symbol 242 Graphic | Used by:295 | |
Symbol 243 Graphic | Used by:295 | |
Symbol 244 Graphic | Used by:295 | |
Symbol 245 Graphic | Used by:295 | |
Symbol 246 Graphic | Used by:295 | |
Symbol 247 Graphic | Used by:295 | |
Symbol 248 Graphic | Used by:295 | |
Symbol 249 Graphic | Used by:295 | |
Symbol 250 Graphic | Used by:295 | |
Symbol 251 Graphic | Used by:295 | |
Symbol 252 Graphic | Used by:295 | |
Symbol 253 Graphic | Used by:295 | |
Symbol 254 Graphic | Used by:295 | |
Symbol 255 Graphic | Used by:295 | |
Symbol 256 Graphic | Used by:295 | |
Symbol 257 Graphic | Used by:295 | |
Symbol 258 Graphic | Used by:295 | |
Symbol 259 Graphic | Used by:295 | |
Symbol 260 Graphic | Used by:295 | |
Symbol 261 Graphic | Used by:295 | |
Symbol 262 Graphic | Used by:295 | |
Symbol 263 Graphic | Used by:295 | |
Symbol 264 Graphic | Used by:295 | |
Symbol 265 Graphic | Used by:295 | |
Symbol 266 Graphic | Used by:295 | |
Symbol 267 Graphic | Used by:295 | |
Symbol 268 Graphic | Used by:295 | |
Symbol 269 Graphic | Used by:295 | |
Symbol 270 Graphic | Used by:295 | |
Symbol 271 Graphic | Used by:295 | |
Symbol 272 Graphic | Used by:295 | |
Symbol 273 Graphic | Used by:295 | |
Symbol 274 Graphic | Used by:295 | |
Symbol 275 Graphic | Used by:295 | |
Symbol 276 Graphic | Used by:295 | |
Symbol 277 Graphic | Used by:295 | |
Symbol 278 Graphic | Used by:295 | |
Symbol 279 Graphic | Used by:295 | |
Symbol 280 Graphic | Used by:295 | |
Symbol 281 Graphic | Used by:295 | |
Symbol 282 Graphic | Used by:295 | |
Symbol 283 Graphic | Used by:295 | |
Symbol 284 Graphic | Used by:295 | |
Symbol 285 Graphic | Used by:295 | |
Symbol 286 Graphic | Used by:295 | |
Symbol 287 Graphic | Used by:295 | |
Symbol 288 Graphic | Used by:295 | |
Symbol 289 Graphic | Used by:295 | |
Symbol 290 Graphic | Used by:295 | |
Symbol 291 Graphic | Used by:295 | |
Symbol 292 Graphic | Used by:295 | |
Symbol 293 Graphic | Used by:294 | |
Symbol 294 MovieClip | Uses:293 | Used by:295 |
Symbol 295 MovieClip | Uses:227 228 229 239 240 226 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 117 128 294 | Used by:296 |
Symbol 296 MovieClip | Uses:212 117 226 128 211 295 | Used by:297 |
Symbol 297 MovieClip [enemy] | Uses:95 97 99 32 201 161 296 | |
Symbol 298 Graphic | Used by:307 | |
Symbol 299 Graphic | Used by:307 | |
Symbol 300 Graphic | Used by:307 | |
Symbol 301 Graphic | Used by:307 | |
Symbol 302 Graphic | Used by:307 | |
Symbol 303 Graphic | Used by:307 | |
Symbol 304 Graphic | Used by:307 | |
Symbol 305 Graphic | Used by:307 | |
Symbol 306 Graphic | Used by:307 | |
Symbol 307 MovieClip [gib] | Uses:298 299 300 301 302 303 304 305 306 | Used by:679 716 723 758 |
Symbol 308 Graphic | Used by:312 | |
Symbol 309 Graphic | Used by:312 | |
Symbol 310 Graphic | Used by:312 | |
Symbol 311 Graphic | Used by:312 | |
Symbol 312 MovieClip | Uses:308 309 310 311 | Used by:323 |
Symbol 313 Graphic | Used by:317 | |
Symbol 314 Graphic | Used by:317 | |
Symbol 315 Graphic | Used by:317 | |
Symbol 316 Graphic | Used by:317 | |
Symbol 317 MovieClip | Uses:313 314 315 316 | Used by:323 |
Symbol 318 Graphic | Used by:322 | |
Symbol 319 Graphic | Used by:322 | |
Symbol 320 Graphic | Used by:322 | |
Symbol 321 Graphic | Used by:322 | |
Symbol 322 MovieClip | Uses:318 319 320 321 | Used by:323 |
Symbol 323 MovieClip | Uses:312 317 322 | Used by:324 |
Symbol 324 MovieClip [particle] | Uses:323 | Used by:325 |
Symbol 325 MovieClip [particle_explode] | Uses:324 | Used by:346 372 510 566 |
Symbol 326 Graphic | Used by:Timeline | |
Symbol 327 Graphic | Used by:328 | |
Symbol 328 MovieClip | Uses:327 | Used by:Timeline |
Symbol 329 Graphic | Used by:Timeline | |
Symbol 330 Graphic | Used by:402 | |
Symbol 331 Graphic | Used by:332 | |
Symbol 332 MovieClip | Uses:331 | Used by:402 |
Symbol 333 Graphic | Used by:334 | |
Symbol 334 MovieClip | Uses:333 | Used by:402 |
Symbol 335 Graphic | Used by:345 | |
Symbol 336 Graphic | Used by:345 | |
Symbol 337 Graphic | Used by:345 | |
Symbol 338 Graphic | Used by:345 | |
Symbol 339 Graphic | Used by:345 | |
Symbol 340 Graphic | Used by:345 | |
Symbol 341 Graphic | Used by:345 | |
Symbol 342 Graphic | Used by:345 | |
Symbol 343 Graphic | Used by:345 | |
Symbol 344 Graphic | Used by:345 | |
Symbol 345 MovieClip | Uses:335 336 337 338 339 340 341 342 343 344 | Used by:346 |
Symbol 346 MovieClip | Uses:345 325 239 | Used by:402 |
Symbol 347 Graphic | Used by:372 | |
Symbol 348 Graphic | Used by:372 | |
Symbol 349 Graphic | Used by:358 | |
Symbol 350 Graphic | Used by:358 | |
Symbol 351 Graphic | Used by:358 | |
Symbol 352 Graphic | Used by:358 | |
Symbol 353 Graphic | Used by:358 | |
Symbol 354 Graphic | Used by:358 | |
Symbol 355 Graphic | Used by:358 | |
Symbol 356 Graphic | Used by:358 | |
Symbol 357 Graphic | Used by:358 | |
Symbol 358 MovieClip | Uses:349 350 351 352 353 354 355 356 357 | Used by:372 |
Symbol 359 Graphic | Used by:372 | |
Symbol 360 Graphic | Used by:372 | |
Symbol 361 Graphic | Used by:370 | |
Symbol 362 Graphic | Used by:370 | |
Symbol 363 Graphic | Used by:370 | |
Symbol 364 Graphic | Used by:370 | |
Symbol 365 Graphic | Used by:370 | |
Symbol 366 Graphic | Used by:370 | |
Symbol 367 Graphic | Used by:370 | |
Symbol 368 Graphic | Used by:370 | |
Symbol 369 Graphic | Used by:370 | |
Symbol 370 MovieClip | Uses:361 362 363 364 365 366 367 368 369 | Used by:371 |
Symbol 371 MovieClip | Uses:370 97 239 | Used by:372 444 457 510 |
Symbol 372 MovieClip | Uses:347 38 348 325 31 358 359 128 360 371 | Used by:402 |
Symbol 373 Graphic | Used by:374 | |
Symbol 374 MovieClip | Uses:373 | Used by:401 572 |
Symbol 375 Graphic | Used by:377 | |
Symbol 376 Graphic | Used by:377 | |
Symbol 377 MovieClip | Uses:375 376 | Used by:401 572 |
Symbol 378 Graphic | Used by:401 | |
Symbol 379 Graphic | Used by:383 | |
Symbol 380 Graphic | Used by:383 | |
Symbol 381 Graphic | Used by:383 | |
Symbol 382 Graphic | Used by:383 | |
Symbol 383 MovieClip | Uses:379 380 381 382 | Used by:384 |
Symbol 384 MovieClip | Uses:383 | Used by:401 457 466 492 510 518 536 553 566 572 |
Symbol 385 Graphic | Used by:393 | |
Symbol 386 Graphic | Used by:393 | |
Symbol 387 Graphic | Used by:393 | |
Symbol 388 Graphic | Used by:393 | |
Symbol 389 Graphic | Used by:393 | |
Symbol 390 Graphic | Used by:393 | |
Symbol 391 Graphic | Used by:393 | |
Symbol 392 Graphic | Used by:393 | |
Symbol 393 MovieClip | Uses:385 239 386 387 388 389 390 391 392 | Used by:401 457 466 492 516 518 536 553 566 572 |
Symbol 394 Graphic | Used by:401 | |
Symbol 395 Graphic | Used by:401 | |
Symbol 396 Graphic | Used by:401 | |
Symbol 397 Graphic | Used by:398 | |
Symbol 398 MovieClip | Uses:397 | Used by:401 572 |
Symbol 399 Graphic | Used by:400 | |
Symbol 400 MovieClip | Uses:399 | Used by:401 572 |
Symbol 401 MovieClip | Uses:374 377 378 384 393 394 395 396 398 400 | Used by:402 Timeline |
Symbol 402 MovieClip | Uses:330 332 334 346 372 38 401 | Used by:Timeline |
Symbol 403 Graphic | Used by:406 | |
Symbol 404 Graphic | Used by:406 | |
Symbol 405 Graphic | Used by:406 | |
Symbol 406 MovieClip | Uses:403 404 405 | Used by:Timeline |
Symbol 407 Graphic | Used by:408 | |
Symbol 408 MovieClip | Uses:407 | Used by:Timeline |
Symbol 409 Font | Used by:410 415 458 459 573 | |
Symbol 410 Text | Uses:409 | Used by:Timeline |
Symbol 411 Graphic | Used by:412 | |
Symbol 412 MovieClip | Uses:411 | Used by:414 |
Symbol 413 Graphic | Used by:414 | |
Symbol 414 MovieClip | Uses:412 413 | Used by:Timeline |
Symbol 415 Text | Uses:409 | Used by:Timeline |
Symbol 416 Graphic | Used by:427 | |
Symbol 417 Graphic | Used by:427 | |
Symbol 418 Graphic | Used by:427 | |
Symbol 419 Graphic | Used by:427 | |
Symbol 420 Graphic | Used by:427 | |
Symbol 421 Graphic | Used by:427 | |
Symbol 422 Graphic | Used by:427 | |
Symbol 423 Graphic | Used by:427 | |
Symbol 424 Graphic | Used by:427 | |
Symbol 425 Graphic | Used by:427 | |
Symbol 426 Graphic | Used by:427 | |
Symbol 427 MovieClip | Uses:416 417 418 419 420 421 422 423 424 425 426 | Used by:Timeline |
Symbol 428 Graphic | Used by:431 | |
Symbol 429 Graphic | Used by:431 | |
Symbol 430 Graphic | Used by:431 | |
Symbol 431 MovieClip | Uses:428 429 430 | Used by:Timeline |
Symbol 432 Graphic | Used by:434 | |
Symbol 433 Graphic | Used by:434 | |
Symbol 434 MovieClip | Uses:432 433 | Used by:444 |
Symbol 435 Graphic | Used by:438 | |
Symbol 436 Graphic | Used by:438 | |
Symbol 437 Graphic | Used by:438 | |
Symbol 438 MovieClip | Uses:435 436 437 | Used by:444 |
Symbol 439 Graphic | Used by:443 | |
Symbol 440 Graphic | Used by:443 | |
Symbol 441 Graphic | Used by:443 | |
Symbol 442 Graphic | Used by:443 | |
Symbol 443 MovieClip | Uses:439 440 441 442 | Used by:444 |
Symbol 444 MovieClip | Uses:38 434 97 438 32 443 371 | Used by:Timeline |
Symbol 445 Graphic | Used by:450 | |
Symbol 446 Graphic | Used by:450 | |
Symbol 447 Graphic | Used by:450 | |
Symbol 448 Graphic | Used by:450 | |
Symbol 449 Graphic | Used by:450 | |
Symbol 450 MovieClip | Uses:445 446 447 448 449 | Used by:457 |
Symbol 451 Graphic | Used by:457 | |
Symbol 452 Graphic | Used by:457 | |
Symbol 453 Graphic | Used by:457 | |
Symbol 454 Graphic | Used by:457 | |
Symbol 455 Graphic | Used by:456 | |
Symbol 456 MovieClip | Uses:455 | Used by:457 |
Symbol 457 MovieClip | Uses:450 97 451 384 31 393 452 453 454 456 371 | Used by:Timeline |
Symbol 458 EditableText | Uses:409 | Used by:Timeline |
Symbol 459 EditableText | Uses:409 | Used by:Timeline |
Symbol 460 Graphic | Used by:567 | |
Symbol 461 Graphic | Used by:463 | |
Symbol 462 Graphic | Used by:463 | |
Symbol 463 MovieClip | Uses:461 462 | Used by:466 |
Symbol 464 Graphic | Used by:465 | |
Symbol 465 MovieClip | Uses:464 | Used by:466 |
Symbol 466 MovieClip | Uses:463 38 393 384 465 | Used by:567 |
Symbol 467 Graphic | Used by:471 | |
Symbol 468 Graphic | Used by:471 | |
Symbol 469 Graphic | Used by:471 | |
Symbol 470 Graphic | Used by:471 | |
Symbol 471 MovieClip | Uses:467 468 469 470 | Used by:492 |
Symbol 472 Graphic | Used by:473 | |
Symbol 473 MovieClip | Uses:472 | Used by:492 |
Symbol 474 Graphic | Used by:479 | |
Symbol 475 Graphic | Used by:479 | |
Symbol 476 Graphic | Used by:479 | |
Symbol 477 Graphic | Used by:479 | |
Symbol 478 Graphic | Used by:479 | |
Symbol 479 MovieClip | Uses:474 475 476 477 478 | Used by:492 |
Symbol 480 Graphic | Used by:492 | |
Symbol 481 Graphic | Used by:486 | |
Symbol 482 Graphic | Used by:486 | |
Symbol 483 Graphic | Used by:486 | |
Symbol 484 Graphic | Used by:486 | |
Symbol 485 Graphic | Used by:486 | |
Symbol 486 MovieClip | Uses:481 482 483 484 485 | Used by:492 |
Symbol 487 Graphic | Used by:488 | |
Symbol 488 MovieClip | Uses:487 | Used by:492 |
Symbol 489 Graphic | Used by:490 | |
Symbol 490 MovieClip | Uses:489 | Used by:492 |
Symbol 491 Graphic | Used by:492 | |
Symbol 492 MovieClip | Uses:471 38 473 479 480 384 393 486 488 490 491 | Used by:567 |
Symbol 493 Graphic | Used by:495 | |
Symbol 494 Graphic | Used by:495 | |
Symbol 495 MovieClip | Uses:493 494 | Used by:510 |
Symbol 496 Graphic | Used by:510 | |
Symbol 497 Graphic | Used by:510 | |
Symbol 498 Graphic | Used by:510 | |
Symbol 499 Graphic | Used by:510 | |
Symbol 500 Graphic | Used by:509 | |
Symbol 501 Graphic | Used by:509 | |
Symbol 502 Graphic | Used by:509 | |
Symbol 503 Graphic | Used by:509 | |
Symbol 504 Graphic | Used by:509 | |
Symbol 505 Graphic | Used by:509 | |
Symbol 506 Graphic | Used by:509 | |
Symbol 507 Graphic | Used by:509 | |
Symbol 508 Graphic | Used by:509 | |
Symbol 509 MovieClip | Uses:500 501 502 503 504 505 506 507 508 | Used by:510 |
Symbol 510 MovieClip | Uses:495 496 38 497 384 126 32 498 128 499 371 325 509 | Used by:567 |
Symbol 511 Graphic | Used by:513 | |
Symbol 512 Graphic | Used by:513 | |
Symbol 513 MovieClip | Uses:511 512 | Used by:516 |
Symbol 514 Graphic | Used by:515 | |
Symbol 515 MovieClip | Uses:514 | Used by:516 |
Symbol 516 MovieClip | Uses:513 38 393 515 | Used by:567 |
Symbol 517 Graphic | Used by:518 | |
Symbol 518 MovieClip | Uses:517 38 384 393 | Used by:567 |
Symbol 519 Graphic | Used by:536 | |
Symbol 520 Graphic | Used by:522 | |
Symbol 521 Graphic | Used by:522 | |
Symbol 522 MovieClip | Uses:520 521 | Used by:536 |
Symbol 523 Graphic | Used by:536 | |
Symbol 524 Graphic | Used by:525 | |
Symbol 525 MovieClip | Uses:524 | Used by:536 |
Symbol 526 Graphic | Used by:536 | |
Symbol 527 Graphic | Used by:536 | |
Symbol 528 Graphic | Used by:536 | |
Symbol 529 Graphic | Used by:534 | |
Symbol 530 Graphic | Used by:534 | |
Symbol 531 Graphic | Used by:534 | |
Symbol 532 Graphic | Used by:534 | |
Symbol 533 Graphic | Used by:534 | |
Symbol 534 MovieClip | Uses:529 530 531 532 533 | Used by:536 |
Symbol 535 Graphic | Used by:536 | |
Symbol 536 MovieClip | Uses:519 522 38 523 525 526 527 528 393 384 534 535 | Used by:567 |
Symbol 537 Graphic | Used by:540 | |
Symbol 538 Graphic | Used by:540 | |
Symbol 539 Graphic | Used by:540 | |
Symbol 540 MovieClip | Uses:537 538 539 | Used by:548 |
Symbol 541 Graphic | Used by:547 | |
Symbol 542 Graphic | Used by:547 | |
Symbol 543 Graphic | Used by:547 | |
Symbol 544 Graphic | Used by:547 | |
Symbol 545 Graphic | Used by:547 | |
Symbol 546 Graphic | Used by:547 | |
Symbol 547 MovieClip | Uses:541 542 543 544 545 546 | Used by:548 |
Symbol 548 MovieClip | Uses:540 38 547 | Used by:567 |
Symbol 549 Graphic | Used by:552 | |
Symbol 550 Graphic | Used by:552 | |
Symbol 551 Graphic | Used by:552 | |
Symbol 552 MovieClip | Uses:549 550 551 | Used by:553 |
Symbol 553 MovieClip | Uses:552 38 384 393 | Used by:567 |
Symbol 554 Graphic | Used by:558 | |
Symbol 555 Graphic | Used by:558 | |
Symbol 556 Graphic | Used by:558 | |
Symbol 557 Graphic | Used by:558 | |
Symbol 558 MovieClip | Uses:554 555 556 557 | Used by:566 |
Symbol 559 Graphic | Used by:560 | |
Symbol 560 MovieClip | Uses:559 | Used by:566 |
Symbol 561 Graphic | Used by:566 | |
Symbol 562 Graphic | Used by:565 | |
Symbol 563 Graphic | Used by:565 | |
Symbol 564 Graphic | Used by:565 | |
Symbol 565 MovieClip | Uses:562 563 564 | Used by:566 |
Symbol 566 MovieClip | Uses:558 38 560 561 393 384 325 565 | Used by:567 |
Symbol 567 MovieClip | Uses:460 466 492 510 516 518 536 548 553 566 97 | Used by:Timeline |
Symbol 568 Graphic | Used by:572 | |
Symbol 569 Graphic | Used by:572 | |
Symbol 570 Graphic | Used by:572 | |
Symbol 571 Graphic | Used by:572 | |
Symbol 572 MovieClip | Uses:374 97 377 568 384 393 569 570 571 398 400 | Used by:Timeline |
Symbol 573 EditableText | Uses:409 | Used by:Timeline |
Symbol 574 Graphic | Used by:Timeline | |
Symbol 575 Graphic | Used by:578 | |
Symbol 576 Graphic | Used by:577 | |
Symbol 577 MovieClip | Uses:576 | Used by:578 |
Symbol 578 MovieClip | Uses:575 577 | Used by:581 |
Symbol 579 Graphic | Used by:580 | |
Symbol 580 MovieClip | Uses:579 | Used by:581 |
Symbol 581 MovieClip | Uses:578 580 | Used by:Timeline |
Symbol 582 Graphic | Used by:Timeline | |
Symbol 583 Graphic | Used by:589 | |
Symbol 584 Graphic | Used by:588 | |
Symbol 585 Graphic | Used by:588 | |
Symbol 586 Graphic | Used by:588 | |
Symbol 587 Graphic | Used by:588 | |
Symbol 588 MovieClip | Uses:584 585 586 587 | Used by:589 |
Symbol 589 MovieClip | Uses:583 588 | Used by:628 |
Symbol 590 Graphic | Used by:594 | |
Symbol 591 Graphic | Used by:594 | |
Symbol 592 Graphic | Used by:594 | |
Symbol 593 Graphic | Used by:594 | |
Symbol 594 MovieClip | Uses:590 591 592 593 | Used by:622 |
Symbol 595 Graphic | Used by:597 | |
Symbol 596 Graphic | Used by:597 | |
Symbol 597 MovieClip | Uses:595 596 | Used by:622 |
Symbol 598 Graphic | Used by:608 | |
Symbol 599 Graphic | Used by:608 | |
Symbol 600 Graphic | Used by:608 | |
Symbol 601 Graphic | Used by:608 | |
Symbol 602 Graphic | Used by:608 | |
Symbol 603 Graphic | Used by:608 | |
Symbol 604 Graphic | Used by:608 | |
Symbol 605 Graphic | Used by:608 | |
Symbol 606 Graphic | Used by:608 | |
Symbol 607 Graphic | Used by:608 | |
Symbol 608 MovieClip | Uses:598 599 600 601 602 603 604 605 606 607 | Used by:622 |
Symbol 609 Graphic | Used by:613 | |
Symbol 610 Graphic | Used by:613 | |
Symbol 611 Graphic | Used by:613 | |
Symbol 612 Graphic | Used by:613 | |
Symbol 613 MovieClip | Uses:609 610 611 612 | Used by:614 622 |
Symbol 614 MovieClip | Uses:613 | Used by:622 628 |
Symbol 615 Graphic | Used by:619 | |
Symbol 616 Graphic | Used by:619 | |
Symbol 617 Graphic | Used by:619 | |
Symbol 618 Graphic | Used by:619 | |
Symbol 619 MovieClip | Uses:615 616 617 618 | Used by:622 |
Symbol 620 Graphic | Used by:621 | |
Symbol 621 MovieClip [tooth] | Uses:620 | Used by:622 |
Symbol 622 MovieClip | Uses:594 38 597 126 608 614 619 613 621 | Used by:628 |
Symbol 623 Graphic | Used by:627 | |
Symbol 624 Graphic | Used by:625 | |
Symbol 625 MovieClip | Uses:624 | Used by:627 |
Symbol 626 Graphic | Used by:627 | |
Symbol 627 MovieClip | Uses:623 625 626 | Used by:628 |
Symbol 628 MovieClip | Uses:589 622 38 97 627 126 128 614 | Used by:Timeline |
Symbol 629 Graphic | Used by:Timeline | |
Symbol 630 Graphic | Used by:767 | |
Symbol 631 Graphic | Used by:679 | |
Symbol 632 Graphic | Used by:633 | |
Symbol 633 MovieClip | Uses:632 | Used by:679 |
Symbol 634 Graphic | Used by:635 | |
Symbol 635 MovieClip | Uses:634 | Used by:679 |
Symbol 636 Graphic | Used by:679 | |
Symbol 637 Graphic | Used by:679 | |
Symbol 638 Graphic | Used by:639 | |
Symbol 639 MovieClip | Uses:638 | Used by:679 |
Symbol 640 Graphic | Used by:679 | |
Symbol 641 Graphic | Used by:679 | |
Symbol 642 Graphic | Used by:679 | |
Symbol 643 Graphic | Used by:679 | |
Symbol 644 Graphic | Used by:679 | |
Symbol 645 Graphic | Used by:679 | |
Symbol 646 Graphic | Used by:679 | |
Symbol 647 Graphic | Used by:679 | |
Symbol 648 Graphic | Used by:679 | |
Symbol 649 Graphic | Used by:679 | |
Symbol 650 Graphic | Used by:679 | |
Symbol 651 Graphic | Used by:679 | |
Symbol 652 Graphic | Used by:679 | |
Symbol 653 Graphic | Used by:679 | |
Symbol 654 Graphic | Used by:679 | |
Symbol 655 Graphic | Used by:679 | |
Symbol 656 Graphic | Used by:679 | |
Symbol 657 Graphic | Used by:679 | |
Symbol 658 Graphic | Used by:679 | |
Symbol 659 Graphic | Used by:679 | |
Symbol 660 Graphic | Used by:679 | |
Symbol 661 Graphic | Used by:679 | |
Symbol 662 Graphic | Used by:679 | |
Symbol 663 Graphic | Used by:679 | |
Symbol 664 Graphic | Used by:679 | |
Symbol 665 Graphic | Used by:679 | |
Symbol 666 Graphic | Used by:679 | |
Symbol 667 Graphic | Used by:679 | |
Symbol 668 Graphic | Used by:679 | |
Symbol 669 Graphic | Used by:670 | |
Symbol 670 MovieClip | Uses:669 | Used by:679 758 |
Symbol 671 Graphic | Used by:672 | |
Symbol 672 MovieClip | Uses:671 | Used by:679 758 |
Symbol 673 Graphic | Used by:674 | |
Symbol 674 MovieClip | Uses:673 | Used by:679 758 |
Symbol 675 Graphic | Used by:676 | |
Symbol 676 MovieClip | Uses:675 | Used by:679 758 |
Symbol 677 Graphic | Used by:678 | |
Symbol 678 MovieClip | Uses:677 | Used by:679 758 |
Symbol 679 MovieClip | Uses:631 633 635 636 38 637 307 639 640 641 642 643 644 645 646 126 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 670 672 674 676 678 | Used by:767 |
Symbol 680 Graphic | Used by:700 | |
Symbol 681 Graphic | Used by:700 | |
Symbol 682 Graphic | Used by:700 | |
Symbol 683 Graphic | Used by:700 | |
Symbol 684 Graphic | Used by:700 | |
Symbol 685 Graphic | Used by:700 | |
Symbol 686 Graphic | Used by:700 | |
Symbol 687 Graphic | Used by:700 | |
Symbol 688 Graphic | Used by:700 | |
Symbol 689 Graphic | Used by:700 | |
Symbol 690 Graphic | Used by:700 | |
Symbol 691 Graphic | Used by:700 | |
Symbol 692 Graphic | Used by:700 | |
Symbol 693 Graphic | Used by:700 | |
Symbol 694 Graphic | Used by:700 | |
Symbol 695 Graphic | Used by:700 | |
Symbol 696 Graphic | Used by:700 | |
Symbol 697 Graphic | Used by:700 | |
Symbol 698 Graphic | Used by:700 | |
Symbol 699 Graphic | Used by:700 | |
Symbol 700 MovieClip | Uses:680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 | Used by:767 |
Symbol 701 Graphic | Used by:709 | |
Symbol 702 Graphic | Used by:709 | |
Symbol 703 Graphic | Used by:709 | |
Symbol 704 Graphic | Used by:709 | |
Symbol 705 Graphic | Used by:709 | |
Symbol 706 Graphic | Used by:709 | |
Symbol 707 Graphic | Used by:709 | |
Symbol 708 Graphic | Used by:709 | |
Symbol 709 MovieClip | Uses:701 702 703 704 705 706 707 708 | Used by:710 |
Symbol 710 MovieClip | Uses:709 | Used by:767 |
Symbol 711 Graphic | Used by:716 | |
Symbol 712 Graphic | Used by:716 | |
Symbol 713 Graphic | Used by:716 | |
Symbol 714 Graphic | Used by:716 | |
Symbol 715 Graphic | Used by:716 | |
Symbol 716 MovieClip | Uses:711 38 712 713 714 126 307 715 | Used by:724 762 765 |
Symbol 717 Graphic | Used by:723 | |
Symbol 718 Graphic | Used by:723 | |
Symbol 719 Graphic | Used by:723 | |
Symbol 720 Graphic | Used by:723 | |
Symbol 721 Graphic | Used by:723 | |
Symbol 722 Graphic | Used by:723 | |
Symbol 723 MovieClip | Uses:717 38 718 719 720 721 126 307 722 | Used by:724 762 765 |
Symbol 724 MovieClip | Uses:716 723 | Used by:725 |
Symbol 725 MovieClip | Uses:724 | Used by:767 |
Symbol 726 Graphic | Used by:735 | |
Symbol 727 Graphic | Used by:735 | |
Symbol 728 Graphic | Used by:735 | |
Symbol 729 Graphic | Used by:735 | |
Symbol 730 Graphic | Used by:735 | |
Symbol 731 Graphic | Used by:735 | |
Symbol 732 Graphic | Used by:735 | |
Symbol 733 Graphic | Used by:735 | |
Symbol 734 Graphic | Used by:735 | |
Symbol 735 MovieClip | Uses:726 727 728 729 730 731 732 733 734 | Used by:758 |
Symbol 736 Graphic | Used by:737 | |
Symbol 737 MovieClip | Uses:736 | Used by:758 |
Symbol 738 Graphic | Used by:758 | |
Symbol 739 Graphic | Used by:758 | |
Symbol 740 Graphic | Used by:758 | |
Symbol 741 Graphic | Used by:758 | |
Symbol 742 Graphic | Used by:758 | |
Symbol 743 Graphic | Used by:758 | |
Symbol 744 Graphic | Used by:758 | |
Symbol 745 Graphic | Used by:758 | |
Symbol 746 Graphic | Used by:758 | |
Symbol 747 Graphic | Used by:758 | |
Symbol 748 Graphic | Used by:758 | |
Symbol 749 Graphic | Used by:758 | |
Symbol 750 Graphic | Used by:758 | |
Symbol 751 Graphic | Used by:758 | |
Symbol 752 Graphic | Used by:758 | |
Symbol 753 Graphic | Used by:758 | |
Symbol 754 Graphic | Used by:758 | |
Symbol 755 Graphic | Used by:758 | |
Symbol 756 Graphic | Used by:758 | |
Symbol 757 Graphic | Used by:758 | |
Symbol 758 MovieClip | Uses:735 38 737 738 307 126 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 670 672 674 676 678 | Used by:759 |
Symbol 759 MovieClip | Uses:758 | Used by:760 |
Symbol 760 MovieClip | Uses:759 38 | Used by:767 |
Symbol 761 Graphic | Used by:767 | |
Symbol 762 MovieClip | Uses:723 716 | Used by:763 |
Symbol 763 MovieClip | Uses:762 | Used by:767 |
Symbol 764 Graphic | Used by:767 | |
Symbol 765 MovieClip | Uses:716 723 | Used by:766 |
Symbol 766 MovieClip | Uses:765 | Used by:767 |
Symbol 767 MovieClip | Uses:630 679 700 710 725 760 97 761 763 764 766 | Used by:Timeline |
Instance Names
"bg" | Frame 1 | Symbol 328 MovieClip |
"ground" | Frame 1 | Symbol 402 MovieClip |
"char" | Frame 1 | Symbol 406 MovieClip |
"lifebar" | Frame 1 | Symbol 408 MovieClip |
"hero" | Frame 1 | Symbol 414 MovieClip |
"crate" | Frame 1 | Symbol 444 MovieClip |
"crate2" | Frame 1 | Symbol 444 MovieClip |
"crate4" | Frame 1 | Symbol 444 MovieClip |
"crate5" | Frame 1 | Symbol 444 MovieClip |
"crate6" | Frame 1 | Symbol 444 MovieClip |
"crate7" | Frame 1 | Symbol 444 MovieClip |
"crate8" | Frame 1 | Symbol 444 MovieClip |
"crate9" | Frame 1 | Symbol 444 MovieClip |
"crate10" | Frame 1 | Symbol 444 MovieClip |
"crate12" | Frame 1 | Symbol 444 MovieClip |
"crate11" | Frame 1 | Symbol 444 MovieClip |
"buzz4" | Frame 1 | Symbol 457 MovieClip |
"buzz3" | Frame 1 | Symbol 457 MovieClip |
"buzz2" | Frame 1 | Symbol 457 MovieClip |
"buzz7" | Frame 1 | Symbol 457 MovieClip |
"buzz8" | Frame 1 | Symbol 457 MovieClip |
"buzz5" | Frame 1 | Symbol 457 MovieClip |
"buzz6" | Frame 1 | Symbol 457 MovieClip |
"wall2" | Frame 1 | Symbol 401 MovieClip |
"wall3" | Frame 1 | Symbol 401 MovieClip |
"crate3" | Frame 1 | Symbol 444 MovieClip |
"tank1" | Frame 1 | Symbol 567 MovieClip |
"tank2" | Frame 1 | Symbol 567 MovieClip |
"wall4" | Frame 1 | Symbol 401 MovieClip |
"wall5" | Frame 1 | Symbol 401 MovieClip |
"buzz9" | Frame 1 | Symbol 457 MovieClip |
"buzz10" | Frame 1 | Symbol 457 MovieClip |
"buzz11" | Frame 1 | Symbol 457 MovieClip |
"buzz12" | Frame 1 | Symbol 457 MovieClip |
"buzz13" | Frame 1 | Symbol 457 MovieClip |
"tank3" | Frame 1 | Symbol 567 MovieClip |
"tank4" | Frame 1 | Symbol 567 MovieClip |
"ceiling1" | Frame 1 | Symbol 572 MovieClip |
"xpbar" | Frame 1 | Symbol 408 MovieClip |
"blister1" | Frame 1 | Symbol 628 MovieClip |
"blister2" | Frame 1 | Symbol 628 MovieClip |
"blister4" | Frame 1 | Symbol 628 MovieClip |
"blister3" | Frame 1 | Symbol 628 MovieClip |
"blister5" | Frame 1 | Symbol 628 MovieClip |
"blister8" | Frame 1 | Symbol 628 MovieClip |
"blister6" | Frame 1 | Symbol 628 MovieClip |
"blister7" | Frame 1 | Symbol 628 MovieClip |
"ench1" | Frame 1 | Symbol 767 MovieClip |
"head" | Symbol 16 MovieClip [sprout] Frame 1 | Symbol 9 MovieClip |
"shot" | Symbol 33 MovieClip Frame 1 | Symbol 19 MovieClip |
"rose" | Symbol 41 MovieClip Frame 1 | Symbol 38 MovieClip |
"bullet2" | Symbol 45 MovieClip [bullet1] Frame 2 | Symbol 41 MovieClip |
"bullet2" | Symbol 45 MovieClip [bullet1] Frame 2 | Symbol 41 MovieClip |
"head" | Symbol 95 MovieClip [sprout1] Frame 1 | Symbol 62 MovieClip |
"head" | Symbol 156 MovieClip Frame 1 | Symbol 151 MovieClip |
"sprout_main" | Symbol 297 MovieClip [enemy] Frame 1 | Symbol 95 MovieClip [sprout1] |
"box_alive" | Symbol 297 MovieClip [enemy] Frame 1 | Symbol 97 MovieClip [box_alive] |
"sprout_main" | Symbol 297 MovieClip [enemy] Frame 3 | Symbol 95 MovieClip [sprout1] |
"box_alive" | Symbol 297 MovieClip [enemy] Frame 3 | Symbol 97 MovieClip [box_alive] |
"shard" | Symbol 325 MovieClip [particle_explode] Frame 1 | Symbol 324 MovieClip [particle] |
"gem" | Symbol 346 MovieClip Frame 1 | Symbol 345 MovieClip |
"crys_alive" | Symbol 372 MovieClip Frame 1 | Symbol 38 MovieClip |
"coin_grab" | Symbol 372 MovieClip Frame 120 | Symbol 371 MovieClip |
"wall_alive" | Symbol 401 MovieClip Frame 1 | Symbol 374 MovieClip |
"flash" | Symbol 401 MovieClip Frame 2 | Symbol 377 MovieClip |
"flash2" | Symbol 401 MovieClip Frame 3 | Symbol 377 MovieClip |
"flash3" | Symbol 401 MovieClip Frame 4 | Symbol 377 MovieClip |
"flash4" | Symbol 401 MovieClip Frame 5 | Symbol 377 MovieClip |
"flash5" | Symbol 401 MovieClip Frame 6 | Symbol 377 MovieClip |
"flash6" | Symbol 401 MovieClip Frame 7 | Symbol 377 MovieClip |
"realground" | Symbol 402 MovieClip Frame 1 | Symbol 332 MovieClip |
"crys1" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys3" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys2" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys4" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys6" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"stubble" | Symbol 402 MovieClip Frame 1 | Symbol 38 MovieClip |
"stubble2" | Symbol 402 MovieClip Frame 1 | Symbol 38 MovieClip |
"crys5" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys7" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys8" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys9" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys10" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys11" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys12" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys14" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys13" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys15" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys16" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys18" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"crys17" | Symbol 402 MovieClip Frame 1 | Symbol 372 MovieClip |
"wall1" | Symbol 402 MovieClip Frame 1 | Symbol 401 MovieClip |
"head" | Symbol 414 MovieClip Frame 1 | Symbol 412 MovieClip |
"crate_alive" | Symbol 444 MovieClip Frame 1 | Symbol 38 MovieClip |
"rota_box" | Symbol 444 MovieClip Frame 1 | Symbol 434 MovieClip |
"rota_box" | Symbol 444 MovieClip Frame 2 | Symbol 434 MovieClip |
"buzz_alive" | Symbol 457 MovieClip Frame 1 | Symbol 450 MovieClip |
"4" | Symbol 457 MovieClip Frame 5 | Symbol 393 MovieClip |
"bt" | Symbol 466 MovieClip Frame 1 | Symbol 463 MovieClip |
"node" | Symbol 466 MovieClip Frame 1 | Symbol 38 MovieClip |
"node" | Symbol 492 MovieClip Frame 1 | Symbol 38 MovieClip |
"1" | Symbol 492 MovieClip Frame 2 | Symbol 473 MovieClip |
"2" | Symbol 492 MovieClip Frame 3 | Symbol 473 MovieClip |
"3" | Symbol 492 MovieClip Frame 4 | Symbol 473 MovieClip |
"4" | Symbol 492 MovieClip Frame 5 | Symbol 473 MovieClip |
"5" | Symbol 492 MovieClip Frame 6 | Symbol 473 MovieClip |
"6" | Symbol 492 MovieClip Frame 7 | Symbol 473 MovieClip |
"7" | Symbol 492 MovieClip Frame 8 | Symbol 473 MovieClip |
"8" | Symbol 492 MovieClip Frame 9 | Symbol 473 MovieClip |
"9" | Symbol 492 MovieClip Frame 10 | Symbol 473 MovieClip |
"10" | Symbol 492 MovieClip Frame 11 | Symbol 473 MovieClip |
"1" | Symbol 492 MovieClip Frame 12 | Symbol 393 MovieClip |
"3" | Symbol 492 MovieClip Frame 13 | Symbol 393 MovieClip |
"4" | Symbol 492 MovieClip Frame 13 | Symbol 393 MovieClip |
"2" | Symbol 492 MovieClip Frame 13 | Symbol 393 MovieClip |
"6" | Symbol 492 MovieClip Frame 14 | Symbol 393 MovieClip |
"7" | Symbol 492 MovieClip Frame 14 | Symbol 393 MovieClip |
"node" | Symbol 510 MovieClip Frame 1 | Symbol 38 MovieClip |
"t" | Symbol 516 MovieClip Frame 1 | Symbol 513 MovieClip |
"node" | Symbol 516 MovieClip Frame 1 | Symbol 38 MovieClip |
"node" | Symbol 518 MovieClip Frame 1 | Symbol 38 MovieClip |
"3" | Symbol 518 MovieClip Frame 2 | Symbol 393 MovieClip |
"node" | Symbol 536 MovieClip Frame 1 | Symbol 38 MovieClip |
"3" | Symbol 536 MovieClip Frame 4 | Symbol 525 MovieClip |
"4" | Symbol 536 MovieClip Frame 5 | Symbol 525 MovieClip |
"5" | Symbol 536 MovieClip Frame 6 | Symbol 525 MovieClip |
"2" | Symbol 536 MovieClip Frame 7 | Symbol 384 MovieClip |
"2" | Symbol 536 MovieClip Frame 7 | Symbol 384 MovieClip |
"3" | Symbol 536 MovieClip Frame 8 | Symbol 393 MovieClip |
"5" | Symbol 536 MovieClip Frame 8 | Symbol 384 MovieClip |
"8" | Symbol 536 MovieClip Frame 8 | Symbol 384 MovieClip |
"7" | Symbol 536 MovieClip Frame 8 | Symbol 384 MovieClip |
"33" | Symbol 536 MovieClip Frame 8 | Symbol 384 MovieClip |
"node" | Symbol 548 MovieClip Frame 1 | Symbol 38 MovieClip |
"node" | Symbol 553 MovieClip Frame 1 | Symbol 38 MovieClip |
"3" | Symbol 553 MovieClip Frame 2 | Symbol 393 MovieClip |
"node" | Symbol 566 MovieClip Frame 1 | Symbol 38 MovieClip |
"2" | Symbol 566 MovieClip Frame 2 | Symbol 560 MovieClip |
"3" | Symbol 566 MovieClip Frame 3 | Symbol 560 MovieClip |
"4" | Symbol 566 MovieClip Frame 4 | Symbol 560 MovieClip |
"5" | Symbol 566 MovieClip Frame 6 | Symbol 560 MovieClip |
"6" | Symbol 566 MovieClip Frame 7 | Symbol 560 MovieClip |
"7" | Symbol 566 MovieClip Frame 8 | Symbol 560 MovieClip |
"8" | Symbol 566 MovieClip Frame 9 | Symbol 560 MovieClip |
"g5" | Symbol 567 MovieClip Frame 1 | Symbol 466 MovieClip |
"g9" | Symbol 567 MovieClip Frame 1 | Symbol 466 MovieClip |
"g2" | Symbol 567 MovieClip Frame 1 | Symbol 492 MovieClip |
"g12" | Symbol 567 MovieClip Frame 1 | Symbol 510 MovieClip |
"g6" | Symbol 567 MovieClip Frame 1 | Symbol 516 MovieClip |
"g7" | Symbol 567 MovieClip Frame 1 | Symbol 516 MovieClip |
"g8" | Symbol 567 MovieClip Frame 1 | Symbol 516 MovieClip |
"g1" | Symbol 567 MovieClip Frame 1 | Symbol 518 MovieClip |
"g4" | Symbol 567 MovieClip Frame 1 | Symbol 536 MovieClip |
"g10" | Symbol 567 MovieClip Frame 1 | Symbol 548 MovieClip |
"g11" | Symbol 567 MovieClip Frame 1 | Symbol 553 MovieClip |
"g3" | Symbol 567 MovieClip Frame 1 | Symbol 566 MovieClip |
"wall_alive" | Symbol 572 MovieClip Frame 1 | Symbol 374 MovieClip |
"flash" | Symbol 572 MovieClip Frame 2 | Symbol 377 MovieClip |
"flash2" | Symbol 572 MovieClip Frame 3 | Symbol 377 MovieClip |
"flash3" | Symbol 572 MovieClip Frame 4 | Symbol 377 MovieClip |
"flash4" | Symbol 572 MovieClip Frame 5 | Symbol 377 MovieClip |
"node" | Symbol 622 MovieClip Frame 1 | Symbol 38 MovieClip |
"2" | Symbol 622 MovieClip Frame 2 | Symbol 597 MovieClip |
"3" | Symbol 622 MovieClip Frame 3 | Symbol 597 MovieClip |
"4" | Symbol 622 MovieClip Frame 4 | Symbol 597 MovieClip |
"5" | Symbol 622 MovieClip Frame 4 | Symbol 126 MovieClip |
"5" | Symbol 622 MovieClip Frame 5 | Symbol 597 MovieClip |
"6" | Symbol 622 MovieClip Frame 5 | Symbol 126 MovieClip |
"3" | Symbol 622 MovieClip Frame 6 | Symbol 126 MovieClip |
"4" | Symbol 622 MovieClip Frame 7 | Symbol 126 MovieClip |
"7" | Symbol 622 MovieClip Frame 7 | Symbol 126 MovieClip |
"3" | Symbol 622 MovieClip Frame 8 | Symbol 126 MovieClip |
"2" | Symbol 622 MovieClip Frame 8 | Symbol 126 MovieClip |
"lips" | Symbol 628 MovieClip Frame 1 | Symbol 622 MovieClip |
"node2" | Symbol 628 MovieClip Frame 1 | Symbol 38 MovieClip |
"top1" | Symbol 679 MovieClip Frame 1 | Symbol 633 MovieClip |
"bodyshot" | Symbol 679 MovieClip Frame 1 | Symbol 38 MovieClip |
"11" | Symbol 679 MovieClip Frame 2 | Symbol 307 MovieClip [gib] |
"11" | Symbol 679 MovieClip Frame 2 | Symbol 307 MovieClip [gib] |
"1" | Symbol 679 MovieClip Frame 2 | Symbol 639 MovieClip |
"top1" | Symbol 679 MovieClip Frame 3 | Symbol 633 MovieClip |
"2" | Symbol 679 MovieClip Frame 3 | Symbol 639 MovieClip |
"3" | Symbol 679 MovieClip Frame 4 | Symbol 639 MovieClip |
"4" | Symbol 679 MovieClip Frame 5 | Symbol 639 MovieClip |
"5" | Symbol 679 MovieClip Frame 6 | Symbol 639 MovieClip |
"6" | Symbol 679 MovieClip Frame 7 | Symbol 639 MovieClip |
"7" | Symbol 679 MovieClip Frame 8 | Symbol 639 MovieClip |
"9" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"5" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"7" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"10" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"12" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"3" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"6" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"11" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"2" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"8" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"4" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"1" | Symbol 679 MovieClip Frame 9 | Symbol 307 MovieClip [gib] |
"9" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"5" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"7" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"10" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"12" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"3" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"6" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"11" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"2" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"8" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"4" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"1" | Symbol 679 MovieClip Frame 25 | Symbol 307 MovieClip [gib] |
"9" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"5" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"7" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"10" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"12" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"3" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"6" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"11" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"2" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"8" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"4" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"1" | Symbol 679 MovieClip Frame 32 | Symbol 307 MovieClip [gib] |
"legbox" | Symbol 716 MovieClip Frame 1 | Symbol 38 MovieClip |
"6" | Symbol 716 MovieClip Frame 4 | Symbol 307 MovieClip [gib] |
"6" | Symbol 716 MovieClip Frame 4 | Symbol 307 MovieClip [gib] |
"legbox" | Symbol 723 MovieClip Frame 1 | Symbol 38 MovieClip |
"6" | Symbol 723 MovieClip Frame 5 | Symbol 307 MovieClip [gib] |
"6" | Symbol 723 MovieClip Frame 5 | Symbol 307 MovieClip [gib] |
"6" | Symbol 723 MovieClip Frame 7 | Symbol 307 MovieClip [gib] |
"6" | Symbol 723 MovieClip Frame 7 | Symbol 307 MovieClip [gib] |
"6" | Symbol 723 MovieClip Frame 7 | Symbol 307 MovieClip [gib] |
"6" | Symbol 723 MovieClip Frame 7 | Symbol 307 MovieClip [gib] |
"6" | Symbol 723 MovieClip Frame 7 | Symbol 307 MovieClip [gib] |
"6" | Symbol 723 MovieClip Frame 7 | Symbol 307 MovieClip [gib] |
"part1" | Symbol 724 MovieClip Frame 1 | Symbol 716 MovieClip |
"part2" | Symbol 724 MovieClip Frame 1 | Symbol 723 MovieClip |
"part3" | Symbol 724 MovieClip Frame 1 | Symbol 716 MovieClip |
"part4" | Symbol 724 MovieClip Frame 1 | Symbol 723 MovieClip |
"legs1" | Symbol 725 MovieClip Frame 1 | Symbol 724 MovieClip |
"headshot" | Symbol 758 MovieClip Frame 1 | Symbol 38 MovieClip |
"1" | Symbol 758 MovieClip Frame 2 | Symbol 737 MovieClip |
"2" | Symbol 758 MovieClip Frame 3 | Symbol 737 MovieClip |
"3" | Symbol 758 MovieClip Frame 4 | Symbol 737 MovieClip |
"4" | Symbol 758 MovieClip Frame 5 | Symbol 737 MovieClip |
"5" | Symbol 758 MovieClip Frame 6 | Symbol 737 MovieClip |
"6" | Symbol 758 MovieClip Frame 7 | Symbol 737 MovieClip |
"7" | Symbol 758 MovieClip Frame 8 | Symbol 737 MovieClip |
"8" | Symbol 758 MovieClip Frame 9 | Symbol 737 MovieClip |
"9" | Symbol 758 MovieClip Frame 10 | Symbol 737 MovieClip |
"9" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"5" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"7" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"10" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"12" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"3" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"6" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"11" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"2" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"8" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"4" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"1" | Symbol 758 MovieClip Frame 11 | Symbol 307 MovieClip [gib] |
"9" | Symbol 758 MovieClip Frame 12 | Symbol 307 MovieClip [gib] |
"10" | Symbol 758 MovieClip Frame 12 | Symbol 307 MovieClip [gib] |
"11" | Symbol 758 MovieClip Frame 12 | Symbol 307 MovieClip [gib] |
"9" | Symbol 758 MovieClip Frame 12 | Symbol 307 MovieClip [gib] |
"10" | Symbol 758 MovieClip Frame 12 | Symbol 307 MovieClip [gib] |
"11" | Symbol 758 MovieClip Frame 12 | Symbol 307 MovieClip [gib] |
"6" | Symbol 758 MovieClip Frame 15 | Symbol 307 MovieClip [gib] |
"9" | Symbol 758 MovieClip Frame 15 | Symbol 307 MovieClip [gib] |
"10" | Symbol 758 MovieClip Frame 15 | Symbol 307 MovieClip [gib] |
"11" | Symbol 758 MovieClip Frame 15 | Symbol 307 MovieClip [gib] |
"9" | Symbol 758 MovieClip Frame 15 | Symbol 307 MovieClip [gib] |
"10" | Symbol 758 MovieClip Frame 15 | Symbol 307 MovieClip [gib] |
"11" | Symbol 758 MovieClip Frame 15 | Symbol 307 MovieClip [gib] |
"9" | Symbol 758 MovieClip Frame 16 | Symbol 307 MovieClip [gib] |
"6" | Symbol 758 MovieClip Frame 17 | Symbol 307 MovieClip [gib] |
"head" | Symbol 759 MovieClip Frame 1 | Symbol 758 MovieClip |
"head_destruct" | Symbol 760 MovieClip Frame 1 | Symbol 759 MovieClip |
"part2" | Symbol 762 MovieClip Frame 1 | Symbol 723 MovieClip |
"part4" | Symbol 762 MovieClip Frame 1 | Symbol 723 MovieClip |
"part3" | Symbol 762 MovieClip Frame 1 | Symbol 716 MovieClip |
"part1" | Symbol 762 MovieClip Frame 1 | Symbol 716 MovieClip |
"legs1" | Symbol 763 MovieClip Frame 1 | Symbol 762 MovieClip |
"part1" | Symbol 765 MovieClip Frame 1 | Symbol 716 MovieClip |
"part2" | Symbol 765 MovieClip Frame 1 | Symbol 723 MovieClip |
"part3" | Symbol 765 MovieClip Frame 1 | Symbol 716 MovieClip |
"part4" | Symbol 765 MovieClip Frame 1 | Symbol 723 MovieClip |
"legs1" | Symbol 766 MovieClip Frame 1 | Symbol 765 MovieClip |
"torso" | Symbol 767 MovieClip Frame 1 | Symbol 679 MovieClip |
"levi2" | Symbol 767 MovieClip Frame 1 | Symbol 700 MovieClip |
"levi1" | Symbol 767 MovieClip Frame 1 | Symbol 700 MovieClip |
"arm1" | Symbol 767 MovieClip Frame 1 | Symbol 710 MovieClip |
"arm2" | Symbol 767 MovieClip Frame 1 | Symbol 710 MovieClip |
"legs" | Symbol 767 MovieClip Frame 1 | Symbol 725 MovieClip |
"head1" | Symbol 767 MovieClip Frame 1 | Symbol 760 MovieClip |
"legs" | Symbol 767 MovieClip Frame 2 | Symbol 763 MovieClip |
"legs" | Symbol 767 MovieClip Frame 3 | Symbol 766 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 16 as "sprout" |
ExportAssets (56) | Timeline Frame 1 | Symbol 31 as "dia_explode" |
ExportAssets (56) | Timeline Frame 1 | Symbol 32 as "bullet_explode" |
ExportAssets (56) | Timeline Frame 1 | Symbol 45 as "bullet1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 95 as "sprout1" |
ExportAssets (56) | Timeline Frame 1 | Symbol 97 as "box_alive" |
ExportAssets (56) | Timeline Frame 1 | Symbol 239 as "ammog" |
ExportAssets (56) | Timeline Frame 1 | Symbol 297 as "enemy" |
ExportAssets (56) | Timeline Frame 1 | Symbol 307 as "gib" |
ExportAssets (56) | Timeline Frame 1 | Symbol 324 as "particle" |
ExportAssets (56) | Timeline Frame 1 | Symbol 325 as "particle_explode" |
ExportAssets (56) | Timeline Frame 1 | Symbol 621 as "tooth" |
Labels
"alive" | Symbol 297 MovieClip [enemy] Frame 1 |
"dead" | Symbol 297 MovieClip [enemy] Frame 4 |
"dead2" | Symbol 297 MovieClip [enemy] Frame 5 |
Dynamic Text Variables
coins | Symbol 458 EditableText | "0" |
life | Symbol 573 EditableText | "100" |
|