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

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

beta.swf

This is the info page for
Flash #241613

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


Text
100

for(c=0
; c<1;
c++)//n
umber
of
diamo
nd
enemy
spawn
s at
once,
chang
c<# to
increas
e or
decrea
se
for(d=0
; d<3;
d++)//n
umber
of
diamo
nd
enemy
spawn
s at
once,
chang
c<# to
increas
e or
decrea
se

0

$

0

0

$

100

0

ActionScript [AS1/AS2]

Frame 1
stop(); toggleHighQuality(); speed = 3; _root.hand.onEnterFrame = function () { this._x = this._x + ((_root.hero._x - this.lastX) / speed); this._y = this._y + ((_root.hero._y - this.lastY) / speed); this._y = this._y - 10; this._x = this._x - 4; this.lastX = this._x; this.lastY = this._y; }; function createBox() { currentBox = _root.attachMovie("enemy", "box" + boxArray.length, _root.getNextHighestDepth()); currentBox._x = 980; 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)) { ammo = ammo - 1; var bullet1 = _root.attachMovie("bullet1", "b" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); bullet1._x = char._x; bullet1._y = char._y; bullet1.bulletLifeTimer = 0; randomNum = random(bulletOffset) - (bulletOffset / 2); bulletAngle = (((char._rotation + randomNum) - 90) * Math.PI) / 180; bullet1.xSpeed = Math.cos(bulletAngle) * bulletSpeed; bullet1.ySpeed = Math.sin(bulletAngle) * bulletSpeed; bullet1.onEnterFrame = function () { if (this._x >= 810) { this.removeMovieClip(); } if (this._x <= 95) { this.removeMovieClip(); } if (this._y >= 510) { this.removeMovieClip(); } if (this._y <= 25) { this.removeMovieClip(); } this._rotation = rotationDirection; cce = cce + 1; if (flamethrower == true) { cuttershot = false; this.gotoAndStop(2); } else { if (cuttershot == true) { flamethrower = false; this.gotoAndStop(3); } tempMissile.onEnterFrame = function () { doFollow(bullet1, tank1); }; if (rocket == true) { flamethrower = false; cuttershot == false; this.gotoAndStop(4); } } 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 = 2; var bulletLifeTimerTotal = 50; var bulletSpeed = 15; var reloadSpeed = 250; 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 = []; createBox(); _root.coins = 0; var i = 1; if (Key.isDown(70)) { i++; _root.attachMovie("grenader", "i" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); grenader._x = _root.hero_.x; grenader._x = _root.hero_.y - 30; } 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 610 MovieClip "hero" in Frame 1
onClipEvent (load) { var ground = _root.ground; var grav = 0; var gravity = 0.8; var speed = 8; var maxJump = -13; var touchingGround = false; _root.ammo = 0; } onClipEvent (enterFrame) { if (_root.ammo < 0) { _root.ammo = 0; _root.bulletLifeTimerTotal = 50; _root.bulletSpeed = 15; _root.bulletOffset = 2; _root.reloadSpeed = 250; _root.flamethrower = false; _root.cuttershot = false; } if (this._x >= 520) { this._x = 519; _root.ground._x = _root.ground._x - speed; _root["box" + c]._x = _root["box" + c]._x - speed; _root.bg._x = _root.bg._x - 0.4; _root.bg2._x = _root.bg2._x - speed; } if (this._x <= 150) { this._x = 151; _root.ground._x = _root.ground._x + speed; _root.bg._x = _root.bg._x + 0.4; _root.bg2._x = _root.bg2._x + speed; _root["box" + c]._x = _root["box" + c]._x + speed; } if (this._y >= 370) { this._y = 369; _root.ground._y = _root.ground._y - speed; _root.bg._y = _root.bg._y + 0.4; _root.char._y = 379; _root["box" + c]._y = _root["box" + c]._y + speed; } if (this._y <= 80) { this._y = 79; _root.ground._y = _root.ground._y + speed; _root.bg._y = _root.bg._y - 0.4; _root.char._y = 379; _root["box" + c]._y = _root["box" + c]._y - 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) && (touchingGround)) { this.gotoAndStop(2); } if (Key.isDown(68)) { _root.char._xscale = -100; this._xscale = 100; _root.nade._xscale = -100; _root.hand._x = _root.hand._x + 2; _root.hand._xscale = -100; _x = (_x + speed); } if (Key.isDown(65) && (touchingGround)) { this.gotoAndStop(2); } if (Key.isDown(65)) { _root.char._xscale = -100; _root.nade._xscale = 100; this._xscale = -100; _root.hand._xscale = 100; _x = (_x - speed); } if (Key.isDown(87) && (touchingGround)) { grav = maxJump; this.gotoAndStop(3); } if (Key.isDown(83) && (touchingGround)) { this.gotoAndStop(4); speed = 0; _root.hand._y = _root.hand._y + 5; } 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 791 MovieClip "tank3" in Frame 1
onClipEvent (load) { var xsp = 1; } onClipEvent (enterFrame) { this._x = this._x - xsp; }
Instance of Symbol 791 MovieClip "tank4" in Frame 1
onClipEvent (load) { var xsp = 1; } onClipEvent (enterFrame) { this._x = this._x - xsp; }
Instance of Symbol 1130 MovieClip "lifebar" in Frame 1
onClipEvent (enterFrame) { this._xscale = _root.life * 1; if (_root.life < 0) { unloadMovie (_root.hero); unloadMovie (_root.char); _root.life = 0; } }
Instance of Symbol 1130 MovieClip "xpbar" in Frame 1
onClipEvent (enterFrame) { this._xscale = _root.life * 1; if (_root.life < 0) { unloadMovie (_root.hero); unloadMovie (_root.char); _root.life = 0; } }
Instance of Symbol 1153 MovieClip "cursor" in Frame 1
onClipEvent (load) { Mouse.hide(); } onClipEvent (enterFrame) { _x = _root._xmouse; _y = _root._ymouse; updateAfterEvent(); this.swapDepths(_root.getNextHighestDepth()); }
Frame 2
stop();
Instance of Symbol 1130 MovieClip "lifebar" in Frame 2
onClipEvent (enterFrame) { this._xscale = _root.life * 1; if (_root.life < 0) { unloadMovie (_root.hero); unloadMovie (_root.char); _root.life = 0; } }
Instance of Symbol 1130 MovieClip "xpbar" in Frame 2
onClipEvent (enterFrame) { this._xscale = _root.life * 1; if (_root.life < 0) { unloadMovie (_root.hero); unloadMovie (_root.char); _root.life = 0; } }
Instance of Symbol 610 MovieClip "hero" in Frame 2
onClipEvent (load) { var ground = _root.ground; var grav = 0; var gravity = 0.8; var speed = 8; var maxJump = -13; var touchingGround = false; _root.ammo = 0; } onClipEvent (enterFrame) { if (_root.ammo < 0) { _root.ammo = 0; this.gotoAndStop(3); _root.bulletLifeTimerTotal = 50; _root.bulletSpeed = 15; _root.bulletOffset = 2; _root.reloadSpeed = 250; _root.flamethrower = false; _root.cuttershot = false; } if (this._x >= 520) { this._x = 519; _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; } if (this._y >= 370) { this._y = 369; _root.ground._y = _root.ground._y - speed; _root.bg._y = _root.bg._y + 0.4; _root.char._y = 379; _root["box" + c]._y = _root["box" + c]._y + speed; } if (this._y <= 80) { this._y = 79; _root.ground._y = _root.ground._y + speed; _root.bg._y = _root.bg._y - 0.4; _root.char._y = 379; _root["box" + c]._y = _root["box" + c]._y - 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)) { this.gotoAndStop(2); _root.char._xscale = 100; this._xscale = 100; _root.nade._xscale = 100; _x = (_x + speed); } if (Key.isDown(65)) { this.gotoAndStop(2); _root.char._xscale = -100; _root.nade._xscale = 100; this._xscale = -100; _x = (_x - speed); } if (Key.isDown(87) && (touchingGround)) { grav = maxJump; this.gotoAndStop(3); } if (Key.isDown(65) && (touchingGround == false)) { _x = (_x - 7); } if (Key.isDown(68) && (touchingGround == false)) { _x = (_x + 7); } 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; } }
Symbol 15 MovieClip Frame 6
_parent.prevFrame();
Symbol 16 MovieClip [sprout] Frame 1
stop();
Symbol 33 MovieClip [dia_explode] Frame 16
this.removeMovieClip(); stop();
Symbol 34 MovieClip [bullet_explode] Frame 20
_parent._parent.removeMovieClip(); stop();
Symbol 35 MovieClip Frame 1
stop();
Symbol 44 MovieClip Frame 1
this._alpha = "0"; stop();
Symbol 47 MovieClip Frame 28
stop();
Instance of Symbol 44 MovieClip in Symbol 51 MovieClip Frame 1
onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].nextFrame(); _root.boxArray[c].sprout_main.gotoAndStop(2); _parent.attachMovie(bullgex, bull1, _root.getNextHighestDepth); _parent.unloadMovie(); } c++; } if (this.hitTest(_root.crate.crate_alive)) { _root.crate.nextFrame(); _parent.unloadMovie(); _root.crate.crate_alive.attachMovie(bullgex, bull, _root.getNextHighestDepth); } if (this.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); _parent.unloadMovie(); _root.crys1.crys_alive.attachMovie(bullgex, bull, _root.getNextHighestDepth); } if (this.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); _parent.unloadMovie(); _root.crys2.crys_alive.attachMovie(bullgex, bull, _root.getNextHighestDepth); } if (this.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); _parent.unloadMovie(); _root.crys3.crys_alive.attachMovie(bullgex, bull, _root.getNextHighestDepth); } if (this.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); _parent.unloadMovie(); _root.crys4.crys_alive.attachMovie(bullgex, bull, _root.getNextHighestDepth); } if (this.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); _parent.unloadMovie(); _root.crys5.crys_alive.attachMovie(bullgex, bull, _root.getNextHighestDepth); } if (this.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys13.crys_alive)) { _root.ground.crys13.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys14.crys_alive)) { _root.ground.crys14.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys15.crys_alive)) { _root.ground.crys15.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys16.crys_alive)) { _root.ground.crys16.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys17.crys_alive)) { _root.ground.crys17.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys18.crys_alive)) { _root.ground.crys18.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crate.crate_alive)) { _root.crate.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate2.crate_alive)) { _root.crate2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate3.crate_alive)) { _root.crate3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate4.crate_alive)) { _root.crate4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate5.crate_alive)) { _root.crate5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate13.crate_alive)) { _root.crate13.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate14.crate_alive)) { _root.crate14.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate15.crate_alive)) { _root.crate15.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate16.crate_alive)) { _root.crate16.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate17.crate_alive)) { _root.crate17.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate18.crate_alive)) { _root.crate18.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate19.crate_alive)) { _root.crate19.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate20.crate_alive)) { _root.crate20.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate21.crate_alive)) { _root.crate21.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate22.crate_alive)) { _root.crate22.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate23.crate_alive)) { _root.crate23.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate24.crate_alive)) { _root.crate24.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz9.buzz_alive)) { _root.buzz9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz10.buzz_alive)) { _root.buzz10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz11.buzz_alive)) { _root.buzz11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz12.buzz_alive)) { _root.buzz12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz13.buzz_alive)) { _root.buzz13.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.wall1.wall_alive)) { _root.wall1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.wall2.wall_alive)) { _root.ground.wall2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.wall3.wall_alive)) { _root.ground.wall3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.wall4.wall_alive)) { _root.ground.wall4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.wall5.wall_alive)) { _root.ground.wall5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.wall6.wall_alive)) { _root.ground.wall6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g5.node)) { _root.tank1.g5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g8.node)) { _root.tank1.g8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g9.node)) { _root.tank1.g9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g1.node)) { _root.tank1.g1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g10.node)) { _root.tank1.g10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g12.eye)) { _root.tank1.g12.eye.play()(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g2.node)) { _root.tank1.g2.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g10.node)) { _root.tank2.g10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g12.node)) { _root.tank2.g12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g12.eye)) { _root.tank2.g12.eye.play()(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g4.node)) { _root.tank3.g4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g5.node)) { _root.tank3.g5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g6.node)) { _root.tank3.g6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g7.node)) { _root.tank3.g7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g8.node)) { _root.tank3.g8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g9.node)) { _root.tank3.g9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g10.node)) { _root.tank3.g10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g11.node)) { _root.tank3.g11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g12.node)) { _root.tank3.g12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g12.eye)) { _root.tank3.g12.eye.play()(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g1.node)) { _root.tank4.g1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g2.node)) { _root.tank4.g2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g3.node)) { _root.tank4.g3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g4.node)) { _root.tank4.g4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g12.node)) { _root.tank4.g12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g12.eye)) { _root.tank4.g12.eye.play()(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g5.node)) { _root.tank4.g5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g6.node)) { _root.tank4.g6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g7.node)) { _root.tank4.g7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g8.node)) { _root.tank4.g8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g9.node)) { _root.tank4.g9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g10.node)) { _root.tank4.g10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g11.node)) { _root.tank4.g11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister1.lips.node)) { _root.blister1.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister2.lips.node)) { _root.blister2.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister3.lips.node)) { _root.blister3.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister4.lips.node)) { _root.blister4.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister5.lips.node)) { _root.blister5.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister6.lips.node)) { _root.blister6.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister7.lips.node)) { _root.blister7.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister8.lips.node)) { _root.blister8.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister8.lips.node)) { _root.blister8.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister1.node2)) { _root.blister1.nextFrame(); _root.blister1.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister2.node2)) { _root.blister2.nextFrame(); _root.blister2.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister3.node2)) { _root.blister3.nextFrame(); _root.blister3.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister4.node2)) { _root.blister4.nextFrame(); _root.blister4.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister5.node2)) { _root.blister5.nextFrame(); _root.blister5.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister6.node2)) { _root.blister6.nextFrame(); _root.blister6.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister7.node2)) { _root.blister7.nextFrame(); _root.blister7.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister8.node2)) { _root.blister8.nextFrame(); _root.blister8.lips.gotoAndStop(8); this.nextFrame(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.legs.legs1.part1.legbox)) { _root.ench2.legs.legs1.part1.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.legs.legs1.part2.legbox)) { _root.ench2.legs.legs1.part2.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.torso.bodyshot)) { _root.ench2.torso.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.head1.head_destruct.head.headshot)) { _root.ench2.head1.head_destruct.head.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.legs.legs1.part3.legbox)) { _root.ench2.legs.legshit.part3.nextFrame(); _root.ench2.legs.legs1.part3.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.legs.legs1.part4.legbox)) { _root.ench2.legs.legshit.part4.nextFrame(); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.shield.shieldhitter)) { _root.ench1.shield.play(); _root.ench1.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.shield.shieldhitter)) { _root.ench2.shield.nextFrame(); _root.ench2.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm1.armhit.arm_hitbox)) { _root.ench2.arm1.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm2.armhit.arm_hitbox)) { _root.ench2.arm2.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ground.wall1.wall_alive)) { _root.ground.wall1.nextFrame(); } if (this.hitTest(_root.ceiling1.wall_alive)) { _root.ceiling1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.wingleft)) { _root.ench2.wingleft.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.wingleft)) { _root.ench1.wingleft.gotoAndStop(2); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.wingright)) { _root.ench2.wingright.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.wingright)) { _root.ench1.wingright.gotoAndStop(2); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.legs.legs1.part1.legbox)) { _root.ench3.legs.legs1.part1.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.legs.legs1.part2.legbox)) { _root.ench3.legs.legs1.part2.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.torso.bodyshot)) { _root.ench3.torso.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.head1.head_destruct.head.headshot)) { _root.ench3.head1.head_destruct.head.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.legs.legs1.part3.legbox)) { _root.ench3.legs.legshit.part3.nextFrame(); _root.ench3.legs.legs1.part3.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.legs.legs1.part4.legbox)) { _root.ench3.legs.legshit.part4.nextFrame(); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.arm1.armhit.arm_hitbox)) { _root.ench3.arm1.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.arm2.armhit.arm_hitbox)) { _root.ench3.arm2.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.shield.shieldhitter)) { _root.ench3.shield.play(); _root.ench3.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.shield.shieldhitter)) { _root.ench4.shield.nextFrame(); _root.ench4.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench4.arm1.armhit.arm_hitbox)) { _root.ench4.arm1.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.head1.head_destruct.head.headshot)) { _root.ench4.head1.head_destruct.head.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.legs.legs1.part3.legbox)) { _root.ench4.legs.legshit.part3.nextFrame(); _root.ench4.legs.legs1.part3.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.legs.legs2.part4.legbox)) { _root.ench4.legs.legshit.part4.nextFrame(); _root.ench4.legs.legs2.part4.nextFrame(); _root.ench4.legs.legs2.gotoAndPlay(17); _root.ench4.legs.legs2.part4.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.torso.bodyshot)) { _root.ench4.torso.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.orb1.orbhit)) { _root.ench1.orb1.nextFrame(); } if (this.hitTest(_root.ench1.orb2.orbhit)) { _root.ench1.orb2.nextFrame(); } if (this.hitTest(_root.ench2.orb1.orbhit)) { _root.ench2.orb1.nextFrame(); } if (this.hitTest(_root.ench2.orb2.orbhit)) { _root.ench2.orb2.nextFrame(); } if (this.hitTest(_root.ench3.orb1.orbhit)) { _root.ench3.orb1.nextFrame(); } if (this.hitTest(_root.ench3.orb2.orbhit)) { _root.ench3.orb2.nextFrame(); } if (this.hitTest(_root.ench4.orb1.orbhit)) { _root.ench4.orb1.nextFrame(); } if (this.hitTest(_root.ench4.orb2.orbhit)) { _root.ench4.orb2.nextFrame(); } if (this.hitTest(_root.ground.realground.doodad1.rocker)) { _root.ground.realground.doodad1.nextFrame(); } if (this.hitTest(_root.ground.realground.doodad2.rocker)) { _root.ground.realground.doodad2.nextFrame(); } if (this.hitTest(_root.pir1.hit)) { _root.pir1.dsw.gotoAndStop(3); _root.pir1.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir2.hit)) { _root.pir2.dsw.gotoAndStop(3); _root.pir2.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir3.hit)) { _root.pir3.dsw.gotoAndStop(3); _root.pir3.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir4.hit)) { _root.pir4.dsw.gotoAndStop(3); _root.pir4.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir5.hit)) { _root.pir5.dsw.gotoAndStop(3); _root.pir5.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir6.hit)) { _root.pir6.dsw.gotoAndStop(3); _root.pir6.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir7.hit)) { _root.pir7.dsw.gotoAndStop(3); _root.pir7.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir8.hit)) { _root.pir8.dsw.gotoAndStop(3); _root.pir8.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir9.hit)) { _root.pir9.dsw.gotoAndStop(3); _root.pir9.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir10.hit)) { _root.pir10.dsw.gotoAndStop(3); _root.pir10.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir11.hit)) { _root.pir11.dsw.gotoAndStop(3); _root.pir11.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir12.hit)) { _root.pir12.dsw.gotoAndStop(3); _root.pir12.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir13.hit)) { _root.pir13.dsw.gotoAndStop(3); _root.pir13.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir14.hit)) { _root.pir14.dsw.gotoAndStop(3); _root.pir14.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir15.hit)) { _root.pir15.dsw.gotoAndStop(3); _root.pir15.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir16.hit)) { _root.pir16.dsw.gotoAndStop(3); _root.pir16.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir17.hit)) { _root.pir17.dsw.gotoAndStop(3); _root.pir17.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir18.hit)) { _root.pir18.dsw.gotoAndStop(3); _root.pir18.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir19.hit)) { _root.pir19.dsw.gotoAndStop(3); _root.pir19.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir20.hit)) { _root.pir20.dsw.gotoAndStop(3); _root.pir20.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir21.hit)) { _root.pir21.dsw.gotoAndStop(3); _root.pir21.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir22.hit)) { _root.pir22.dsw.gotoAndStop(3); _root.pir22.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir23.hit)) { _root.pir23.dsw.gotoAndStop(3); _root.pir23.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir24.hit)) { _root.pir24.dsw.gotoAndStop(3); _root.pir24.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir25.hit)) { _root.pir25.dsw.gotoAndStop(3); _root.pir25.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir26.hit)) { _root.pir26.dsw.gotoAndStop(3); _root.pir26.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir27.hit)) { _root.pir27.dsw.gotoAndStop(3); _root.pir27.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.pir28.hit)) { _root.pir28.dsw.gotoAndStop(3); _root.pir28.gotoAndStop(3); _parent.unloadMovie(); } if (this.hitTest(_root.bgr1.hit2)) { _root.bgr1.attachMovie(bullgex, bull, _root.getNextHighestDepth); _root.bgr1.nextFrame(); _root.bgr1.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr2.hit2)) { _root.bgr2.attachMovie(bullgex, bull, _root.getNextHighestDepth); _root.bgr2.nextFrame(); _root.bgr2.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr3.hit2)) { _root.bgr3.attachMovie(bullgex, bull, _root.getNextHighestDepth); _root.bgr3.nextFrame(); _root.bgr3.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr4.hit2)) { _root.bgr4.attachMovie(bullgex, bull, _root.getNextHighestDepth); _root.bgr4.nextFrame(); _root.bgr4.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr5.hit2)) { _root.bgr5.attachMovie(bullgex, bull, _root.getNextHighestDepth); _root.bgr5.nextFrame(); _root.bgr5.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr6.hit2)) { _root.bgr6.attachMovie(bullgex, bull, _root.getNextHighestDepth); _root.bgr6.nextFrame(); _root.bgr6.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr7.hit2)) { _root.bgr7.attachMovie(bullgex, bull, _root.getNextHighestDepth); _root.bgr7.nextFrame(); _root.bgr7.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.realground.flatland1.rocker)) { _root.ground.realground.flatland1.nextFrame(); _parent.unloadMovie(); } }
Symbol 53 MovieClip Frame 1
stop();
Symbol 54 MovieClip [bullet1] Frame 1
stop();
Instance of Symbol 35 MovieClip "basichit" in Symbol 54 MovieClip [bullet1] Frame 1
onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.shot.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].nextFrame(); _root.boxArray[c].attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.boxArray[c].sprout_main.gotoAndStop(2); removeMovieClip(_parent); } c++; } if (this.shot.hitTest(_root.ground.crys1.crys_alive)) { _root.crys1.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys2.crys_alive)) { _root.crys2.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys3.crys_alive)) { _root.crys3.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys3.nextFrame(); this.nextFrame(); this.removeMovieClip(); this.attachMovie(bullet_explode, be, 100); } if (this.shot.hitTest(_root.ground.crys4.crys_alive)) { _root.crys14.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys5.crys_alive)) { _root.crys5.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys6.crys_alive)) { _root.crys6.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys7.crys_alive)) { _root.crys7.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys7.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys8.crys_alive)) { _root.crys8.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys9.crys_alive)) { _root.crys9.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys10.crys_alive)) { _root.crys10.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys11.crys_alive)) { _root.crys11.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys12.crys_alive)) { _root.crys12.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys13.crys_alive)) { _root.crys13.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.ground.crys13.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.crys14.crys_alive)) { _root.crys14.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _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.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate2.crate_alive)) { _root.crate2.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate3.crate_alive)) { _root.crate3.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate3.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate4.crate_alive)) { _root.crate4.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate4.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate5.crate_alive)) { _root.crate5.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate5.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate6.crate_alive)) { _root.crate6.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate7.crate_alive)) { _root.crate7.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate7.nextFrame(); _root.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate8.crate_alive)) { _root.crate8.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate8.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate9.crate_alive)) { _root.crate9.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate9.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate10.crate_alive)) { _root.crate10.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate10.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate11.crate_alive)) { _root.crate11.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate11.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate12.crate_alive)) { _root.crate12.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate12.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate13.crate_alive)) { _root.crate13.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate13.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate14.crate_alive)) { _root.crate14.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate14.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate15.crate_alive)) { _root.crate15.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate15.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate16.crate_alive)) { _root.crate16.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate16.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate17.crate_alive)) { _root.crate17.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate17.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate18.crate_alive)) { _root.crate18.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate18.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate19.crate_alive)) { _root.crate19.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate19.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate20.crate_alive)) { _root.crate20.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate20.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate21.crate_alive)) { _root.crate21.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate21.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate22.crate_alive)) { _root.crate22.attachMovie(dia_explode, dia, _root.getNextHighestDepth); _root.crate22.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate23.crate_alive)) { _root.crate23.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.crate24.crate_alive)) { _root.crate24.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.ground.wall2.wall_alive)) { _root.ground.wall2.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ground.wall3.wall_alive)) { _root.ground.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.wall6.wall_alive)) { _root.wall6.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.wall7.wall_alive)) { _root.wall7.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.tank1.g12.eye)) { _root.tank1.g12.eye.play()(); this.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.g12.eye)) { _root.tank3.g12.eye.play()(); 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.g12.eye)) { _root.tank4.g12.eye.play()(); 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); } if (this.shot.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.shot.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.shot.hitTest(_root.ench1.shield.shieldhitter)) { _root.ench1.dealer.deal = _root.ench1.dealer.deal - 1; _parent.basichit.nextFrame(); _root.ench1.shield.nextFrame(); _root.ench1.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench2.shield.shieldhitter)) { _root.ench2.dealer.deal = _root.ench2.dealer.deal - 1; _root.ench2.shield.nextFrame(); _root.ench2.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench2.legs.legs1.part1.legbox)) { _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.legs.legs1.part1.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.torso.top1.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench2.legs.legs1.part2.legbox)) { _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.legs.legs1.part2.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench2.torso.bodyshot)) { _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _root.ench2.torso.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench2.head1.head_destruct.head.headshot)) { _root.ench2.head1.head_destruct.head.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench2.legs.legs1.part3.legbox)) { _root.ench2.legs.legshit.part3.nextFrame(); _root.ench2.legs.legs1.part3.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _root.ench2.legs.legs1.gotoAndPlay(17); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench2.legs.legs1.part4.legbox)) { _root.ench2.legs.legshit.part4.nextFrame(); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench2.wingleft)) { _root.ench2.wingleft.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.wingleft)) { _root.ench1.wingleft.gotoAndStop(2); _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.shot.hitTest(_root.ench2.wingright)) { _root.ench2.wingright.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.wingright)) { _root.ench1.wingright.gotoAndStop(2); _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.shot.hitTest(_root.ench3.legs.legs1.part1.legbox)) { _root.ench3.legs.legs1.part1.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench3.legs.legs1.part2.legbox)) { _root.ench3.legs.legs1.part2.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench3.torso.bodyshot)) { _root.ench3.torso.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench3.head1.head_destruct.head.headshot)) { _root.ench3.head1.head_destruct.head.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench3.legs.legs1.part3.legbox)) { _root.ench3.legs.legshit.part3.nextFrame(); _root.ench3.legs.legs1.part3.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench3.legs.legs1.part4.legbox)) { _root.ench3.legs.legshit.part4.nextFrame(); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench3.arm1.armhit.arm_hitbox)) { _root.ench3.arm1.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.shot.hitTest(_root.ench3.arm2.armhit.arm_hitbox)) { _root.ench3.arm2.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.shot.hitTest(_root.ench3.shield.shieldhitter)) { _root.ench3.shield.play(); _root.ench3.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench4.shield.shieldhitter)) { _root.ench4.shield.nextFrame(); _root.ench4.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.shot.hitTest(_root.ench4.arm1.armhit.arm_hitbox)) { _root.ench4.arm1.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.shot.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.shot.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.shot.hitTest(_root.ench4.head1.head_destruct.head.headshot)) { _root.ench4.head1.head_destruct.head.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench4.legs.legs1.part3.legbox)) { _root.ench4.legs.legshit.part3.nextFrame(); _root.ench4.legs.legs1.part3.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench4.legs.legs1.part4.legbox)) { _root.ench4.legs.legshit.part4.nextFrame(); _root.ench4.legs.legs1.part4.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.legs.legs1.part4.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.ench1.orb1.orbhit)) { _root.ench1.orb1.nextFrame(); } if (this.shot.hitTest(_root.ench1.orb2.orbhit)) { _root.ench1.orb2.nextFrame(); } if (this.shot.hitTest(_root.ench2.orb1.orbhit)) { _root.ench2.orb1.nextFrame(); } if (this.shot.hitTest(_root.ench2.orb2.orbhit)) { _root.ench2.orb2.nextFrame(); } if (this.shot.hitTest(_root.ench3.orb1.orbhit)) { _root.ench3.orb1.nextFrame(); } if (this.shot.hitTest(_root.ench3.orb2.orbhit)) { _root.ench3.orb2.nextFrame(); } if (this.shot.hitTest(_root.ench4.orb1.orbhit)) { _root.ench4.orb1.nextFrame(); } if (this.shot.hitTest(_root.ench4.orb2.orbhit)) { _root.ench4.orb2.nextFrame(); } if (this.shot.hitTest(_root.pir1.hit)) { _root.pir1.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir2.hit)) { _root.pir2.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir3.hit)) { _root.pir3.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir4.hit)) { _root.pir4.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir5.hit)) { _root.pir5.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir6.hit)) { _root.pir6.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir7.hit)) { _root.pir7.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir8.hit)) { _root.pir8.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir9.hit)) { _root.pir9.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir10.hit)) { _root.pir10.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir11.hit)) { _root.pir11.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir12.hit)) { _root.pir12.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir13.hit)) { _root.pir13.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir14.hit)) { _root.pir14.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir15.hit)) { _root.pir15.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir16.hit)) { _root.pir16.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir17.hit)) { _root.pir17.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir18.hit)) { _root.pir18.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir19.hit)) { _root.pir19.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir20.hit)) { _root.pir20.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir21.hit)) { _root.pir21.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir22.hit)) { _root.pir22.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir23.hit)) { _root.pir23.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir24.hit)) { _root.pir24.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir25.hit)) { _root.pir25.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir26.hit)) { _root.pir26.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir27.hit)) { _root.pir27.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir28.hit)) { _root.pir28.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir29.hit)) { _root.pir29.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.pir30.hit)) { _root.pir30.gotoAndStop(3); removeMovieClip(_parent); } if (this.shot.hitTest(_root.fly1.hit)) { _root.fly1.gotoAndStop(2); this.attachMovie("bullet_explode", "bullet_explode" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); removeMovieClip(_parent); } if (this.shot.hitTest(_root.fly1.hit2)) { _root.fly1.gotoAndStop(3); _parent.attachMovie("bullet_explode", "bullet_explode" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); } if (this.shot.hitTest(_root.fly2.hit)) { _root.fly2.gotoAndStop(2); _parent.attachMovie("bullet_explode", "bullet_explode" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); } if (this.shot.hitTest(_root.fly2.hit2)) { _root.fly2.gotoAndStop(3); _parent.attachMovie("bullet_explode", "bullet_explode" + _root.getNextHighestDepth(), _root.getNextHighestDepth()); } if (this.shot.hitTest(_root.bgr1.hit2)) { _root.bgr1.nextFrame(); _root.bgr1.gr1.nextFrame(); removeMovieClip(_parent); } if (this.shot.hitTest(_root.bgr2.hit2)) { _root.bgr2.nextFrame(); _root.bgr2.gr1.nextFrame(); _parent.unloadMovie(); } if (this.shot.hitTest(_root.bgr3.hit2)) { _root.bgr3.nextFrame(); _root.bgr3.gr1.nextFrame(); _parent.unloadMovie(); } if (this.shot.hitTest(_root.bgr4.hit2)) { _root.bgr4.nextFrame(); _root.bgr4.gr1.nextFrame(); _parent.unloadMovie(); } if (this.shot.hitTest(_root.bgr5.hit2)) { _root.bgr5.nextFrame(); _root.bgr5.gr1.nextFrame(); _parent.unloadMovie(); } if (this.shot.hitTest(_root.bgr6.hit2)) { _root.bgr6.nextFrame(); _root.bgr6.gr1.nextFrame(); _parent.unloadMovie(); } if (this.shot.hitTest(_root.bgr7.hit2)) { _root.bgr7.nextFrame(); _root.bgr7.gr1.nextFrame(); _parent.unloadMovie(); } if (this.shot.hitTest(_root.ground.realground.flatland1.rocker)) { _root.ground.realground.flatland1.nextFrame(); _parent.unloadMovie(); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 54 MovieClip [bullet1] Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Symbol 54 MovieClip [bullet1] Frame 2
stop();
Instance of Symbol 47 MovieClip "bullet2" in Symbol 54 MovieClip [bullet1] Frame 2
onClipEvent (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.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].gotoAndStop(6); _parent.unloadMovie(); } c++; } if (this.hitTest(_root.crate.crate_alive)) { _root.crate.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys13.crys_alive)) { _root.ground.crys13.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys14.crys_alive)) { _root.ground.crys14.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys15.crys_alive)) { _root.ground.crys15.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys16.crys_alive)) { _root.ground.crys16.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys17.crys_alive)) { _root.ground.crys17.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crys18.crys_alive)) { _root.ground.crys18.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.crate.crate_alive)) { _root.crate.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate2.crate_alive)) { _root.crate2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate3.crate_alive)) { _root.crate3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate4.crate_alive)) { _root.crate4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate5.crate_alive)) { _root.crate5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz9.buzz_alive)) { _root.buzz9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz10.buzz_alive)) { _root.buzz10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz11.buzz_alive)) { _root.buzz11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz12.buzz_alive)) { _root.buzz12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.buzz13.buzz_alive)) { _root.buzz13.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.wall1.wall_alive)) { _root.wall1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.wall2.wall_alive)) { _root.ground.wall2.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ground.wall3.wall_alive)) { _root.ground.wall3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.wall4.wall_alive)) { _root.ground.wall4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.wall5.wall_alive)) { _root.ground.wall5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g5.node)) { _root.tank1.g5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g8.node)) { _root.tank1.g8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g9.node)) { _root.tank1.g9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g1.node)) { _root.tank1.g1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g10.node)) { _root.tank1.g10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g12.eye)) { _root.tank1.g12.eye.play()(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank1.g2.node)) { _root.tank1.g2.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g10.node)) { _root.tank2.g10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g12.node)) { _root.tank2.g12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank2.g12.eye)) { _root.tank2.g12.eye.play()(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g4.node)) { _root.tank3.g4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g5.node)) { _root.tank3.g5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g6.node)) { _root.tank3.g6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g7.node)) { _root.tank3.g7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g8.node)) { _root.tank3.g8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g9.node)) { _root.tank3.g9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g10.node)) { _root.tank3.g10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g11.node)) { _root.tank3.g11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g12.node)) { _root.tank3.g12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank3.g12.eye)) { _root.tank3.g12.eye.play()(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g1.node)) { _root.tank4.g1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g2.node)) { _root.tank4.g2.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g3.node)) { _root.tank4.g3.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g4.node)) { _root.tank4.g4.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g12.node)) { _root.tank4.g12.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g12.eye)) { _root.tank4.g12.eye.play()(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g5.node)) { _root.tank4.g5.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g6.node)) { _root.tank4.g6.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g7.node)) { _root.tank4.g7.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g8.node)) { _root.tank4.g8.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g9.node)) { _root.tank4.g9.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g10.node)) { _root.tank4.g10.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.tank4.g11.node)) { _root.tank4.g11.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister1.lips.node)) { _root.blister1.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister2.lips.node)) { _root.blister2.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister3.lips.node)) { _root.blister3.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister4.lips.node)) { _root.blister4.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister5.lips.node)) { _root.blister5.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister6.lips.node)) { _root.blister6.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister7.lips.node)) { _root.blister7.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister8.lips.node)) { _root.blister8.lips.nextFrame(); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.blister8.lips.node)) { _root.blister8.lips.nextFrame(); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister1.node2)) { _root.blister1.nextFrame(); _root.blister1.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister2.node2)) { _root.blister2.nextFrame(); _root.blister2.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister3.node2)) { _root.blister3.nextFrame(); _root.blister3.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister4.node2)) { _root.blister4.nextFrame(); _root.blister4.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister5.node2)) { _root.blister5.nextFrame(); _root.blister5.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister6.node2)) { _root.blister6.nextFrame(); _root.blister6.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister7.node2)) { _root.blister7.nextFrame(); _root.blister7.lips.gotoAndStop(8); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.blister8.node2)) { _root.blister8.nextFrame(); _root.blister8.lips.gotoAndStop(8); this.nextFrame(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.legs.legs1.part1.legbox)) { _root.ench2.legs.legs1.part1.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.legs.legs1.part2.legbox)) { _root.ench2.legs.legs1.part2.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.torso.bodyshot)) { _root.ench2.torso.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.head1.head_destruct.head.headshot)) { _root.ench2.head1.head_destruct.head.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.legs.legs1.part3.legbox)) { _root.ench2.legs.legshit.part3.nextFrame(); _root.ench2.legs.legs1.part3.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.legs.legs1.part4.legbox)) { _root.ench2.legs.legshit.part4.nextFrame(); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.shield.shieldhitter)) { _root.ench1.shield.play(); _root.ench1.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.shield.shieldhitter)) { _root.ench2.shield.nextFrame(); _root.ench2.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm1.armhit.arm_hitbox)) { _root.ench2.arm1.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm2.armhit.arm_hitbox)) { _root.ench2.arm2.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ground.wall1.wall_alive)) { _root.ground.wall1.nextFrame(); } if (this.hitTest(_root.ceiling1.wall_alive)) { _root.ceiling1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.wingleft)) { _root.ench2.wingleft.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.wingleft)) { _root.ench1.wingleft.gotoAndStop(2); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench2.wingright)) { _root.ench2.wingright.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.wingright)) { _root.ench1.wingright.gotoAndStop(2); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } 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(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.legs.legs1.part1.legbox)) { _root.ench3.legs.legs1.part1.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.legs.legs1.part2.legbox)) { _root.ench3.legs.legs1.part2.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.torso.bodyshot)) { _root.ench3.torso.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.head1.head_destruct.head.headshot)) { _root.ench3.head1.head_destruct.head.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.legs.legs1.part3.legbox)) { _root.ench3.legs.legshit.part3.nextFrame(); _root.ench3.legs.legs1.part3.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.legs.legs1.part4.legbox)) { _root.ench3.legs.legshit.part4.nextFrame(); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench3.arm1.armhit.arm_hitbox)) { _root.ench3.arm1.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.arm2.armhit.arm_hitbox)) { _root.ench3.arm2.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.shield.shieldhitter)) { _root.ench3.shield.play(); _root.ench3.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.shield.shieldhitter)) { _root.ench4.shield.nextFrame(); _root.ench4.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench4.arm1.armhit.arm_hitbox)) { _root.ench4.arm1.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.head1.head_destruct.head.headshot)) { _root.ench4.head1.head_destruct.head.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.legs.legs1.part3.legbox)) { _root.ench4.legs.legshit.part3.nextFrame(); _root.ench4.legs.legs1.part3.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.legs.legs2.part4.legbox)) { _root.ench4.legs.legshit.part4.nextFrame(); _root.ench4.legs.legs2.part4.nextFrame(); _root.ench4.legs.legs2.gotoAndPlay(17); _root.ench4.legs.legs2.part4.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench4.torso.bodyshot)) { _root.ench4.torso.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); this.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.ench1.orb1.orbhit)) { _root.ench1.orb1.nextFrame(); } if (this.hitTest(_root.ench1.orb2.orbhit)) { _root.ench1.orb2.nextFrame(); } if (this.hitTest(_root.ench2.orb1.orbhit)) { _root.ench2.orb1.nextFrame(); } if (this.hitTest(_root.ench2.orb2.orbhit)) { _root.ench2.orb2.nextFrame(); } if (this.hitTest(_root.ench3.orb1.orbhit)) { _root.ench3.orb1.nextFrame(); } if (this.hitTest(_root.ench3.orb2.orbhit)) { _root.ench3.orb2.nextFrame(); } if (this.hitTest(_root.ench4.orb1.orbhit)) { _root.ench4.orb1.nextFrame(); } if (this.hitTest(_root.ench4.orb2.orbhit)) { _root.ench4.orb2.nextFrame(); } if (this.hitTest(_root.ground.realground.doodad1.rocker)) { _root.ground.realground.doodad1.nextFrame(); } if (this.hitTest(_root.ground.realground.doodad2.rocker)) { _root.ground.realground.doodad2.nextFrame(); } if (this.hitTest(_root.pir1.hit)) { _root.pir1.dsw.gotoAndStop(3); _root.pir1.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir2.hit)) { _root.pir2.dsw.gotoAndStop(3); _root.pir2.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir3.hit)) { _root.pir3.dsw.gotoAndStop(3); _root.pir3.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir4.hit)) { _root.pir4.dsw.gotoAndStop(3); _root.pir4.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir5.hit)) { _root.pir5.dsw.gotoAndStop(3); _root.pir5.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir6.hit)) { _root.pir6.dsw.gotoAndStop(3); _root.pir6.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir7.hit)) { _root.pir7.dsw.gotoAndStop(3); _root.pir7.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir8.hit)) { _root.pir8.dsw.gotoAndStop(3); _root.pir8.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir9.hit)) { _root.pir9.dsw.gotoAndStop(3); _root.pir9.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir10.hit)) { _root.pir10.dsw.gotoAndStop(3); _root.pir10.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir11.hit)) { _root.pir11.dsw.gotoAndStop(3); _root.pir11.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir12.hit)) { _root.pir12.dsw.gotoAndStop(3); _root.pir12.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir13.hit)) { _root.pir13.dsw.gotoAndStop(3); _root.pir13.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir14.hit)) { _root.pir14.dsw.gotoAndStop(3); _root.pir14.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir15.hit)) { _root.pir15.dsw.gotoAndStop(3); _root.pir15.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir16.hit)) { _root.pir16.dsw.gotoAndStop(3); _root.pir16.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir17.hit)) { _root.pir17.dsw.gotoAndStop(3); _root.pir17.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.pir18.hit)) { _root.pir18.dsw.gotoAndStop(3); _root.pir18.gotoAndStop(5); _parent.unloadMovie(); } if (this.hitTest(_root.bgr1.hit2)) { _root.bgr1.nextFrame(); _root.bgr1.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr1.firehit)) { _root.bgr1.gotoAndStop(26); _parent.unloadMovie(); } if (this.hitTest(_root.bgr2.hit2)) { _root.bgr2.nextFrame(); _root.bgr2.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr2.firehit)) { _root.bgr2.gotoAndStop(26); _parent.unloadMovie(); } if (this.hitTest(_root.bgr3.hit2)) { _root.bgr3.nextFrame(); _root.bgr3.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr3.firehit)) { _root.bgr3.gotoAndStop(26); _parent.unloadMovie(); } if (this.hitTest(_root.bgr4.hit2)) { _root.bgr4.nextFrame(); _root.bgr4.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr4.firehit)) { _root.bgr4.gotoAndStop(26); _parent.unloadMovie(); } if (this.hitTest(_root.bgr5.hit2)) { _root.bgr5.nextFrame(); _root.bgr5.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr6.firehit)) { _root.bgr6.gotoAndStop(26); _parent.unloadMovie(); } if (this.hitTest(_root.bgr6.hit2)) { _root.bgr6.nextFrame(); _root.bgr6.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr7.firehit)) { _root.bgr7.gotoAndStop(26); _parent.unloadMovie(); } if (this.hitTest(_root.bgr7.hit2)) { _root.bgr7.nextFrame(); _root.bgr7.gr1.nextFrame(); _parent.unloadMovie(); } if (this.hitTest(_root.bgr8.firehit)) { _root.bgr8.gotoAndStop(26); _parent.unloadMovie(); } if (this.hitTest(_root.bgr8.hit2)) { _root.bgr8.nextFrame(); _root.bgr8.gr1.nextFrame(); _parent.unloadMovie(); } }
Symbol 54 MovieClip [bullet1] Frame 3
stop();
Instance of Symbol 51 MovieClip in Symbol 54 MovieClip [bullet1] Frame 3
/* no clip actions */
Symbol 54 MovieClip [bullet1] Frame 4
function doFollow(follower, target) { follower.distanceX = target._x - follower._x; follower.distanceY = target._y - follower._y; follower.distanceTotal = Math.sqrt((follower.distanceX * follower.distanceX) + (follower.distanceY * follower.distanceY)); follower.moveDistanceX = (turnRate * follower.distanceX) / follower.distanceTotal; follower.moveDistanceY = (turnRate * follower.distanceY) / follower.distanceTotal; follower.moveX = follower.moveX + follower.moveDistanceX; follower.moveY = follower.moveY + follower.moveDistanceY; follower.totalmove = Math.sqrt((follower.moveX * follower.moveX) + (follower.moveY * follower.moveY)); follower.moveX = (missileSpeed * follower.moveX) / follower.totalmove; follower.moveY = (missileSpeed * follower.moveY) / follower.totalmove; follower._x = follower._x + follower.moveX; follower._y = follower._y + follower.moveY; follower._rotation = (180 * Math.atan2(follower.moveY, follower.moveX)) / Math.PI; } stop(); speed = 13; this.onEnterFrame = function () { this._x = this._x + ((_root.tank1._x - this.lastX) / speed); this._y = this._y + ((_root.tank1._y - this.lastY) / speed); this.lastX = this._x; this.lastY = this._y; }; this.onEnterFrame = function () { this._x = this._x + ((_root.fly1._x - this.lastX) / speed); this._y = this._y + ((_root.fly1._y - this.lastY) / speed); this.lastX = this._x; };
Instance of Symbol 53 MovieClip "rocket" in Symbol 54 MovieClip [bullet1] Frame 4
onClipEvent (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); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.legs.legs1.part1.legbox)) { _root.ench2.legs.legs1.part1.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench2.legs.legs1.part2.legbox)) { _root.ench2.legs.legs1.part2.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench2.torso.bodyshot)) { _root.ench2.torso.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench2.head1.head_destruct.head.headshot)) { _root.ench2.head1.head_destruct.head.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench2.legs.legs1.part3.legbox)) { _root.ench2.legs.legshit.part3.nextFrame(); _root.ench2.legs.legs1.part3.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench2.legs.legs1.part4.legbox)) { _root.ench2.legs.legshit.part4.nextFrame(); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.shield.shieldhitter)) { _parent.rocket.play(2); _root.ench1.shield.play(); _root.ench1.shield.shieldmain.gotoAndPlay(2); } if (this.hitTest(_root.ench2.shield.shieldhitter)) { this.rocket.nextFrame(); _root.ench2.shield.nextFrame(); _root.ench2.shield.shieldmain.gotoAndPlay(2); this.nextFrame(); removeMovieClip(_parent); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm1.armhit.arm_hitbox)) { _root.ench2.arm1.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm2.armhit.arm_hitbox)) { _root.ench2.arm2.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ground.wall1.wall_alive)) { _root.ground.wall1.nextFrame(); } if (this.hitTest(_root.ceiling1.wall_alive)) { _root.ceiling1.nextFrame(); removeMovieClip(_parent); } }
Symbol 71 MovieClip Frame 1
this.play();
Symbol 71 MovieClip Frame 11
_parent.gotoAndStop(random(6));
Symbol 71 MovieClip Frame 69
_parent.gotoAndStop(random(6));
Symbol 71 MovieClip Frame 79
_parent._parent.gotoAndStop(3);
Symbol 82 MovieClip Frame 191
_parent.gotoAndStop(1);
Symbol 88 MovieClip Frame 1
_parent._parent._parent.jumper.gotoAndStop(2);
Symbol 88 MovieClip Frame 46
_parent._parent._parent.jumper.gotoAndStop(1); _parent.gotoAndStop(1);
Symbol 89 MovieClip Frame 1
stop(); _parent.jumper.gotoAndStop(1);
Symbol 89 MovieClip Frame 2
stop(); _parent.jumper.gotoAndStop(1);
Symbol 89 MovieClip Frame 4
stop(); _parent.jumper.gotoAndStop(1);
Symbol 89 MovieClip Frame 5
stop(); _parent.jumper.gotoAndStop(1);
Symbol 89 MovieClip Frame 6
stop(); _parent.jumper.gotoAndStop(1);
Symbol 89 MovieClip Frame 7
stop(); _parent.jumper.gotoAndStop(1);
Symbol 95 MovieClip Frame 17
_parent.gotoAndStop(1);
Symbol 114 MovieClip Frame 1
play();
Symbol 114 MovieClip Frame 58
_parent.gotoAndStop(1);
Symbol 117 MovieClip Frame 1
this._alpha = 0; this.gotoAndStop(random(5)); stop(); onEnterFrame = function () { xsp = 2; _parent._parent._xscale = 100; _parent._parent._x = _parent._parent._x - xsp; };
Symbol 117 MovieClip Frame 2
onEnterFrame = function () { xsp = 3; _parent._parent._xscale = -100; _parent._parent._x = _parent._parent._x + xsp; };
Symbol 117 MovieClip Frame 3
onEnterFrame = function () { xsp = 3; xsp--; _parent._parent._y = _parent._parent._y - xsp; };
Symbol 118 MovieClip [sprout1] Frame 1
stop();
Symbol 120 MovieClip Frame 1
_alpha = 0; stop(); onEnterFrame = function () { spd = 0; _parent._y = _parent._y - spd; }; stop();
Symbol 120 MovieClip Frame 2
onEnterFrame = function () { spd = 14; _parent._y = _parent._y - spd; _parent._x = _parent._x + (random(3) - 5); };
Symbol 122 MovieClip Frame 11
stop();
Symbol 140 MovieClip Frame 25
_parent._parent.jumper.gotoAndStop(1);
Symbol 140 MovieClip Frame 65
stop(); _parent._parent.removeMovieClip();
Symbol 148 MovieClip Frame 1
var 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 148 MovieClip Frame 22
stop(); this.unloadMovie();
Symbol 149 MovieClip Frame 1
stop(); this.gotoAndStop(random(11));
Symbol 152 MovieClip Frame 1
var 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;
Instance of Symbol 44 MovieClip in Symbol 152 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.unloadMovie(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 156 MovieClip Frame 10
stop();
Symbol 167 MovieClip Frame 1
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; stop(); gotoAndStop(random(11));
Symbol 180 MovieClip Frame 1
gotoAndStop(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 183 MovieClip Frame 1
var 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 183 MovieClip Frame 2
stop();
Instance of Symbol 167 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 167 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 167 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 180 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 167 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 167 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 167 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 167 MovieClip in Symbol 184 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 184 MovieClip Frame 81
_parent.removeMovieClip();
Symbol 185 MovieClip Frame 55
stop(); _parent.removeMovieClip(); _parent._parent.removeMovieClip();
Symbol 218 MovieClip Frame 1
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(5) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode; var fall = 2;
Symbol 218 MovieClip Frame 33
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 = 0; this.ySp = 0; this.rota = 20; this.onEnterFrame = explode;
Symbol 220 MovieClip Frame 1
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(5) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;
Symbol 220 MovieClip Frame 40
_parent.removeMovieClip();
Symbol 222 MovieClip Frame 1
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(5) - 5; this.ySp = random(5) - 8; this.rota = random(5) - 5; this.onEnterFrame = explode;
Symbol 222 MovieClip Frame 35
_parent.removeMovieClip();
Symbol 224 MovieClip Frame 1
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(5) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;
Symbol 224 MovieClip Frame 31
_parent.removeMovieClip();
Symbol 225 MovieClip Frame 1
stop(); gotoAndStop(random(7));
Instance of Symbol 218 MovieClip in Symbol 225 MovieClip Frame 4
onClipEvent (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 220 MovieClip in Symbol 225 MovieClip Frame 5
onClipEvent (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 222 MovieClip in Symbol 225 MovieClip Frame 5
onClipEvent (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 167 MovieClip in Symbol 225 MovieClip Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 167 MovieClip in Symbol 225 MovieClip Frame 5
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 242 MovieClip [flamegib] Frame 1
var 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.onEnterFrame = explode;
Symbol 242 MovieClip [flamegib] Frame 25
stop();
Symbol 243 MovieClip Frame 51
stop(); _parent._parent.removeMovieClip();
Symbol 270 MovieClip [ammog] Frame 24
stop();
Symbol 324 MovieClip Frame 1
this._alpha = "0";
Symbol 324 MovieClip Frame 50
this._alpha = "0"; _parent.removeMovieClip();
Symbol 325 MovieClip Frame 55
stop(); stop();
Symbol 326 MovieClip Frame 1
stop(); gotoAndStop(random(5));
Symbol 326 MovieClip Frame 2
stop();
Symbol 326 MovieClip Frame 3
stop();
Symbol 329 MovieClip [smoke] Frame 1
onEnterFrame = function () { this._rotation = this._rotation + (random(4) + 5); };
Symbol 330 MovieClip Frame 1
play();
Instance of Symbol 329 MovieClip [smoke] in Symbol 330 MovieClip Frame 1
onClipEvent (load) { speed = random(5) + 3; } onClipEvent (enterFrame) { this._y = this._y - 5; this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { delete this.onEnterFrame; removeMovieClip(this); } }
Instance of Symbol 329 MovieClip [smoke] in Symbol 330 MovieClip Frame 1
onClipEvent (load) { speed = random(5) + 13; } onClipEvent (enterFrame) { this._y = this._y - 9; this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { delete this.onEnterFrame; removeMovieClip(this); } }
Instance of Symbol 329 MovieClip [smoke] in Symbol 330 MovieClip Frame 5
onClipEvent (load) { speed = random(1) + 3; } onClipEvent (enterFrame) { this._y = this._y - 9; this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { delete this.onEnterFrame; removeMovieClip(this); } }
Instance of Symbol 329 MovieClip [smoke] in Symbol 330 MovieClip Frame 5
onClipEvent (load) { speed = random(9) + 13; } onClipEvent (enterFrame) { this._y = this._y - 9; this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { delete this.onEnterFrame; removeMovieClip(this); } }
Instance of Symbol 329 MovieClip [smoke] in Symbol 330 MovieClip Frame 12
onClipEvent (load) { speed = random(5) + 3; } onClipEvent (enterFrame) { this._y = this._y - 9; this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { delete this.onEnterFrame; removeMovieClip(this); } }
Instance of Symbol 329 MovieClip [smoke] in Symbol 330 MovieClip Frame 12
onClipEvent (load) { speed = random(2) + 6; } onClipEvent (enterFrame) { this._y = this._y - 9; this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { delete this.onEnterFrame; removeMovieClip(this); } }
Instance of Symbol 329 MovieClip [smoke] in Symbol 330 MovieClip Frame 12
onClipEvent (load) { speed = random(5) + 3; } onClipEvent (enterFrame) { this._y = this._y - 9; this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { delete this.onEnterFrame; removeMovieClip(this); } }
Instance of Symbol 329 MovieClip [smoke] in Symbol 330 MovieClip Frame 18
onClipEvent (load) { speed = random(5) + 3; } onClipEvent (enterFrame) { this._y = this._y - 9; this._xscale = this._xscale + this.speed; this._yscale = this._yscale + this.speed; this._alpha = this._alpha - this.speed; if (this._alpha <= 0) { delete this.onEnterFrame; removeMovieClip(this); } }
Symbol 330 MovieClip Frame 81
stop();
Symbol 331 MovieClip [enemy] Frame 1
stop(); 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 118 MovieClip [sprout1] "sprout_main" in Symbol 331 MovieClip [enemy] Frame 1
onClipEvent (load) { var mspeed = 2; var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 4; var maxJump = -18; var touchingGround = false; }
Instance of Symbol 37 MovieClip [box_alive] "box_alive" in Symbol 331 MovieClip [enemy] Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero.hurtbox)) { _root.life = _root.life - 1; _root.lifebar.nextFrame(); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 331 MovieClip [enemy] Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 37 MovieClip [box_alive] "box_alive" in Symbol 331 MovieClip [enemy] Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 1; _root.lifebar.nextFrame(); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 331 MovieClip [enemy] Frame 2
onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 331 MovieClip [enemy] Frame 3
onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 37 MovieClip [box_alive] "box_alive" in Symbol 331 MovieClip [enemy] Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 1; _root.lifebar.nextFrame(); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 331 MovieClip [enemy] Frame 4
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Symbol 341 MovieClip [gib] Frame 1
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(10)); stop();
Symbol 364 MovieClip Frame 120
_parent.unloadMovie();
Symbol 365 MovieClip [pirate_bullet] Frame 1
onEnterFrame = function () { this._x = this._x - 3; };
Instance of Symbol 37 MovieClip [box_alive] in Symbol 365 MovieClip [pirate_bullet] Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero.hurtbox)) { _parent.unloadMovie(); _root.life = _root.life - 25; _root.lifebar.nextFrame(); _root.lifebar.nextFrame(); _root.lifebar.nextFrame(); } }
Symbol 368 MovieClip [switcher] Frame 1
stop(); _alpha = 0;
Symbol 368 MovieClip [switcher] Frame 2
var fall = 2; var gravi = ((_parent.gravi = random(1) - 1)); var explode = function () { _parent._x = _parent._x + _parent.xSp; _parent.ySp = _parent.ySp - gravi; _parent._y = _parent._y + _parent.ySp; _parent._rotation = _parent._rotation + _parent.rota; }; _parent.xSp = random(1) - 1; _parent.ySp = random(2) - 3; _parent.onEnterFrame = explode; _parent.touchingGround = false;
Symbol 386 MovieClip Frame 1
gotoAndStop(random(3));
Symbol 387 MovieClip [particle] Frame 1
stop(); 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 386 MovieClip in Symbol 387 MovieClip [particle] Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground._x, _y)) { _parent.rota = 0; _parent.gravi = 1; _parent.xSp = 0; _parent.ySp = 0; } }
Instance of Symbol 386 MovieClip in Symbol 387 MovieClip [particle] Frame 46
onClipEvent (enterFrame) { if (this.hitTest(_root.ground._x, _y)) { _parent.rota = 0; _parent.gravi = 1; _parent.xSp = 0; _parent.ySp = 0; } }
Instance of Symbol 386 MovieClip in Symbol 387 MovieClip [particle] Frame 48
onClipEvent (enterFrame) { if (this.hitTest(_root.ground._x, _y)) { _parent.rota = 0; _parent.gravi = 1; _parent.xSp = 0; _parent.ySp = 0; } }
Instance of Symbol 386 MovieClip in Symbol 387 MovieClip [particle] Frame 50
onClipEvent (enterFrame) { if (this.hitTest(_root.ground._x, _y)) { _parent.rota = 0; _parent.gravi = 1; _parent.xSp = 0; _parent.ySp = 0; } }
Symbol 388 MovieClip [particle_explode] Frame 1
play();
Instance of Symbol 387 MovieClip [particle] "shard" in Symbol 388 MovieClip [particle_explode] Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = 0; this._y = this._y - 30; } }
Symbol 388 MovieClip [particle_explode] Frame 60
stop(); this.unloadMovie();
Symbol 399 MovieClip Frame 1
play();
Symbol 399 MovieClip Frame 31
stop(); this.removeMovieClip();
Symbol 400 MovieClip Frame 1
stop(); rota = 10; onEnterFrame = function () { this._rotation = this._rotation + rota; };
Instance of Symbol 44 MovieClip in Symbol 400 MovieClip Frame 1
onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].gotoAndStop(6); _parent.nextFrame(); } c++; } if (this.hitTest(_root.crate.crate_alive)) { _root.crate.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys13.crys_alive)) { _root.ground.crys13.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys14.crys_alive)) { _root.ground.crys14.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys15.crys_alive)) { _root.ground.crys15.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys16.crys_alive)) { _root.ground.crys16.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys17.crys_alive)) { _root.ground.crys17.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crys18.crys_alive)) { _root.ground.crys18.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ground.crate.crate_alive)) { _root.crate.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate2.crate_alive)) { _root.crate2.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate3.crate_alive)) { _root.crate3.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate4.crate_alive)) { _root.crate4.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate5.crate_alive)) { _root.crate5.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); _parent.nextFrame(); } if (this.shot.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz9.buzz_alive)) { _root.buzz9.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz10.buzz_alive)) { _root.buzz10.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz11.buzz_alive)) { _root.buzz11.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz12.buzz_alive)) { _root.buzz12.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.buzz13.buzz_alive)) { _root.buzz13.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.wall1.wall_alive)) { _root.wall1.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.wall2.wall_alive)) { _root.wall2.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.wall3.wall_alive)) { _root.wall3.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.wall4.wall_alive)) { _root.wall4.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.wall5.wall_alive)) { _root.wall5.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g5.node)) { _root.tank1.g5.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g8.node)) { _root.tank1.g8.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g9.node)) { _root.tank1.g9.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g1.node)) { _root.tank1.g1.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g10.node)) { _root.tank1.g10.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g12.eye)) { _root.tank1.g12.eye.play()(); this.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank1.g2.node)) { _root.tank1.g2.nextFrame(); this.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g10.node)) { _root.tank2.g10.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g12.node)) { _root.tank2.g12.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank2.g12.eye)) { _root.tank2.g12.eye.play()(); this.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g4.node)) { _root.tank3.g4.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g5.node)) { _root.tank3.g5.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g6.node)) { _root.tank3.g6.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g7.node)) { _root.tank3.g7.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g8.node)) { _root.tank3.g8.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g9.node)) { _root.tank3.g9.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g10.node)) { _root.tank3.g10.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g11.node)) { _root.tank3.g11.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g12.node)) { _root.tank3.g12.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank3.g12.eye)) { _root.tank3.g12.eye.play()(); this.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g1.node)) { _root.tank4.g1.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g2.node)) { _root.tank4.g2.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g3.node)) { _root.tank4.g3.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g4.node)) { _root.tank4.g4.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g12.node)) { _root.tank4.g12.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g12.eye)) { _root.tank4.g12.eye.play()(); this.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g5.node)) { _root.tank4.g5.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g6.node)) { _root.tank4.g6.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g7.node)) { _root.tank4.g7.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g8.node)) { _root.tank4.g8.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g9.node)) { _root.tank4.g9.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g10.node)) { _root.tank4.g10.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.tank4.g11.node)) { _root.tank4.g11.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.blister1.lips.node)) { _root.blister1.lips.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.blister2.lips.node)) { _root.blister2.lips.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.blister3.lips.node)) { _root.blister3.lips.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.blister4.lips.node)) { _root.blister4.lips.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.blister5.lips.node)) { _root.blister5.lips.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.blister6.lips.node)) { _root.blister6.lips.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.blister7.lips.node)) { _root.blister7.lips.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.blister8.lips.node)) { _root.blister8.lips.nextFrame(); _parent.nextFrame(); } 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); _parent.nextFrame(); } 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); _parent.nextFrame(); } if (this.hitTest(_root.ench1.torso.bodyshot)) { _root.ench1.torso.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); _parent.nextFrame(); } 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); _parent.nextFrame(); } 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); _parent.nextFrame(); } 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); _parent.nextFrame(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.legs.legs1.part1.legbox)) { _root.ench2.legs.legs1.part1.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench2.legs.legs1.part2.legbox)) { _root.ench2.legs.legs1.part2.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench2.torso.bodyshot)) { _root.ench2.torso.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench2.head1.head_destruct.head.headshot)) { _root.ench2.head1.head_destruct.head.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench2.legs.legs1.part3.legbox)) { _root.ench2.legs.legshit.part3.nextFrame(); _root.ench2.legs.legs1.part3.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench2.legs.legs1.part4.legbox)) { _root.ench2.legs.legshit.part4.nextFrame(); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.shield.shieldhitter)) { _root.ench1.shield.play(); _root.ench1.shield.shieldmain.gotoAndPlay(2); _parent.nextFrame(); } if (this.hitTest(_root.ench2.shield.shieldhitter)) { _root.ench2.shield.nextFrame(); _root.ench2.shield.shieldmain.gotoAndPlay(2); _parent.nextFrame(); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm1.armhit.arm_hitbox)) { _root.ench2.arm1.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm2.armhit.arm_hitbox)) { _root.ench2.arm2.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ground.wall1.wall_alive)) { _root.ground.wall1.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ceiling1.wall_alive)) { _root.ceiling1.nextFrame(); _parent.nextFrame(); } if (this.hitTest(_root.ench2.wingleft)) { _root.ench2.wingleft.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench1.wingleft)) { _root.ench1.wingleft.gotoAndStop(2); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench2.wingright)) { _root.ench2.wingright.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench1.wingright)) { _root.ench1.wingright.gotoAndStop(2); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); _parent.nextFrame(); } 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); _parent.nextFrame(); } 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); _parent.nextFrame(); } if (this.hitTest(_root.ench1.torso.bodyshot)) { _root.ench1.torso.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); _parent.nextFrame(); } 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); _parent.nextFrame(); } 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); _parent.nextFrame(); } 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); _parent.nextFrame(); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.legs.legs1.part1.legbox)) { _root.ench3.legs.legs1.part1.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench3.legs.legs1.part2.legbox)) { _root.ench3.legs.legs1.part2.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench3.torso.bodyshot)) { _root.ench3.torso.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench3.head1.head_destruct.head.headshot)) { _root.ench3.head1.head_destruct.head.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench3.legs.legs1.part3.legbox)) { _root.ench3.legs.legshit.part3.nextFrame(); _root.ench3.legs.legs1.part3.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench3.legs.legs1.part4.legbox)) { _root.ench3.legs.legshit.part4.nextFrame(); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); _parent.nextFrame(); } if (this.hitTest(_root.ench3.arm1.armhit.arm_hitbox)) { _root.ench3.arm1.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.arm2.armhit.arm_hitbox)) { _root.ench3.arm2.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.shield.shieldhitter)) { _root.ench3.shield.play(); _root.ench3.shield.shieldmain.gotoAndPlay(2); _parent.nextFrame(); } if (this.hitTest(_root.ench4.shield.shieldhitter)) { _root.ench4.shield.nextFrame(); _root.ench4.shield.shieldmain.gotoAndPlay(2); _parent.nextFrame(); } if (this.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench4.arm1.armhit.arm_hitbox)) { _root.ench4.arm1.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _parent.nextFrame(); } if (this.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _parent.nextFrame(); } if (this.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _parent.nextFrame(); } if (this.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _parent.nextFrame(); } if (this.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _parent.nextFrame(); } if (this.hitTest(_root.ench4.head1.head_destruct.head.headshot)) { _root.ench4.head1.head_destruct.head.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench4.legs.legs1.part3.legbox)) { _root.ench4.legs.legshit.part3.nextFrame(); _root.ench4.legs.legs1.part3.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _parent.nextFrame(); } if (this.hitTest(_root.ench4.legs.legs2.part4.legbox)) { _root.ench4.legs.legshit.part4.nextFrame(); _root.ench4.legs.legs2.part4.nextFrame(); _root.ench4.legs.legs2.gotoAndPlay(17); _root.ench4.legs.legs2.part4.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _parent.nextFrame(); } if (this.hitTest(_root.ench4.torso.bodyshot)) { _root.ench4.torso.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); _parent.nextFrame(); } }
Symbol 400 MovieClip Frame 2
stop(); rota = 0; _parent.xSp = 0;
Instance of Symbol 399 MovieClip in Symbol 400 MovieClip Frame 2
onClipEvent (enterFrame) { c = 0; while (c < _root.boxArray.length) { if (this.hitTest(_root["box" + c].box_alive)) { _root.boxArray[c].gotoAndStop(5); } c++; } if (this.hitTest(_root.crate.crate_alive)) { _root.crate.nextFrame(); } if (this.hitTest(_root.ground.crys1.crys_alive)) { _root.ground.crys1.nextFrame(); } if (this.hitTest(_root.ground.crys2.crys_alive)) { _root.ground.crys2.nextFrame(); } if (this.hitTest(_root.ground.crys3.crys_alive)) { _root.ground.crys3.nextFrame(); } if (this.hitTest(_root.ground.crys4.crys_alive)) { _root.ground.crys4.nextFrame(); } if (this.hitTest(_root.ground.crys5.crys_alive)) { _root.ground.crys5.nextFrame(); } if (this.hitTest(_root.ground.crys6.crys_alive)) { _root.ground.crys6.nextFrame(); } if (this.hitTest(_root.ground.crys7.crys_alive)) { _root.ground.crys7.nextFrame(); } if (this.hitTest(_root.ground.crys8.crys_alive)) { _root.ground.crys8.nextFrame(); } if (this.hitTest(_root.ground.crys9.crys_alive)) { _root.ground.crys9.nextFrame(); } if (this.hitTest(_root.ground.crys10.crys_alive)) { _root.ground.crys10.nextFrame(); } if (this.hitTest(_root.ground.crys11.crys_alive)) { _root.ground.crys11.nextFrame(); } if (this.hitTest(_root.ground.crys12.crys_alive)) { _root.ground.crys12.nextFrame(); } if (this.hitTest(_root.ground.crys13.crys_alive)) { _root.ground.crys13.nextFrame(); } if (this.hitTest(_root.ground.crys14.crys_alive)) { _root.ground.crys14.nextFrame(); } if (this.hitTest(_root.ground.crys15.crys_alive)) { _root.ground.crys15.nextFrame(); } if (this.hitTest(_root.ground.crys16.crys_alive)) { _root.ground.crys16.nextFrame(); } if (this.hitTest(_root.ground.crys17.crys_alive)) { _root.ground.crys17.nextFrame(); } if (this.hitTest(_root.ground.crys18.crys_alive)) { _root.ground.crys18.nextFrame(); } if (this.hitTest(_root.ground.crate.crate_alive)) { _root.crate.nextFrame(); } if (this.hitTest(_root.crate2.crate_alive)) { _root.crate2.nextFrame(); } if (this.hitTest(_root.crate3.crate_alive)) { _root.crate3.nextFrame(); } if (this.hitTest(_root.crate4.crate_alive)) { _root.crate4.nextFrame(); } if (this.hitTest(_root.crate5.crate_alive)) { _root.crate5.nextFrame(); } if (this.hitTest(_root.crate6.crate_alive)) { _root.crate6.nextFrame(); } if (this.hitTest(_root.crate7.crate_alive)) { _root.crate7.nextFrame(); } if (this.hitTest(_root.crate8.crate_alive)) { _root.crate8.nextFrame(); } if (this.hitTest(_root.crate9.crate_alive)) { _root.crate9.nextFrame(); } if (this.hitTest(_root.crate10.crate_alive)) { _root.crate10.nextFrame(); } if (this.hitTest(_root.crate11.crate_alive)) { _root.crate11.nextFrame(); } if (this.hitTest(_root.crate12.crate_alive)) { _root.crate12.nextFrame(); } if (this.shot.hitTest(_root.buzz1.buzz_alive)) { _root.buzz1.nextFrame(); } if (this.hitTest(_root.buzz2.buzz_alive)) { _root.buzz2.nextFrame(); } if (this.hitTest(_root.buzz3.buzz_alive)) { _root.buzz3.nextFrame(); } if (this.hitTest(_root.buzz4.buzz_alive)) { _root.buzz4.nextFrame(); } if (this.hitTest(_root.buzz5.buzz_alive)) { _root.buzz5.nextFrame(); } if (this.hitTest(_root.buzz6.buzz_alive)) { _root.buzz6.nextFrame(); } if (this.hitTest(_root.buzz7.buzz_alive)) { _root.buzz7.nextFrame(); } if (this.hitTest(_root.buzz8.buzz_alive)) { _root.buzz8.nextFrame(); } if (this.hitTest(_root.buzz9.buzz_alive)) { _root.buzz9.nextFrame(); } 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(); } if (this.hitTest(_root.buzz13.buzz_alive)) { _root.buzz13.nextFrame(); } if (this.hitTest(_root.wall1.wall_alive)) { _root.wall1.nextFrame(); } if (this.hitTest(_root.wall2.wall_alive)) { _root.wall2.nextFrame(); } if (this.hitTest(_root.wall3.wall_alive)) { _root.wall3.nextFrame(); } if (this.hitTest(_root.wall4.wall_alive)) { _root.wall4.nextFrame(); } if (this.hitTest(_root.wall5.wall_alive)) { _root.wall5.nextFrame(); } if (this.hitTest(_root.tank1.g3.node)) { _root.tank1.g3.nextFrame(); } if (this.hitTest(_root.tank1.g4.node)) { _root.tank1.g4.nextFrame(); } if (this.hitTest(_root.tank1.g5.node)) { _root.tank1.g5.nextFrame(); } if (this.hitTest(_root.tank1.g6.node)) { _root.tank1.g6.nextFrame(); } if (this.hitTest(_root.tank1.g7.node)) { _root.tank1.g7.nextFrame(); } if (this.hitTest(_root.tank1.g8.node)) { _root.tank1.g8.nextFrame(); } if (this.hitTest(_root.tank1.g9.node)) { _root.tank1.g9.nextFrame(); } if (this.hitTest(_root.tank1.g1.node)) { _root.tank1.g1.nextFrame(); } if (this.hitTest(_root.tank1.g10.node)) { _root.tank1.g10.nextFrame(); } if (this.hitTest(_root.tank1.g11.node)) { _root.tank1.g11.nextFrame(); } if (this.hitTest(_root.tank1.g12.node)) { _root.tank1.g12.nextFrame(); } if (this.hitTest(_root.tank1.g12.eye)) { _root.tank1.g12.eye.play()(); this.nextFrame(); } if (this.hitTest(_root.tank1.g2.node)) { _root.tank1.g2.nextFrame(); this.nextFrame(); } if (this.hitTest(_root.tank2.g2.node)) { _root.tank2.g2.nextFrame(); } if (this.hitTest(_root.tank2.g3.node)) { _root.tank2.g3.nextFrame(); } if (this.hitTest(_root.tank2.g4.node)) { _root.tank2.g4.nextFrame(); } if (this.hitTest(_root.tank2.g5.node)) { _root.tank2.g5.nextFrame(); } if (this.hitTest(_root.tank2.g6.node)) { _root.tank2.g6.nextFrame(); } if (this.hitTest(_root.tank2.g7.node)) { _root.tank2.g7.nextFrame(); } if (this.hitTest(_root.tank2.g8.node)) { _root.tank2.g8.nextFrame(); } if (this.hitTest(_root.tank2.g9.node)) { _root.tank2.g9.nextFrame(); } if (this.hitTest(_root.tank2.g10.node)) { _root.tank2.g10.nextFrame(); } if (this.hitTest(_root.tank2.g11.node)) { _root.tank2.g11.nextFrame(); } if (this.hitTest(_root.tank2.g12.node)) { _root.tank2.g12.nextFrame(); } if (this.hitTest(_root.tank2.g12.eye)) { _root.tank2.g12.eye.play()(); this.nextFrame(); } if (this.hitTest(_root.tank3.g2.node)) { _root.tank3.g2.nextFrame(); } if (this.hitTest(_root.tank3.g3.node)) { _root.tank3.g3.nextFrame(); } if (this.hitTest(_root.tank3.g4.node)) { _root.tank3.g4.nextFrame(); } if (this.hitTest(_root.tank3.g5.node)) { _root.tank3.g5.nextFrame(); } if (this.hitTest(_root.tank3.g6.node)) { _root.tank3.g6.nextFrame(); } if (this.hitTest(_root.tank3.g7.node)) { _root.tank3.g7.nextFrame(); } if (this.hitTest(_root.tank3.g8.node)) { _root.tank3.g8.nextFrame(); } if (this.hitTest(_root.tank3.g9.node)) { _root.tank3.g9.nextFrame(); } if (this.hitTest(_root.tank3.g10.node)) { _root.tank3.g10.nextFrame(); } if (this.hitTest(_root.tank3.g11.node)) { _root.tank3.g11.nextFrame(); } if (this.hitTest(_root.tank3.g12.node)) { _root.tank3.g12.nextFrame(); } if (this.hitTest(_root.tank3.g12.eye)) { _root.tank3.g12.eye.play()(); this.nextFrame(); } if (this.hitTest(_root.tank4.g1.node)) { _root.tank4.g1.nextFrame(); } if (this.hitTest(_root.tank4.g2.node)) { _root.tank4.g2.nextFrame(); } if (this.hitTest(_root.tank4.g3.node)) { _root.tank4.g3.nextFrame(); } if (this.hitTest(_root.tank4.g4.node)) { _root.tank4.g4.nextFrame(); } if (this.hitTest(_root.tank4.g12.node)) { _root.tank4.g12.nextFrame(); } if (this.hitTest(_root.tank4.g12.eye)) { _root.tank4.g12.eye.play()(); this.nextFrame(); } if (this.hitTest(_root.tank4.g5.node)) { _root.tank4.g5.nextFrame(); } if (this.hitTest(_root.tank4.g6.node)) { _root.tank4.g6.nextFrame(); } if (this.hitTest(_root.tank4.g7.node)) { _root.tank4.g7.nextFrame(); } if (this.hitTest(_root.tank4.g8.node)) { _root.tank4.g8.nextFrame(); } if (this.hitTest(_root.tank4.g9.node)) { _root.tank4.g9.nextFrame(); } if (this.hitTest(_root.tank4.g10.node)) { _root.tank4.g10.nextFrame(); } if (this.hitTest(_root.tank4.g11.node)) { _root.tank4.g11.nextFrame(); } if (this.hitTest(_root.blister1.lips.node)) { _root.blister1.lips.nextFrame(); } if (this.hitTest(_root.blister2.lips.node)) { _root.blister2.lips.nextFrame(); } if (this.hitTest(_root.blister3.lips.node)) { _root.blister3.lips.nextFrame(); } if (this.hitTest(_root.blister4.lips.node)) { _root.blister4.lips.nextFrame(); } if (this.hitTest(_root.blister5.lips.node)) { _root.blister5.lips.nextFrame(); } if (this.hitTest(_root.blister6.lips.node)) { _root.blister6.lips.nextFrame(); } if (this.hitTest(_root.blister7.lips.node)) { _root.blister7.lips.nextFrame(); } if (this.hitTest(_root.blister8.lips.node)) { _root.blister8.lips.nextFrame(); } 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); } 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); } if (this.hitTest(_root.ench1.torso.bodyshot)) { _root.ench1.torso.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); } 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); } 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); } 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); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.legs.legs1.part1.legbox)) { _root.ench2.legs.legs1.part1.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench2.legs.legs1.part2.legbox)) { _root.ench2.legs.legs1.part2.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench2.torso.bodyshot)) { _root.ench2.torso.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench2.head1.head_destruct.head.headshot)) { _root.ench2.head1.head_destruct.head.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench2.legs.legs1.part3.legbox)) { _root.ench2.legs.legshit.part3.nextFrame(); _root.ench2.legs.legs1.part3.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench2.legs.legs1.part4.legbox)) { _root.ench2.legs.legshit.part4.nextFrame(); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.legs.legs1.part4.nextFrame(); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.shield.shieldhitter)) { _root.ench1.shield.play(); _root.ench1.shield.shieldmain.gotoAndPlay(2); } if (this.hitTest(_root.ench2.shield.shieldhitter)) { _root.ench2.shield.nextFrame(); _root.ench2.shield.shieldmain.gotoAndPlay(2); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm1.armhit.arm_hitbox)) { _root.ench2.arm1.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench2.arm2.armhit.arm_hitbox)) { _root.ench2.arm2.armhit.nextFrame(); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ground.wall1.wall_alive)) { _root.ground.wall1.nextFrame(); } if (this.hitTest(_root.ceiling1.wall_alive)) { _root.ceiling1.nextFrame(); } if (this.hitTest(_root.ench2.wingleft)) { _root.ench2.wingleft.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench1.wingleft)) { _root.ench1.wingleft.gotoAndStop(2); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench2.wingright)) { _root.ench2.wingright.gotoAndStop(2); _root.ench2.legs.legs1.gotoAndPlay(17); _root.ench2.head1.head_destruct.gotoAndPlay(31); _root.ench2.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench1.wingright)) { _root.ench1.wingright.gotoAndStop(2); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); } 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); } 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); } if (this.hitTest(_root.ench1.torso.bodyshot)) { _root.ench1.torso.nextFrame(); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top.gotoAndPlay(11); } 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); } 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); } 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); } if (this.hitTest(_root.ench1.arm1.armhit.arm_hitbox)) { _root.ench1.arm1.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench1.arm2.armhit.arm_hitbox)) { _root.ench1.arm2.armhit.nextFrame(); _root.ench1.legs.legs1.gotoAndPlay(17); _root.ench1.head1.head_destruct.gotoAndPlay(31); _root.ench1.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.legs.legs1.part1.legbox)) { _root.ench3.legs.legs1.part1.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench3.legs.legs1.part2.legbox)) { _root.ench3.legs.legs1.part2.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench3.torso.bodyshot)) { _root.ench3.torso.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench3.head1.head_destruct.head.headshot)) { _root.ench3.head1.head_destruct.head.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench3.legs.legs1.part3.legbox)) { _root.ench3.legs.legshit.part3.nextFrame(); _root.ench3.legs.legs1.part3.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench3.legs.legs1.part4.legbox)) { _root.ench3.legs.legshit.part4.nextFrame(); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.legs.legs1.part4.nextFrame(); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench3.arm1.armhit.arm_hitbox)) { _root.ench3.arm1.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.arm2.armhit.arm_hitbox)) { _root.ench3.arm2.armhit.nextFrame(); _root.ench3.legs.legs1.gotoAndPlay(17); _root.ench3.head1.head_destruct.gotoAndPlay(31); _root.ench3.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench3.shield.shieldhitter)) { _root.ench3.shield.play(); _root.ench3.shield.shieldmain.gotoAndPlay(2); } if (this.hitTest(_root.ench4.shield.shieldhitter)) { _root.ench4.shield.nextFrame(); _root.ench4.shield.shieldmain.gotoAndPlay(2); } if (this.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench4.arm1.armhit.arm_hitbox)) { _root.ench4.arm1.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top1.gotoAndPlay(11); } if (this.hitTest(_root.ench4.arm2.armhit.arm_hitbox)) { _root.ench4.arm2.armhit.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.wingleft)) { _root.ench4.wingleft.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.wingright)) { _root.ench4.wingright.gotoAndStop(2); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.head1.head_destruct.head.headshot)) { _root.ench4.head1.head_destruct.head.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); } if (this.hitTest(_root.ench4.legs.legs1.part3.legbox)) { _root.ench4.legs.legshit.part3.nextFrame(); _root.ench4.legs.legs1.part3.nextFrame(); _root.ench4.legs.legs1.gotoAndPlay(17); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.legs.legs2.part4.legbox)) { _root.ench4.legs.legshit.part4.nextFrame(); _root.ench4.legs.legs2.part4.nextFrame(); _root.ench4.legs.legs2.gotoAndPlay(17); _root.ench4.legs.legs2.part4.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); } if (this.hitTest(_root.ench4.torso.bodyshot)) { _root.ench4.torso.nextFrame(); _root.ench4.head1.head_destruct.gotoAndPlay(31); _root.ench4.torso.top.gotoAndPlay(11); } }
Symbol 401 MovieClip [grenader] Frame 1
stop(); onEnterFrame = function () { this._x = _root.hero._x; this._y = _root.hero._y - 30; if (Key.isDown(70)) { this.nextFrame(); } };
Symbol 401 MovieClip [grenader] Frame 2
play(); var fall = 3; var gravi = ((this.gravi = random(0.6) - 0.6)); this._alpha = 100; var explode = function () { _y = (_y - 16); this._x = this._x + this.xSp; this.ySp = this.ySp - gravi; this._y = this._y + this.ySp; this._rotation = this._rotation + rota; _root.cursor.name = "zero"; }; this.xSp = 8; this.ySp = 3; this.onEnterFrame = explode;
Instance of Symbol 37 MovieClip [box_alive] in Symbol 401 MovieClip [grenader] Frame 2
onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 400 MovieClip in Symbol 401 MovieClip [grenader] Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.gotoAndStop(2); _parent.rota = 0; _parent.xSp = 0; _parent.ySp = 0; _parent.fall = 0; } if (this.hitTest(_root.ground.stubble2)) { this.gotoAndStop(8); _parent.rota = 0; _parent.xSp = 0; _parent.ySp = 0; _parent.fall = 0; } }
Symbol 401 MovieClip [grenader] Frame 105
gotoAndStop (1); _root.zero.name = "cursor";
Symbol 426 MovieClip Frame 1
stop(); 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) - 10; this.rota = random(30) - 20; this.onEnterFrame = explode; gotoAndStop(random(7));
Instance of Symbol 44 MovieClip in Symbol 426 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.unloadMovie(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 438 MovieClip Frame 1
this._alpha = 0; play();
Symbol 438 MovieClip Frame 70
stop(); _parent.unloadMovie();
Symbol 439 MovieClip Frame 1
stop();
Symbol 441 MovieClip Frame 1
this._alpha = "0";
Symbol 480 MovieClip Frame 1
stop();
Instance of Symbol 441 MovieClip in Symbol 481 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.nextFrame(); } }
Symbol 483 MovieClip Frame 1
stop(); this._alpha = "0";
Symbol 497 MovieClip Frame 15
stop();
Symbol 511 MovieClip Frame 1
stop(); 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 510 MovieClip in Symbol 511 MovieClip Frame 1
onClipEvent (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 37 MovieClip [box_alive] in Symbol 511 MovieClip Frame 1
/* no clip actions */
Symbol 511 MovieClip Frame 2
var xSp = 0; var ySp = 0; stop(); _root.coins = _root.coins + 1;
Symbol 512 MovieClip Frame 1
stop();
Symbol 512 MovieClip Frame 3
play();
Instance of Symbol 511 MovieClip "coin_grab" in Symbol 512 MovieClip Frame 120
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Symbol 512 MovieClip Frame 121
stop(); this.unloadMovie();
Symbol 518 MovieClip Frame 1
play();
Symbol 518 MovieClip Frame 4
stop();
Symbol 541 MovieClip Frame 1
stop(); this.gotoAndStop(random(10));
Symbol 542 MovieClip Frame 1
play(); var fall = 0.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(15) - 5; this.ySp = random(18) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;
Symbol 542 MovieClip Frame 80
stop(); this.unloadMovie();
Symbol 547 MovieClip Frame 1
play(); 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 547 MovieClip Frame 85
stop();
Symbol 549 MovieClip Frame 1
play(); 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 549 MovieClip Frame 27
stop();
Symbol 560 MovieClip Frame 25
stop();
Symbol 562 MovieClip Frame 1
stop();
Instance of Symbol 542 MovieClip in Symbol 562 MovieClip Frame 8
onClipEvent (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 542 MovieClip in Symbol 562 MovieClip Frame 8
onClipEvent (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 542 MovieClip in Symbol 562 MovieClip Frame 10
onClipEvent (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 542 MovieClip in Symbol 562 MovieClip Frame 10
onClipEvent (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 562 MovieClip Frame 11
play(); onEnterFrame = function () { _root.ceiling1._y = _root.ceiling1._y - 9; _root.ceiling1._rotation = _root.ceiling1._rotation + 6; _root.crate3._y = _root.crate3._y - 15; _root.crate3._x = _root.crate3._x - 6; _root.crate6._y = _root.crate6._y - 18; _root.crate6._x = _root.crate6._x + 7; _root.crate7._y = _root.crate7._y - 17; _root.crate7._x = _root.crate7._x - 9; _root.crate8._y = _root.crate8._y - 15; _root.crate8._x = _root.crate8._x - 5; };
Instance of Symbol 542 MovieClip in Symbol 562 MovieClip Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 562 MovieClip Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 562 MovieClip Frame 50
play(); onEnterFrame = function () { _root.ceiling1._y = _root.ceiling1._y - 0; _root.ceiling1._rotation = _root.ceiling1._rotation + 0; };
Symbol 562 MovieClip Frame 126
stop(); this.removeMovieClip();
Symbol 574 MovieClip Frame 1
stop();
Instance of Symbol 573 MovieClip "gem" in Symbol 574 MovieClip Frame 1
/* no clip actions */
Symbol 575 MovieClip Frame 1
stop();
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 40; _root.hero._y = 210; _root.hero._x = 350; } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 40; _root.hero._y = 210; _root.hero._x = 350; } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 574 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.flamethrower = false; _root.cuttershot = false; _root.rocket = true; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.char.gotoAndStop(4); _root.bulletLifeTimerTotal = 670; _root.bulletSpeed = _root.bulletSpeed + 1; _root.bulletOffset = 1; _root.reloadSpeed = 434; } }
Instance of Symbol 574 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.flamethrower = false; _root.cuttershot = true; _root.ammo = _root.ammo + 170; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.char.gotoAndStop(3); _root.bulletLifeTimerTotal = 670; _root.bulletSpeed = 20; _root.bulletOffset = 0; _root.reloadSpeed = 120; } }
Instance of Symbol 574 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.cuttershot = false; _root.flamethrower = true; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.ammo = _root.ammo + 170; _root.char.gotoAndStop(2); _root.bulletLifeTimerTotal = 21; _root.bulletSpeed = 15; _root.bulletOffset = 13; _root.reloadSpeed = 20; } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 574 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.flamethrower = false; _root.cuttershot = true; _root.ammo = 250; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.char.gotoAndStop(3); _root.bulletLifeTimerTotal = 670; _root.bulletSpeed = 20; _root.bulletOffset = 0; _root.reloadSpeed = 120; } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Instance of Symbol 483 MovieClip in Symbol 575 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.createBox(); } if (this.hitTest(_root.hero)) { unloadMovie (this); } }
Symbol 579 MovieClip Frame 1
stop();
Symbol 579 MovieClip Frame 2
stop();
Symbol 584 MovieClip Frame 1
stop();
Symbol 587 MovieClip Frame 1
this._alpha = 0;
Instance of Symbol 585 MovieClip in Symbol 596 MovieClip Frame 1
onClipEvent (enterFrame) { this.stop(); }
Symbol 596 MovieClip Frame 15
_parent.gotoAndStop(1);
Instance of Symbol 585 MovieClip in Symbol 608 MovieClip Frame 35
onClipEvent (enterFrame) { this.gotoAndStop(2); }
Symbol 608 MovieClip Frame 42
_parent.gotoAndStop(1);
Symbol 610 MovieClip Frame 1
stop(); onEnterFrame = function () { _root.hero.speed = 8; _root.char._y = _root.char._y - 1; };
Instance of Symbol 585 MovieClip in Symbol 610 MovieClip Frame 1
onClipEvent (enterFrame) { this.stop(); }
Symbol 610 MovieClip Frame 2
onEnterFrame = function () { _root.hero.speed = 8; };
Symbol 610 MovieClip Frame 3
onEnterFrame = function () { _root.hero.speed = 8; };
Symbol 610 MovieClip Frame 4
onEnterFrame = function () { _root.char._y = _root.char._y + 20; };
Symbol 615 MovieClip Frame 1
stop();
Symbol 619 MovieClip Frame 1
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._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 624 MovieClip Frame 20
stop();
Symbol 625 MovieClip Frame 1
stop(); 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 37 MovieClip [box_alive] in Symbol 625 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Symbol 625 MovieClip Frame 2
stop(); 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 615 MovieClip "rota_box" in Symbol 625 MovieClip Frame 2
onClipEvent (enterFrame) { this.nextFrame(); }
Instance of Symbol 619 MovieClip in Symbol 625 MovieClip Frame 2
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 2
onClipEvent (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 625 MovieClip Frame 3
var touchingGround = true; var speed = 0; var ysp = 0; play();
Instance of Symbol 34 MovieClip [bullet_explode] in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } }
Instance of Symbol 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } }
Instance of Symbol 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (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 511 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 511 MovieClip in Symbol 625 MovieClip Frame 3
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 619 MovieClip in Symbol 625 MovieClip Frame 182
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 182
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } }
Instance of Symbol 619 MovieClip in Symbol 625 MovieClip Frame 182
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 182
onClipEvent (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 619 MovieClip in Symbol 625 MovieClip Frame 182
onClipEvent (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 37 MovieClip [box_alive] in Symbol 625 MovieClip Frame 182
onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Symbol 625 MovieClip Frame 186
var touchingGround = true; var speed = 0; stop(); this.removeMovieClip();
Symbol 638 MovieClip Frame 1
play(); 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 638 MovieClip Frame 51
stop(); this.unloadMovie();
Symbol 639 MovieClip Frame 1
stop();
Instance of Symbol 37 MovieClip [box_alive] in Symbol 639 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 639 MovieClip Frame 1
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 542 MovieClip in Symbol 639 MovieClip Frame 2
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 2
onClipEvent (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 639 MovieClip Frame 6
play(); var touchingGround = true; var speed = 0;
Instance of Symbol 638 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 638 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 20; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 511 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (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 511 MovieClip in Symbol 639 MovieClip Frame 6
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Symbol 639 MovieClip Frame 127
stop(); this.unloadMovie();
Symbol 652 MovieClip Frame 12
stop();
Symbol 653 MovieClip Frame 1
stop();
Symbol 653 MovieClip Frame 2
onEnterFrame = 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 658 MovieClip Frame 1
play(); 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 658 MovieClip Frame 60
this.removeMovieClip(); stop();
Symbol 659 MovieClip Frame 1
stop();
Symbol 659 MovieClip Frame 2
_parent.drop = _parent.drop - 1; onEnterFrame = 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 542 MovieClip in Symbol 659 MovieClip Frame 2
onClipEvent (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 542 MovieClip in Symbol 659 MovieClip Frame 2
onClipEvent (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 542 MovieClip in Symbol 659 MovieClip Frame 2
onClipEvent (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 542 MovieClip in Symbol 659 MovieClip Frame 2
onClipEvent (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 542 MovieClip in Symbol 659 MovieClip Frame 2
onClipEvent (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 542 MovieClip in Symbol 659 MovieClip Frame 2
onClipEvent (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 542 MovieClip in Symbol 659 MovieClip Frame 2
onClipEvent (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 658 MovieClip in Symbol 659 MovieClip Frame 2
onClipEvent (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 664 MovieClip Frame 1
play(); 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(15) - 5; this.ySp = random(16) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;
Symbol 664 MovieClip Frame 60
stop(); this.removeMovieClip();
Symbol 665 MovieClip Frame 1
stop();
Symbol 665 MovieClip Frame 2
onEnterFrame = 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 676 MovieClip Frame 2
stop();
Symbol 682 MovieClip Frame 14
stop();
Symbol 684 MovieClip Frame 1
play(); 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(15) - 8; this.ySp = random(14) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;
Symbol 684 MovieClip Frame 125
stop(); this.removeMovieClip();
Symbol 686 MovieClip Frame 1
play(); 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 686 MovieClip Frame 144
this.removeMovieClip(); stop();
Symbol 693 MovieClip Frame 5
stop();
Symbol 696 MovieClip Frame 1
stop();
Instance of Symbol 682 MovieClip in Symbol 696 MovieClip Frame 11
onClipEvent (enterFrame) { this.play(); }
Instance of Symbol 684 MovieClip "1" in Symbol 696 MovieClip Frame 12
onClipEvent (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 686 MovieClip "2" in Symbol 696 MovieClip Frame 12
onClipEvent (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 542 MovieClip in Symbol 696 MovieClip Frame 12
onClipEvent (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 542 MovieClip in Symbol 696 MovieClip Frame 12
onClipEvent (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 542 MovieClip in Symbol 696 MovieClip Frame 12
onClipEvent (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 542 MovieClip in Symbol 696 MovieClip Frame 12
onClipEvent (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 696 MovieClip Frame 14
stop(); _parent.g3.gotoAndStop(7);
Instance of Symbol 542 MovieClip in Symbol 696 MovieClip Frame 14
onClipEvent (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 542 MovieClip in Symbol 696 MovieClip Frame 14
onClipEvent (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 542 MovieClip in Symbol 696 MovieClip Frame 14
onClipEvent (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 698 MovieClip Frame 1
stop();
Instance of Symbol 542 MovieClip in Symbol 698 MovieClip Frame 2
onClipEvent (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 703 MovieClip Frame 1
stop();
Instance of Symbol 542 MovieClip in Symbol 703 MovieClip Frame 2
onClipEvent (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 713 MovieClip Frame 4
stop();
Symbol 731 MovieClip Frame 1
play(); var fall = 4; 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.onEnterFrame = explode;
Symbol 736 MovieClip Frame 1
var fall = 4; 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(20) - 10; this.ySp = random(18) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode; this.gotoAndStop(random(3)); this.gotoAndStop(random(4));
Symbol 738 MovieClip Frame 1
stop(); var fall = 4; 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(15) - 5; this.ySp = random(18) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode; this.gotoAndStop(random(3));
Symbol 740 MovieClip Frame 1
stop(); var fall = 4; 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(20) - 5; this.ySp = random(22) - 15; this.rota = random(50) - 20; this.onEnterFrame = explode; this.gotoAndStop(random(3));
Symbol 747 MovieClip Frame 1
play(); var fall = 4; 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(20) - 5; this.ySp = random(22) - 15; this.rota = random(50) - 20; this.onEnterFrame = explode;
Symbol 748 MovieClip Frame 1
stop();
Instance of Symbol 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 15
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 16
onClipEvent (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 736 MovieClip in Symbol 748 MovieClip Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 738 MovieClip in Symbol 748 MovieClip Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 740 MovieClip in Symbol 748 MovieClip Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 736 MovieClip in Symbol 748 MovieClip Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 740 MovieClip in Symbol 748 MovieClip Frame 16
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 748 MovieClip Frame 17
onEnterFrame = function () { _parent.switcher.unloadMovie(); _parent.g2.gotoAndStop(14); _parent.g3.gotoAndStop(12); _parent.g12.gotoAndStop(12); _parent.g1.gotoAndStop(18); _parent.g11.gotoAndStop(6); };
Instance of Symbol 542 MovieClip "7" in Symbol 748 MovieClip Frame 17
onClipEvent (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 542 MovieClip in Symbol 748 MovieClip Frame 17
onClipEvent (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 542 MovieClip "4" in Symbol 748 MovieClip Frame 17
onClipEvent (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 542 MovieClip "1" in Symbol 748 MovieClip Frame 17
onClipEvent (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 747 MovieClip in Symbol 748 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._y = this._y - 5; this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 399 MovieClip "3" in Symbol 748 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.pir1.hit)) { _root.pir1.gotoAndStop(4); } if (this.hitTest(_root.pir2.hit)) { _root.pir2.gotoAndStop(4); } if (this.hitTest(_root.pir3.hit)) { _root.pir3.gotoAndStop(4); } if (this.hitTest(_root.pir4.hit)) { _root.pir4.gotoAndStop(4); } if (this.hitTest(_root.pir5.hit)) { _root.pir5.gotoAndStop(4); } if (this.hitTest(_root.pir6.hit)) { _root.pir6.gotoAndStop(4); } if (this.hitTest(_root.pir7.hit)) { _root.pir7.gotoAndStop(4); } if (this.hitTest(_root.pir8.hit)) { _root.pir8.gotoAndStop(4); } if (this.hitTest(_root.pir9.hit)) { _root.pir9.gotoAndStop(4); } }
Instance of Symbol 747 MovieClip in Symbol 748 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 747 MovieClip in Symbol 748 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = 0; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 752 MovieClip Frame 2
play();
Symbol 752 MovieClip Frame 6
gotoAndStop (1);
Symbol 768 MovieClip Frame 54
stop();
Symbol 769 MovieClip Frame 1
stop();
Instance of Symbol 752 MovieClip "eye3" in Symbol 769 MovieClip Frame 2
onClipEvent (enterFrame) { this.gotoAndPlay(2); }
Instance of Symbol 542 MovieClip in Symbol 769 MovieClip Frame 11
onClipEvent (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 542 MovieClip in Symbol 769 MovieClip Frame 11
onClipEvent (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 542 MovieClip in Symbol 769 MovieClip Frame 11
onClipEvent (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 542 MovieClip in Symbol 769 MovieClip Frame 11
onClipEvent (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 542 MovieClip in Symbol 769 MovieClip Frame 11
onClipEvent (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 769 MovieClip Frame 12
_parent.xsp = 0; _parent.g1.gotoAndStop(20); _parent.g2.gotoAndStop(20); _parent.g11.gotoAndStop(20);
Instance of Symbol 511 MovieClip in Symbol 769 MovieClip Frame 12
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 511 MovieClip in Symbol 769 MovieClip Frame 12
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 511 MovieClip in Symbol 769 MovieClip Frame 12
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 511 MovieClip in Symbol 769 MovieClip Frame 12
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 511 MovieClip in Symbol 769 MovieClip Frame 12
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 511 MovieClip in Symbol 769 MovieClip Frame 12
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Symbol 779 MovieClip Frame 7
stop();
Symbol 784 MovieClip Frame 3
stop();
Symbol 789 MovieClip Frame 1
stop(); this.gotoAndStop(random(4)); 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(13) - 7; this.ySp = random(10) - 13; this.rota = random(3) - 4; this.onEnterFrame = explode;
Symbol 790 MovieClip Frame 1
stop();
Instance of Symbol 542 MovieClip in Symbol 790 MovieClip Frame 10
onClipEvent (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 542 MovieClip in Symbol 790 MovieClip Frame 10
onClipEvent (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 542 MovieClip in Symbol 790 MovieClip Frame 10
onClipEvent (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 542 MovieClip in Symbol 790 MovieClip Frame 10
onClipEvent (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 790 MovieClip Frame 11
_parent.g1.gotoAndStop(2); _parent.g11.gotoAndStop(2);
Instance of Symbol 542 MovieClip in Symbol 790 MovieClip Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 789 MovieClip in Symbol 790 MovieClip Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 789 MovieClip in Symbol 790 MovieClip Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 789 MovieClip in Symbol 790 MovieClip Frame 11
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 791 MovieClip Frame 1
stop(); var ground = _root.ground; var grav = 0; var gravity = 1; var speed = 2; var maxJump = -12; var touchingGround = false; drop = 0; onEnterFrame = function () { this._x = this._x + 3; _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 368 MovieClip [switcher] "switcher" in Symbol 791 MovieClip Frame 1
onClipEvent (load) { _parent.drop = 2; } onClipEvent (enterFrame) { if (_parent.drop == 0) { this.gotoAndStop(2); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 791 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Symbol 796 MovieClip Frame 1
stop(); 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); _rotation = (_rotation + 0); _y = (_y + 0); 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 37 MovieClip [box_alive] in Symbol 796 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 796 MovieClip Frame 2
onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 518 MovieClip "flash" in Symbol 796 MovieClip Frame 2
onClipEvent (load) { this.gotoAndPlay(1); }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 796 MovieClip Frame 3
onClipEvent (enterFrame) { if (_root.hero._x >= 550) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 3
onClipEvent (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 542 MovieClip in Symbol 796 MovieClip Frame 3
onClipEvent (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 518 MovieClip "flash2" in Symbol 796 MovieClip Frame 3
onClipEvent (load) { this.gotoAndPlay(1); }
Instance of Symbol 518 MovieClip "flash3" in Symbol 796 MovieClip Frame 4
onClipEvent (load) { this.gotoAndPlay(1); }
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 5
onClipEvent (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 542 MovieClip in Symbol 796 MovieClip Frame 5
onClipEvent (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 518 MovieClip "flash4" in Symbol 796 MovieClip Frame 5
onClipEvent (load) { this.gotoAndPlay(1); }
Symbol 796 MovieClip Frame 6
play(); this._rotation = 340;
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 6
onClipEvent (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 542 MovieClip in Symbol 796 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 796 MovieClip Frame 6
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 796 MovieClip Frame 121
stop(); this.removeMovieClip();
Symbol 826 MovieClip Frame 16
_parent._parent.gotoAndStop(1);
Symbol 833 MovieClip Frame 19
_parent._parent.gotoAndStop(1);
Symbol 834 MovieClip Frame 1
this.gotoAndStop(random(3)); stop();
Symbol 835 MovieClip Frame 1
stop();
Symbol 849 MovieClip Frame 1
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) - 18; this.rota = random(50) - 20; this.onEnterFrame = explode;
Symbol 860 MovieClip Frame 30
this.unloadMovie();
Symbol 864 MovieClip Frame 1
var fall = 1; 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(16) - 12; this.ySp = random(17) - 18; this.rota = random(6) - 2; this.onEnterFrame = explode; if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } stop(); gotoAndStop(random(11));
Symbol 888 MovieClip Frame 14
_parent._parent.gotoAndStop(1);
Symbol 895 MovieClip Frame 15
_parent._parent.gotoAndStop(1);
Symbol 896 MovieClip Frame 1
stop(); this.gotoAndStop(random(3));
Symbol 897 MovieClip Frame 1
stop();
Symbol 905 MovieClip Frame 59
stop();
Symbol 911 MovieClip Frame 1
var fall = 1; 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(6) - 4; this.ySp = random(7) - 5; this.rota = random(4) - 1; this.onEnterFrame = explode; if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; }
Symbol 911 MovieClip Frame 31
this.unloadMovie();
Symbol 919 MovieClip Frame 1
var fall = 1; 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(6) - 4; this.ySp = random(7) - 5; this.rota = random(4) - 1; this.onEnterFrame = explode; if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; }
Instance of Symbol 911 MovieClip in Symbol 936 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 864 MovieClip in Symbol 936 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 864 MovieClip in Symbol 936 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 864 MovieClip in Symbol 936 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 864 MovieClip in Symbol 936 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 864 MovieClip in Symbol 936 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Symbol 936 MovieClip Frame 51
this.unloadMovie();
Symbol 937 MovieClip Frame 1
gotoAndStop(random(3));
Symbol 938 MovieClip Frame 1
stop(); 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 37 MovieClip [box_alive] "box_alive" in Symbol 938 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero.hurtbox)) { _root.life = _root.life - 5; _root.lifebar.nextFrame(); _root.lifebar.nextFrame(); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 938 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 849 MovieClip in Symbol 938 MovieClip Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 864 MovieClip in Symbol 938 MovieClip Frame 8
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 849 MovieClip in Symbol 938 MovieClip Frame 12
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 849 MovieClip in Symbol 938 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 849 MovieClip in Symbol 938 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 864 MovieClip in Symbol 938 MovieClip Frame 17
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 849 MovieClip in Symbol 938 MovieClip Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 849 MovieClip in Symbol 938 MovieClip Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 849 MovieClip in Symbol 938 MovieClip Frame 24
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 938 MovieClip Frame 25
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 938 MovieClip Frame 26
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Symbol 948 MovieClip Frame 79
_parent._parent.gotoAndStop(2);
Symbol 957 MovieClip Frame 45
_parent._parent.gotoAndStop(1);
Symbol 968 MovieClip Frame 1
onEnterFrame = function () { _parent._parent.xsp = 0.5; _parent._parent._xscale = 100; _parent._parent._x = _parent._parent._x - xsp; }; onEnterFrame = function () { _parent._parent._parent.hit.nextFrame(); };
Symbol 968 MovieClip Frame 75
onEnterFrame = function () { _parent._parent._parent.hit.prevFrame(); };
Symbol 968 MovieClip Frame 76
_parent._parent.gotoAndStop(1);
Symbol 969 MovieClip Frame 1
this.gotoAndStop(random(7));
Symbol 977 MovieClip Frame 70
_parent.gotoAndStop(1);
Symbol 983 MovieClip Frame 22
_parent.gotoAndStop(4);
Symbol 984 MovieClip Frame 1
stop(); this.gotoAndStop(random(5));
Instance of Symbol 44 MovieClip in Symbol 984 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _parent.gotoAndStop(6); } }
Symbol 1001 MovieClip Frame 41
_parent.gotoAndStop(1);
Symbol 1012 MovieClip Frame 46
stop(); _parent.unloadMovie();
Symbol 1012 MovieClip Frame 98
stop(); _parent.unloadMovie();
Symbol 1027 MovieClip Frame 95
_parent.unloadMovie();
Symbol 1032 MovieClip Frame 10
this.stop();
Symbol 1036 MovieClip Frame 1
onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this.unloadMovie(); } }; var fall = 1; 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(3) - 16; this.ySp = random(2) - 13; this.rota = random(1) - 5; this.onEnterFrame = explode; gotoAndStop(random(5));
Instance of Symbol 44 MovieClip in Symbol 1036 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.unloadMovie(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 1042 MovieClip Frame 1
onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } 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; gotoAndStop(random(6));
Symbol 1057 MovieClip Frame 1
onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this.unloadMovie(); } }; var fall = 4; 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(3) - 1; this.ySp = random(3) - 2; this.rota = random(1) - 5; this.onEnterFrame = explode; gotoAndStop(random(10));
Instance of Symbol 44 MovieClip in Symbol 1057 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.unloadMovie(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 1057 MovieClip Frame 2
var fall = 4; 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(3) - 1; this.ySp = random(3) - 2; this.rota = random(1) - 5; this.onEnterFrame = explode;
Symbol 1059 MovieClip Frame 1
onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } 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(7) - 10; this.ySp = random(8) - 15; this.rota = random(10) - 20; this.onEnterFrame = explode; gotoAndStop(random(5));
Symbol 1061 MovieClip Frame 1
onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } 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; gotoAndStop(random(7));
Instance of Symbol 44 MovieClip in Symbol 1061 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.unloadMovie(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 1072 MovieClip Frame 1
onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this.unloadMovie(); } }; var fall = 1; 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(3) - 2; this.ySp = random(4) - 2; this.rota = random(1) - 5; this.onEnterFrame = explode; stop(); this.gotoAndStop(random(7));
Instance of Symbol 44 MovieClip in Symbol 1072 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.unloadMovie(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 1081 MovieClip Frame 1
stop(); gotoAndStop(random(4));
Instance of Symbol 44 MovieClip in Symbol 1081 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.unloadMovie(); _parent.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 1091 MovieClip Frame 58
stop(); _parent.unloadMovie();
Symbol 1102 MovieClip Frame 98
stop(); _parent.unloadMovie();
Symbol 1112 MovieClip Frame 1
onEnterFrame = function () { var gravi = ((this.gravi = random(0.5) - 0.5)); var _local2 = 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 = _local2; }; stop(); gotoAndStop(random(4));
Instance of Symbol 44 MovieClip in Symbol 1112 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent._parent.unloadMovie(); _parent._parent.unloadMovie(); } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Symbol 1113 MovieClip Frame 1
gotoAndStop(random(9)); stop();
Symbol 1113 MovieClip Frame 2
fall = 0; xSp = 0; ySp = 0; grav = 0; rota = 0;
Symbol 1113 MovieClip Frame 4
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(5) - 8; this.rota = random(50) - 20; this.onEnterFrame = explode;
Instance of Symbol 1081 MovieClip in Symbol 1113 MovieClip Frame 4
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.fall = 0; _parent.xSp = 0; _parent._y = _parent._y + 1; _parent.ySp = 0; _parent.grav = 0; _parent.rota = 0; this.gotoAndStop(2); } }
Instance of Symbol 1112 MovieClip in Symbol 1113 MovieClip Frame 7
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.unloadMovie(); } }
Symbol 1116 MovieClip Frame 1
onEnterFrame = function () { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } 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(6) - 2; this.ySp = random(6) - 2; this.rota = random(10) - 20; this.onEnterFrame = explode;
Symbol 1126 MovieClip Frame 19
stop();
Symbol 1127 MovieClip Frame 1
this.gotoAndStop(random(4)); stop();
Symbol 1127 MovieClip Frame 2
var fall = 4; 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(3) - 10; this.rota = random(9) - 2; this.onEnterFrame = explode;
Symbol 1128 MovieClip Frame 1
stop(); 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 37 MovieClip [box_alive] in Symbol 1128 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Symbol 1130 MovieClip Frame 1
stop();
Symbol 1163 MovieClip Frame 1
onLoad = function () { turn = 0; }; onEnterFrame = function () { _parent._x = _parent._x - 0; };
Symbol 1171 MovieClip Frame 3
stop();
Symbol 1200 MovieClip Frame 1
onEnterFrame = 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(13));
Symbol 1201 MovieClip Frame 1
play();
Instance of Symbol 1200 MovieClip in Symbol 1201 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this.unloadMovie(); } }
Symbol 1201 MovieClip Frame 35
stop(); this.unloadMovie();
Symbol 1206 MovieClip Frame 10
stop();
Symbol 1208 MovieClip [tooth] Frame 1
var 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 1209 MovieClip Frame 1
stop();
Symbol 1209 MovieClip Frame 6
_parent._x = _parent._x + 1; onEnterFrame = function () { if (this._x > _root.hero._x) { _parent._x = _parent._x + 3; } else if (this._x < _root.hero._x) { _parent._x = _parent._x - 3; } };
Instance of Symbol 1182 MovieClip in Symbol 1209 MovieClip Frame 6
onClipEvent (load) { this.gotoAndPlay(random(12)); }
Symbol 1209 MovieClip Frame 7
onEnterFrame = function () { this.attachMovie(tooth, t1, _root.getNextHighestDepth); };
Symbol 1209 MovieClip Frame 8
_parent.nextFrame();
Symbol 1214 MovieClip Frame 8
stop();
Symbol 1231 MovieClip Frame 1
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(15) - 10; this.ySp = random(6) - 11; this.rota = random(5) - 10; this.onEnterFrame = explode; stop(); this.gotoAndStop(random(5));
Symbol 1232 MovieClip Frame 1
stop(); 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 37 MovieClip [box_alive] "box_alive" in Symbol 1232 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 1; _root.lifebar.nextFrame(); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 1232 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.life = _root.life - 1; _root.lifebar.nextFrame(); } }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 1232 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 511 MovieClip in Symbol 1232 MovieClip Frame 2
onClipEvent (enterFrame) { stop(); if (this.hitTest(_root.hero)) { this.gotoAndStop(2); } }
Instance of Symbol 1231 MovieClip in Symbol 1232 MovieClip Frame 2
onClipEvent (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 1239 MovieClip Frame 1
_alpha = 0; this.gotoAndPlay(random(120)); onEnterFrame = function () { xsp = 0; };
Symbol 1239 MovieClip Frame 60
onEnterFrame = function () { xsp = 1; _parent._x = _parent._x - xsp; };
Symbol 1239 MovieClip Frame 95
onEnterFrame = function () { xsp = 1; _parent._x = _parent._x + xsp; };
Symbol 1239 MovieClip Frame 119
gotoAndPlay (1);
Symbol 1245 MovieClip Frame 1
this.gotoAndStop(random(4));
Symbol 1247 MovieClip Frame 1
play(); var fall = 0.1; var gravi = ((_parent.gravi = random(1) - 1)); var explode = function () { _parent._x = _parent._x + _parent.xSp; _parent.ySp = _parent.ySp - gravi; _parent._y = _parent._y + _parent.ySp; _parent._rotation = _parent._rotation + _parent.rota; }; _parent.xSp = random(2) - 2; _parent.ySp = random(1) - 8; _parent.onEnterFrame = explode;
Symbol 1248 MovieClip Frame 1
stop();
Instance of Symbol 1241 MovieClip in Symbol 1248 MovieClip Frame 1
onClipEvent (enterFrame) { playerX = this._x; playerY = this._y; rotationDirection = Math.round(90 - ((Math.atan2(_root.hero._x - playerX, _root.hero._y - playerY) * 90) / Math.PI)); this._rotation = rotationDirection; }
Instance of Symbol 37 MovieClip [box_alive] in Symbol 1248 MovieClip Frame 1
onClipEvent (enterFrame) { if (_root.hero._x >= 520) { _parent._x = _parent._x - 8; } if (_root.hero._x <= 150) { _parent._x = _parent._x + 8; } }
Instance of Symbol 542 MovieClip in Symbol 1248 MovieClip Frame 2
onClipEvent (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 542 MovieClip in Symbol 1248 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 1248 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 1248 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 542 MovieClip in Symbol 1248 MovieClip Frame 2
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { this._alpha = "0"; } if (this.hitTest(_root.ground.stubble2)) { this._alpha = "0"; } }
Instance of Symbol 1247 MovieClip in Symbol 1248 MovieClip Frame 3
onClipEvent (enterFrame) { if (this.hitTest(_root.ground.stubble)) { _parent.gotoAndStop(2); } }
Instance of Symbol 574 MovieClip in Symbol 1252 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.flamethrower = false; _root.cuttershot = true; _root.ammo = 250; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.char.gotoAndStop(3); _root.bulletLifeTimerTotal = 670; _root.bulletSpeed = 20; _root.bulletOffset = 0; _root.reloadSpeed = 120; } }
Instance of Symbol 574 MovieClip in Symbol 1252 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.hero)) { _root.cuttershot = false; _root.flamethrower = true; this.nextFrame(); } if (this.hitTest(_root.hero)) { _root.ammo = _root.ammo + 170; _root.char.gotoAndStop(2); _root.bulletLifeTimerTotal = 21; _root.bulletSpeed = 15; _root.bulletOffset = 13; _root.reloadSpeed = 20; } }

Library Items

Symbol 1 GraphicUsed by:9
Symbol 2 GraphicUsed by:9
Symbol 3 GraphicUsed by:9
Symbol 4 GraphicUsed by:9
Symbol 5 GraphicUsed by:9
Symbol 6 GraphicUsed by:9
Symbol 7 GraphicUsed by:9
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClipUses:1 2 3 4 5 6 7 8Used by:16
Symbol 10 GraphicUsed by:15
Symbol 11 GraphicUsed by:15
Symbol 12 GraphicUsed by:15
Symbol 13 GraphicUsed by:15
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:10 11 12 13 14Used by:16
Symbol 16 MovieClip [sprout]Uses:9 15
Symbol 17 BitmapUsed by:18
Symbol 18 GraphicUses:17Used by:54
Symbol 19 BitmapUsed by:20
Symbol 20 GraphicUses:19Used by:21
Symbol 21 MovieClipUses:20Used by:35
Symbol 22 GraphicUsed by:33
Symbol 23 GraphicUsed by:33
Symbol 24 GraphicUsed by:33
Symbol 25 GraphicUsed by:33
Symbol 26 GraphicUsed by:33
Symbol 27 GraphicUsed by:33
Symbol 28 GraphicUsed by:33
Symbol 29 GraphicUsed by:33
Symbol 30 GraphicUsed by:33
Symbol 31 GraphicUsed by:33
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClip [dia_explode]Uses:22 23 24 25 26 27 28 29 30 31 32Used by:34 185 225 243 512 639 1128 1232
Symbol 34 MovieClip [bullet_explode]Uses:33Used by:35 95 331 625 769
Symbol 35 MovieClipUses:21 34Used by:54
Symbol 36 GraphicUsed by:37
Symbol 37 MovieClip [box_alive]Uses:36Used by:54 331 365 401 511 625 639 791 796 938 1128 1232 1248
Symbol 38 BitmapUsed by:39 45 229 238 550 551 552 553
Symbol 39 GraphicUses:38Used by:47 242
Symbol 40 BitmapUsed by:41 46
Symbol 41 GraphicUses:40Used by:47
Symbol 42 GraphicUsed by:44
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:42 43Used by:47 51 152 400 426 439 480 512 562 575 625 653 659 665 696 698 703 748 769 790 938 984 1036 1057 1061 1072 1081 1112 1128 1209 1232 1248
Symbol 45 GraphicUses:38Used by:47
Symbol 46 GraphicUses:40Used by:47
Symbol 47 MovieClipUses:39 41 44 45 46Used by:54
Symbol 48 BitmapUsed by:49 50
Symbol 49 GraphicUses:48Used by:51
Symbol 50 GraphicUses:48Used by:51
Symbol 51 MovieClipUses:49 44 50Used by:54
Symbol 52 GraphicUsed by:53
Symbol 53 MovieClipUses:52Used by:54
Symbol 54 MovieClip [bullet1]Uses:18 35 37 47 51 53
Symbol 55 BitmapUsed by:56
Symbol 56 GraphicUses:55Used by:71
Symbol 57 BitmapUsed by:58
Symbol 58 GraphicUses:57Used by:71
Symbol 59 BitmapUsed by:60
Symbol 60 GraphicUses:59Used by:71
Symbol 61 BitmapUsed by:62
Symbol 62 GraphicUses:61Used by:71
Symbol 63 BitmapUsed by:64
Symbol 64 GraphicUses:63Used by:71
Symbol 65 GraphicUsed by:71
Symbol 66 GraphicUsed by:71
Symbol 67 GraphicUsed by:71
Symbol 68 GraphicUsed by:71
Symbol 69 GraphicUsed by:71
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:56 58 60 62 64 65 66 67 68 69 70Used by:89
Symbol 72 GraphicUsed by:82
Symbol 73 GraphicUsed by:82
Symbol 74 GraphicUsed by:82
Symbol 75 GraphicUsed by:82
Symbol 76 GraphicUsed by:82
Symbol 77 GraphicUsed by:82
Symbol 78 GraphicUsed by:82
Symbol 79 GraphicUsed by:82
Symbol 80 GraphicUsed by:82
Symbol 81 GraphicUsed by:82
Symbol 82 MovieClipUses:72 73 74 75 76 77 78 79 80 81Used by:89
Symbol 83 GraphicUsed by:88
Symbol 84 GraphicUsed by:88
Symbol 85 GraphicUsed by:88
Symbol 86 GraphicUsed by:88
Symbol 87 GraphicUsed by:88
Symbol 88 MovieClipUses:83 84 85 86 87Used by:89
Symbol 89 MovieClipUses:71 82 88Used by:118
Symbol 90 GraphicUsed by:95
Symbol 91 GraphicUsed by:95
Symbol 92 GraphicUsed by:95
Symbol 93 GraphicUsed by:95
Symbol 94 GraphicUsed by:95
Symbol 95 MovieClipUses:90 34 91 92 93 94Used by:118
Symbol 96 GraphicUsed by:114
Symbol 97 GraphicUsed by:114
Symbol 98 GraphicUsed by:114
Symbol 99 GraphicUsed by:114
Symbol 100 GraphicUsed by:114
Symbol 101 GraphicUsed by:114
Symbol 102 GraphicUsed by:114
Symbol 103 GraphicUsed by:114
Symbol 104 GraphicUsed by:114
Symbol 105 GraphicUsed by:114
Symbol 106 GraphicUsed by:114
Symbol 107 GraphicUsed by:114
Symbol 108 GraphicUsed by:114
Symbol 109 GraphicUsed by:114
Symbol 110 GraphicUsed by:114
Symbol 111 GraphicUsed by:114
Symbol 112 GraphicUsed by:114
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113Used by:118
Symbol 115 GraphicUsed by:117
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:115 116Used by:118 835 897 1001 1163
Symbol 118 MovieClip [sprout1]Uses:89 95 114 117Used by:331
Symbol 119 GraphicUsed by:120
Symbol 120 MovieClipUses:119Used by:331
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:331
Symbol 123 GraphicUsed by:140
Symbol 124 GraphicUsed by:140
Symbol 125 GraphicUsed by:140
Symbol 126 GraphicUsed by:140
Symbol 127 GraphicUsed by:140
Symbol 128 GraphicUsed by:140
Symbol 129 GraphicUsed by:140
Symbol 130 GraphicUsed by:140
Symbol 131 GraphicUsed by:140
Symbol 132 GraphicUsed by:140
Symbol 133 GraphicUsed by:140
Symbol 134 GraphicUsed by:140
Symbol 135 GraphicUsed by:140
Symbol 136 GraphicUsed by:140
Symbol 137 GraphicUsed by:140
Symbol 138 GraphicUsed by:140
Symbol 139 GraphicUsed by:140
Symbol 140 MovieClipUses:123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139Used by:225 325 326
Symbol 141 GraphicUsed by:148
Symbol 142 GraphicUsed by:148
Symbol 143 GraphicUsed by:148
Symbol 144 GraphicUsed by:148
Symbol 145 GraphicUsed by:148
Symbol 146 GraphicUsed by:148
Symbol 147 GraphicUsed by:148
Symbol 148 MovieClipUses:141 142 143 144 145 146 147Used by:149
Symbol 149 MovieClipUses:148Used by:185 225 243 769 835 897 938 1113 1127 1209 1232
Symbol 150 BitmapUsed by:151
Symbol 151 GraphicUses:150Used by:152
Symbol 152 MovieClipUses:151 44Used by:185 225 243 325 326 439 480 512 769 938 1128 1232
Symbol 153 GraphicUsed by:156
Symbol 154 GraphicUsed by:156
Symbol 155 GraphicUsed by:156
Symbol 156 MovieClipUses:153 154 155Used by:185 225 243
Symbol 157 GraphicUsed by:167
Symbol 158 GraphicUsed by:167
Symbol 159 GraphicUsed by:167
Symbol 160 GraphicUsed by:167
Symbol 161 GraphicUsed by:167
Symbol 162 GraphicUsed by:167
Symbol 163 GraphicUsed by:167
Symbol 164 GraphicUsed by:167
Symbol 165 GraphicUsed by:167
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:157 158 159 160 161 162 163 164 165 166Used by:184 225
Symbol 168 GraphicUsed by:175
Symbol 169 GraphicUsed by:175
Symbol 170 GraphicUsed by:175
Symbol 171 GraphicUsed by:175
Symbol 172 GraphicUsed by:175
Symbol 173 GraphicUsed by:175
Symbol 174 GraphicUsed by:175
Symbol 175 MovieClipUses:168 169 170 171 172 173 174Used by:180
Symbol 176 GraphicUsed by:180
Symbol 177 GraphicUsed by:180
Symbol 178 GraphicUsed by:180
Symbol 179 GraphicUsed by:180
Symbol 180 MovieClipUses:175 176 177 178 179Used by:184
Symbol 181 GraphicUsed by:183
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClipUses:181 182Used by:184
Symbol 184 MovieClipUses:167 180 183Used by:185 243
Symbol 185 MovieClipUses:156 184 33 152 149Used by:225 331
Symbol 186 GraphicUsed by:218
Symbol 187 GraphicUsed by:218
Symbol 188 GraphicUsed by:218
Symbol 189 GraphicUsed by:218
Symbol 190 GraphicUsed by:218
Symbol 191 GraphicUsed by:218
Symbol 192 GraphicUsed by:218
Symbol 193 GraphicUsed by:218
Symbol 194 GraphicUsed by:218
Symbol 195 GraphicUsed by:218
Symbol 196 GraphicUsed by:218
Symbol 197 GraphicUsed by:218
Symbol 198 GraphicUsed by:218
Symbol 199 GraphicUsed by:218
Symbol 200 GraphicUsed by:218
Symbol 201 GraphicUsed by:218
Symbol 202 GraphicUsed by:218
Symbol 203 GraphicUsed by:218
Symbol 204 GraphicUsed by:218
Symbol 205 GraphicUsed by:218
Symbol 206 GraphicUsed by:218
Symbol 207 GraphicUsed by:218
Symbol 208 GraphicUsed by:218
Symbol 209 GraphicUsed by:218
Symbol 210 GraphicUsed by:218
Symbol 211 GraphicUsed by:218
Symbol 212 GraphicUsed by:218
Symbol 213 GraphicUsed by:218
Symbol 214 GraphicUsed by:218
Symbol 215 GraphicUsed by:218
Symbol 216 GraphicUsed by:218
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClipUses:186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217Used by:225
Symbol 219 GraphicUsed by:220
Symbol 220 MovieClipUses:219Used by:225
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:221Used by:225
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:223Used by:225
Symbol 225 MovieClipUses:140 149 33 152 185 218 220 222 224 167 156Used by:331
Symbol 226 GraphicUsed by:331
Symbol 227 BitmapUsed by:229
Symbol 228 BitmapUsed by:229
Symbol 229 GraphicUses:227 228 38Used by:242
Symbol 230 BitmapUsed by:231
Symbol 231 GraphicUses:230Used by:242
Symbol 232 BitmapUsed by:233
Symbol 233 GraphicUses:232Used by:242
Symbol 234 BitmapUsed by:235 236
Symbol 235 GraphicUses:234Used by:242
Symbol 236 GraphicUses:234Used by:242
Symbol 237 BitmapUsed by:238 241
Symbol 238 GraphicUses:237 38Used by:242
Symbol 239 BitmapUsed by:240
Symbol 240 GraphicUses:239Used by:242
Symbol 241 GraphicUses:237Used by:242
Symbol 242 MovieClip [flamegib]Uses:229 39 231 233 235 236 238 240 241Used by:243 938 1128
Symbol 243 MovieClipUses:156 184 33 152 149 242Used by:326
Symbol 244 GraphicUsed by:257
Symbol 245 GraphicUsed by:257
Symbol 246 GraphicUsed by:257
Symbol 247 GraphicUsed by:257
Symbol 248 GraphicUsed by:257
Symbol 249 GraphicUsed by:257
Symbol 250 GraphicUsed by:257
Symbol 251 GraphicUsed by:257
Symbol 252 GraphicUsed by:257
Symbol 253 GraphicUsed by:257
Symbol 254 GraphicUsed by:257
Symbol 255 GraphicUsed by:257
Symbol 256 GraphicUsed by:257
Symbol 257 MovieClipUses:244 245 246 247 248 249 250 251 252 253 254 255 256Used by:325 326
Symbol 258 GraphicUsed by:325
Symbol 259 GraphicUsed by:325
Symbol 260 GraphicUsed by:325
Symbol 261 GraphicUsed by:270
Symbol 262 GraphicUsed by:270
Symbol 263 GraphicUsed by:270
Symbol 264 GraphicUsed by:270
Symbol 265 GraphicUsed by:270
Symbol 266 GraphicUsed by:270
Symbol 267 GraphicUsed by:270
Symbol 268 GraphicUsed by:270
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClip [ammog]Uses:261 262 263 264 265 266 267 268 269Used by:325 399 511 574
Symbol 271 GraphicUsed by:325
Symbol 272 GraphicUsed by:325
Symbol 273 GraphicUsed by:325
Symbol 274 GraphicUsed by:325
Symbol 275 GraphicUsed by:325
Symbol 276 GraphicUsed by:325
Symbol 277 GraphicUsed by:325
Symbol 278 GraphicUsed by:325
Symbol 279 GraphicUsed by:325
Symbol 280 GraphicUsed by:325
Symbol 281 GraphicUsed by:325
Symbol 282 GraphicUsed by:325
Symbol 283 GraphicUsed by:325
Symbol 284 GraphicUsed by:325
Symbol 285 GraphicUsed by:325
Symbol 286 GraphicUsed by:325
Symbol 287 GraphicUsed by:325
Symbol 288 GraphicUsed by:325
Symbol 289 GraphicUsed by:325
Symbol 290 GraphicUsed by:325
Symbol 291 GraphicUsed by:325
Symbol 292 GraphicUsed by:325
Symbol 293 GraphicUsed by:325
Symbol 294 GraphicUsed by:325
Symbol 295 GraphicUsed by:325
Symbol 296 GraphicUsed by:325
Symbol 297 GraphicUsed by:325
Symbol 298 GraphicUsed by:325
Symbol 299 GraphicUsed by:325
Symbol 300 GraphicUsed by:325
Symbol 301 GraphicUsed by:325
Symbol 302 GraphicUsed by:325
Symbol 303 GraphicUsed by:325
Symbol 304 GraphicUsed by:325
Symbol 305 GraphicUsed by:325
Symbol 306 GraphicUsed by:325
Symbol 307 GraphicUsed by:325
Symbol 308 GraphicUsed by:325
Symbol 309 GraphicUsed by:325
Symbol 310 GraphicUsed by:325
Symbol 311 GraphicUsed by:325
Symbol 312 GraphicUsed by:325
Symbol 313 GraphicUsed by:325
Symbol 314 GraphicUsed by:325
Symbol 315 GraphicUsed by:325
Symbol 316 GraphicUsed by:325
Symbol 317 GraphicUsed by:325
Symbol 318 GraphicUsed by:325
Symbol 319 GraphicUsed by:325
Symbol 320 GraphicUsed by:325
Symbol 321 GraphicUsed by:325
Symbol 322 GraphicUsed by:325
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:323Used by:325
Symbol 325 MovieClipUses:258 259 260 270 271 257 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 140 152 324Used by:326
Symbol 326 MovieClipUses:243 140 257 152 325Used by:331
Symbol 327 BitmapUsed by:328
Symbol 328 GraphicUses:327Used by:329
Symbol 329 MovieClip [smoke]Uses:328Used by:330
Symbol 330 MovieClipUses:329Used by:331 639 696 736 748 769 938 1128 1248
Symbol 331 MovieClip [enemy]Uses:118 120 37 122 34 225 226 185 326 330
Symbol 332 GraphicUsed by:341
Symbol 333 GraphicUsed by:341
Symbol 334 GraphicUsed by:341
Symbol 335 GraphicUsed by:341
Symbol 336 GraphicUsed by:341
Symbol 337 GraphicUsed by:341
Symbol 338 GraphicUsed by:341
Symbol 339 GraphicUsed by:341
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClip [gib]Uses:332 333 334 335 336 337 338 339 340
Symbol 342 GraphicUsed by:349
Symbol 343 GraphicUsed by:349
Symbol 344 GraphicUsed by:349
Symbol 345 GraphicUsed by:349
Symbol 346 GraphicUsed by:349
Symbol 347 GraphicUsed by:349
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClip [cuttershot_explode]Uses:342 343 344 345 346 347 348
Symbol 350 GraphicUsed by:359
Symbol 351 GraphicUsed by:359
Symbol 352 GraphicUsed by:359
Symbol 353 GraphicUsed by:359
Symbol 354 GraphicUsed by:359
Symbol 355 GraphicUsed by:359
Symbol 356 GraphicUsed by:359
Symbol 357 GraphicUsed by:359
Symbol 358 GraphicUsed by:359
Symbol 359 MovieClip [bullgex]Uses:350 351 352 353 354 355 356 357 358
Symbol 360 GraphicUsed by:364
Symbol 361 GraphicUsed by:364
Symbol 362 GraphicUsed by:364
Symbol 363 GraphicUsed by:364
Symbol 364 MovieClipUses:360 361 362 363Used by:365
Symbol 365 MovieClip [pirate_bullet]Uses:37 364Used by:977
Symbol 366 GraphicUsed by:368
Symbol 367 GraphicUsed by:368
Symbol 368 MovieClip [switcher]Uses:366 367Used by:791
Symbol 369 BitmapUsed by:370
Symbol 370 GraphicUses:369Used by:375
Symbol 371 BitmapUsed by:372
Symbol 372 GraphicUses:371Used by:375
Symbol 373 BitmapUsed by:374
Symbol 374 GraphicUses:373Used by:375
Symbol 375 MovieClipUses:370 372 374Used by:386
Symbol 376 GraphicUsed by:380
Symbol 377 GraphicUsed by:380
Symbol 378 GraphicUsed by:380
Symbol 379 GraphicUsed by:380
Symbol 380 MovieClipUses:376 377 378 379Used by:386
Symbol 381 GraphicUsed by:385
Symbol 382 GraphicUsed by:385
Symbol 383 GraphicUsed by:385
Symbol 384 GraphicUsed by:385
Symbol 385 MovieClipUses:381 382 383 384Used by:386
Symbol 386 MovieClipUses:375 380 385Used by:387
Symbol 387 MovieClip [particle]Uses:386Used by:388
Symbol 388 MovieClip [particle_explode]Uses:387Used by:512 574 769 790
Symbol 389 GraphicUsed by:401
Symbol 390 GraphicUsed by:400
Symbol 391 GraphicUsed by:399
Symbol 392 GraphicUsed by:399
Symbol 393 GraphicUsed by:399
Symbol 394 GraphicUsed by:399
Symbol 395 GraphicUsed by:399
Symbol 396 GraphicUsed by:399
Symbol 397 GraphicUsed by:399
Symbol 398 GraphicUsed by:399
Symbol 399 MovieClipUses:391 270 392 393 394 395 396 397 398Used by:400 562 639 659 665 674 696 748 790 796 1128 1248
Symbol 400 MovieClipUses:390 44 399Used by:401
Symbol 401 MovieClip [grenader]Uses:389 37 400Used by:Timeline
Symbol 402 GraphicUsed by:Timeline
Symbol 403 GraphicUsed by:404
Symbol 404 MovieClipUses:403Used by:Timeline
Symbol 405 GraphicUsed by:Timeline
Symbol 406 GraphicUsed by:407
Symbol 407 MovieClipUses:406Used by:Timeline
Symbol 408 GraphicUsed by:575
Symbol 409 GraphicUsed by:481
Symbol 410 BitmapUsed by:411
Symbol 411 GraphicUses:410Used by:412
Symbol 412 MovieClipUses:411Used by:439
Symbol 413 GraphicUsed by:439
Symbol 414 BitmapUsed by:415
Symbol 415 GraphicUses:414Used by:426
Symbol 416 BitmapUsed by:417
Symbol 417 GraphicUses:416Used by:426
Symbol 418 BitmapUsed by:419
Symbol 419 GraphicUses:418Used by:426
Symbol 420 BitmapUsed by:421
Symbol 421 GraphicUses:420Used by:426
Symbol 422 BitmapUsed by:423
Symbol 423 GraphicUses:422Used by:426
Symbol 424 BitmapUsed by:425
Symbol 425 GraphicUses:424Used by:426
Symbol 426 MovieClipUses:415 44 417 419 421 423 425Used by:439 480
Symbol 427 GraphicUsed by:439
Symbol 428 GraphicUsed by:439
Symbol 429 GraphicUsed by:439
Symbol 430 GraphicUsed by:439
Symbol 431 GraphicUsed by:439
Symbol 432 GraphicUsed by:439
Symbol 433 GraphicUsed by:439
Symbol 434 GraphicUsed by:439
Symbol 435 GraphicUsed by:439
Symbol 436 GraphicUsed by:439
Symbol 437 GraphicUsed by:438
Symbol 438 MovieClipUses:437Used by:439 480 1201 1231
Symbol 439 MovieClipUses:412 44 413 426 152 427 428 429 430 431 432 433 434 435 436 438Used by:481
Symbol 440 GraphicUsed by:441
Symbol 441 MovieClipUses:440Used by:481
Symbol 442 GraphicUsed by:480
Symbol 443 GraphicUsed by:480
Symbol 444 GraphicUsed by:480
Symbol 445 GraphicUsed by:480
Symbol 446 GraphicUsed by:480
Symbol 447 GraphicUsed by:480
Symbol 448 GraphicUsed by:480
Symbol 449 GraphicUsed by:480
Symbol 450 GraphicUsed by:480
Symbol 451 GraphicUsed by:480
Symbol 452 GraphicUsed by:480
Symbol 453 GraphicUsed by:480
Symbol 454 GraphicUsed by:480
Symbol 455 GraphicUsed by:480
Symbol 456 GraphicUsed by:480
Symbol 457 GraphicUsed by:480
Symbol 458 GraphicUsed by:480
Symbol 459 GraphicUsed by:480
Symbol 460 GraphicUsed by:480
Symbol 461 GraphicUsed by:480
Symbol 462 GraphicUsed by:480
Symbol 463 GraphicUsed by:480
Symbol 464 GraphicUsed by:480
Symbol 465 GraphicUsed by:480
Symbol 466 GraphicUsed by:480
Symbol 467 GraphicUsed by:480
Symbol 468 GraphicUsed by:480
Symbol 469 GraphicUsed by:480
Symbol 470 GraphicUsed by:480
Symbol 471 GraphicUsed by:480
Symbol 472 GraphicUsed by:480
Symbol 473 GraphicUsed by:480
Symbol 474 GraphicUsed by:480
Symbol 475 GraphicUsed by:480
Symbol 476 GraphicUsed by:480
Symbol 477 GraphicUsed by:480
Symbol 478 GraphicUsed by:480
Symbol 479 GraphicUsed by:480
Symbol 480 MovieClipUses:442 44 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 426 152 438Used by:481
Symbol 481 MovieClipUses:409 439 441 480Used by:575
Symbol 482 GraphicUsed by:483
Symbol 483 MovieClipUses:482Used by:575
Symbol 484 GraphicUsed by:512
Symbol 485 BitmapUsed by:486
Symbol 486 GraphicUses:485Used by:512
Symbol 487 GraphicUsed by:512
Symbol 488 GraphicUsed by:497
Symbol 489 GraphicUsed by:497
Symbol 490 GraphicUsed by:497
Symbol 491 GraphicUsed by:497
Symbol 492 GraphicUsed by:497
Symbol 493 GraphicUsed by:497
Symbol 494 GraphicUsed by:497
Symbol 495 GraphicUsed by:497
Symbol 496 GraphicUsed by:497
Symbol 497 MovieClipUses:488 489 490 491 492 493 494 495 496Used by:512
Symbol 498 GraphicUsed by:512
Symbol 499 SoundUsed by:512
Symbol 500 GraphicUsed by:512
Symbol 501 GraphicUsed by:510
Symbol 502 GraphicUsed by:510
Symbol 503 GraphicUsed by:510
Symbol 504 GraphicUsed by:510
Symbol 505 GraphicUsed by:510
Symbol 506 GraphicUsed by:510
Symbol 507 GraphicUsed by:510
Symbol 508 GraphicUsed by:510
Symbol 509 GraphicUsed by:510
Symbol 510 MovieClipUses:501 502 503 504 505 506 507 508 509Used by:511
Symbol 511 MovieClipUses:510 37 270Used by:512 625 639 769 1232
Symbol 512 MovieClipUses:484 44 486 487 388 33 497 498 152 499 500 511Used by:575 1252
Symbol 513 BitmapUsed by:514
Symbol 514 GraphicUses:513Used by:515
Symbol 515 MovieClipUses:514Used by:562 796
Symbol 516 GraphicUsed by:518
Symbol 517 GraphicUsed by:518
Symbol 518 MovieClipUses:516 517Used by:562 796
Symbol 519 GraphicUsed by:562
Symbol 520 BitmapUsed by:521
Symbol 521 GraphicUses:520Used by:541
Symbol 522 BitmapUsed by:523
Symbol 523 GraphicUses:522Used by:541
Symbol 524 BitmapUsed by:525
Symbol 525 GraphicUses:524Used by:541
Symbol 526 BitmapUsed by:527
Symbol 527 GraphicUses:526Used by:541
Symbol 528 BitmapUsed by:529
Symbol 529 GraphicUses:528Used by:541
Symbol 530 BitmapUsed by:531
Symbol 531 GraphicUses:530Used by:541
Symbol 532 GraphicUsed by:536
Symbol 533 GraphicUsed by:536
Symbol 534 GraphicUsed by:536
Symbol 535 GraphicUsed by:536
Symbol 536 MovieClipUses:532 533 534 535Used by:541
Symbol 537 BitmapUsed by:538
Symbol 538 GraphicUses:537Used by:541
Symbol 539 BitmapUsed by:540
Symbol 540 GraphicUses:539Used by:541
Symbol 541 MovieClipUses:521 523 525 527 529 531 536 538 540Used by:542
Symbol 542 MovieClipUses:541Used by:562 639 659 696 698 703 748 769 790 796 1248
Symbol 543 GraphicUsed by:562
Symbol 544 GraphicUsed by:562
Symbol 545 GraphicUsed by:562
Symbol 546 GraphicUsed by:547
Symbol 547 MovieClipUses:546Used by:562 796
Symbol 548 GraphicUsed by:549
Symbol 549 MovieClipUses:548Used by:562 796
Symbol 550 GraphicUses:38Used by:560
Symbol 551 GraphicUses:38Used by:560
Symbol 552 GraphicUses:38Used by:560
Symbol 553 GraphicUses:38Used by:560
Symbol 554 GraphicUsed by:560
Symbol 555 GraphicUsed by:560
Symbol 556 GraphicUsed by:560
Symbol 557 GraphicUsed by:560
Symbol 558 GraphicUsed by:560
Symbol 559 GraphicUsed by:560
Symbol 560 MovieClipUses:550 551 552 553 554 555 556 557 558 559Used by:562 639 696 748 769 796 1248
Symbol 561 GraphicUsed by:562
Symbol 562 MovieClipUses:515 44 518 519 542 399 543 544 545 547 549 560 561Used by:575 1252  Timeline
Symbol 563 GraphicUsed by:573
Symbol 564 GraphicUsed by:573
Symbol 565 GraphicUsed by:573
Symbol 566 GraphicUsed by:573
Symbol 567 GraphicUsed by:573
Symbol 568 GraphicUsed by:573
Symbol 569 GraphicUsed by:573
Symbol 570 GraphicUsed by:573
Symbol 571 GraphicUsed by:573
Symbol 572 GraphicUsed by:573
Symbol 573 MovieClipUses:563 564 565 566 567 568 569 570 571 572Used by:574
Symbol 574 MovieClipUses:573 388 270Used by:575 1252
Symbol 575 MovieClipUses:408 481 483 512 44 562 574Used by:Timeline
Symbol 576 GraphicUsed by:579
Symbol 577 GraphicUsed by:579
Symbol 578 GraphicUsed by:579
Symbol 579 MovieClipUses:576 577 578Used by:Timeline
Symbol 580 GraphicUsed by:610
Symbol 581 GraphicUsed by:584
Symbol 582 GraphicUsed by:584
Symbol 583 GraphicUsed by:584
Symbol 584 MovieClipUses:581 582 583Used by:585
Symbol 585 MovieClipUses:584Used by:596 608 610
Symbol 586 GraphicUsed by:587
Symbol 587 MovieClipUses:586Used by:610
Symbol 588 GraphicUsed by:596
Symbol 589 GraphicUsed by:596
Symbol 590 GraphicUsed by:596
Symbol 591 GraphicUsed by:596
Symbol 592 GraphicUsed by:596
Symbol 593 GraphicUsed by:596
Symbol 594 GraphicUsed by:596
Symbol 595 GraphicUsed by:596
Symbol 596 MovieClipUses:588 585 589 590 591 592 593 594 595Used by:610
Symbol 597 GraphicUsed by:608
Symbol 598 GraphicUsed by:608
Symbol 599 GraphicUsed by:608
Symbol 600 GraphicUsed by:608
Symbol 601 GraphicUsed by:608
Symbol 602 GraphicUsed by:608
Symbol 603 GraphicUsed by:608
Symbol 604 GraphicUsed by:608
Symbol 605 GraphicUsed by:608
Symbol 606 GraphicUsed by:608
Symbol 607 GraphicUsed by:608
Symbol 608 MovieClipUses:597 585 598 599 600 601 602 603 604 605 606 607Used by:610
Symbol 609 GraphicUsed by:610
Symbol 610 MovieClipUses:580 585 587 596 608 609Used by:Timeline
Symbol 611 BitmapUsed by:612
Symbol 612 GraphicUses:611Used by:615
Symbol 613 BitmapUsed by:614
Symbol 614 GraphicUses:613Used by:615
Symbol 615 MovieClipUses:612 614Used by:625
Symbol 616 GraphicUsed by:619
Symbol 617 GraphicUsed by:619
Symbol 618 GraphicUsed by:619
Symbol 619 MovieClipUses:616 617 618Used by:625
Symbol 620 GraphicUsed by:624
Symbol 621 GraphicUsed by:624
Symbol 622 GraphicUsed by:624
Symbol 623 GraphicUsed by:624
Symbol 624 MovieClipUses:620 621 622 623Used by:625
Symbol 625 MovieClipUses:44 615 37 619 34 624 511Used by:Timeline
Symbol 626 BitmapUsed by:627
Symbol 627 GraphicUses:626Used by:631
Symbol 628 GraphicUsed by:631
Symbol 629 GraphicUsed by:631
Symbol 630 GraphicUsed by:631
Symbol 631 MovieClipUses:627 628 629 630Used by:639
Symbol 632 GraphicUsed by:639
Symbol 633 GraphicUsed by:639
Symbol 634 GraphicUsed by:639
Symbol 635 GraphicUsed by:639
Symbol 636 GraphicUsed by:639
Symbol 637 GraphicUsed by:638
Symbol 638 MovieClipUses:637Used by:639
Symbol 639 MovieClipUses:631 37 632 542 33 399 633 330 634 635 636 638 511 560Used by:Timeline
Symbol 640 GraphicUsed by:791
Symbol 641 GraphicUsed by:645
Symbol 642 GraphicUsed by:645
Symbol 643 GraphicUsed by:645
Symbol 644 GraphicUsed by:645
Symbol 645 MovieClipUses:641 642 643 644Used by:653
Symbol 646 GraphicUsed by:652
Symbol 647 GraphicUsed by:652
Symbol 648 GraphicUsed by:652
Symbol 649 GraphicUsed by:652
Symbol 650 GraphicUsed by:652
Symbol 651 GraphicUsed by:652
Symbol 652 MovieClipUses:646 647 648 649 650 651Used by:653
Symbol 653 MovieClipUses:645 44 652Used by:791
Symbol 654 BitmapUsed by:655
Symbol 655 GraphicUses:654Used by:656
Symbol 656 MovieClipUses:655Used by:659
Symbol 657 GraphicUsed by:658
Symbol 658 MovieClipUses:657Used by:659
Symbol 659 MovieClipUses:656 44 399 542 658Used by:791
Symbol 660 BitmapUsed by:661
Symbol 661 GraphicUses:660Used by:662
Symbol 662 MovieClipUses:661Used by:665
Symbol 663 GraphicUsed by:664
Symbol 664 MovieClipUses:663Used by:665
Symbol 665 MovieClipUses:662 44 399 664Used by:791
Symbol 666 GraphicUsed by:696
Symbol 667 BitmapUsed by:668 669 670 671
Symbol 668 GraphicUses:667Used by:674
Symbol 669 GraphicUses:667Used by:674
Symbol 670 GraphicUses:667Used by:674
Symbol 671 GraphicUses:667Used by:674
Symbol 672 GraphicUsed by:674
Symbol 673 GraphicUsed by:674
Symbol 674 MovieClipUses:668 669 670 399 671 672 673Used by:696
Symbol 675 GraphicUsed by:676
Symbol 676 MovieClipUses:675Used by:696
Symbol 677 GraphicUsed by:682
Symbol 678 GraphicUsed by:682
Symbol 679 GraphicUsed by:682
Symbol 680 GraphicUsed by:682
Symbol 681 GraphicUsed by:682
Symbol 682 MovieClipUses:677 678 679 680 681Used by:696
Symbol 683 GraphicUsed by:684
Symbol 684 MovieClipUses:683Used by:696
Symbol 685 GraphicUsed by:686
Symbol 686 MovieClipUses:685Used by:696
Symbol 687 GraphicUsed by:696
Symbol 688 GraphicUsed by:693
Symbol 689 GraphicUsed by:693
Symbol 690 GraphicUsed by:693
Symbol 691 GraphicUsed by:693
Symbol 692 GraphicUsed by:693
Symbol 693 MovieClipUses:688 689 690 691 692Used by:696
Symbol 694 GraphicUsed by:696
Symbol 695 GraphicUsed by:696
Symbol 696 MovieClipUses:666 674 44 676 682 684 686 687 693 694 542 399 330 560 695Used by:791
Symbol 697 GraphicUsed by:698
Symbol 698 MovieClipUses:697 44 542Used by:791
Symbol 699 GraphicUsed by:702
Symbol 700 GraphicUsed by:702
Symbol 701 GraphicUsed by:702
Symbol 702 MovieClipUses:699 700 701Used by:703
Symbol 703 MovieClipUses:702 44 542Used by:791
Symbol 704 GraphicUsed by:748
Symbol 705 BitmapUsed by:706
Symbol 706 GraphicUses:705Used by:708
Symbol 707 GraphicUsed by:708
Symbol 708 MovieClipUses:706 707Used by:748
Symbol 709 GraphicUsed by:748
Symbol 710 GraphicUsed by:713
Symbol 711 GraphicUsed by:713
Symbol 712 GraphicUsed by:713
Symbol 713 MovieClipUses:710 711 712Used by:748
Symbol 714 GraphicUsed by:748
Symbol 715 GraphicUsed by:748
Symbol 716 GraphicUsed by:748
Symbol 717 GraphicUsed by:748
Symbol 718 GraphicUsed by:748
Symbol 719 GraphicUsed by:748
Symbol 720 GraphicUsed by:748
Symbol 721 GraphicUsed by:748
Symbol 722 GraphicUsed by:748
Symbol 723 GraphicUsed by:748
Symbol 724 GraphicUsed by:748
Symbol 725 GraphicUsed by:748
Symbol 726 GraphicUsed by:731
Symbol 727 GraphicUsed by:731
Symbol 728 GraphicUsed by:731
Symbol 729 GraphicUsed by:731
Symbol 730 GraphicUsed by:731
Symbol 731 MovieClipUses:726 727 728 729 730Used by:748
Symbol 732 GraphicUsed by:748
Symbol 733 GraphicUsed by:736
Symbol 734 GraphicUsed by:736
Symbol 735 GraphicUsed by:736
Symbol 736 MovieClipUses:733 734 330 735Used by:748
Symbol 737 GraphicUsed by:738
Symbol 738 MovieClipUses:737Used by:748
Symbol 739 GraphicUsed by:740
Symbol 740 MovieClipUses:739Used by:748
Symbol 741 GraphicUsed by:746
Symbol 742 GraphicUsed by:746
Symbol 743 GraphicUsed by:746
Symbol 744 GraphicUsed by:746
Symbol 745 GraphicUsed by:746
Symbol 746 MovieClipUses:741 742 743 744 745Used by:747
Symbol 747 MovieClipUses:746Used by:748
Symbol 748 MovieClipUses:704 708 44 709 713 714 715 716 717 718 719 720 721 722 723 724 725 399 542 731 330 560 732 736 738 740 747Used by:791
Symbol 749 GraphicUsed by:752
Symbol 750 GraphicUsed by:752
Symbol 751 GraphicUsed by:752
Symbol 752 MovieClipUses:749 750 751Used by:769
Symbol 753 GraphicUsed by:769
Symbol 754 GraphicUsed by:769
Symbol 755 GraphicUsed by:769
Symbol 756 GraphicUsed by:769
Symbol 757 GraphicUsed by:769
Symbol 758 GraphicUsed by:769
Symbol 759 GraphicUsed by:768
Symbol 760 GraphicUsed by:768
Symbol 761 GraphicUsed by:768
Symbol 762 GraphicUsed by:768
Symbol 763 GraphicUsed by:768
Symbol 764 GraphicUsed by:768
Symbol 765 GraphicUsed by:768
Symbol 766 GraphicUsed by:768
Symbol 767 GraphicUsed by:768
Symbol 768 MovieClipUses:759 760 761 762 763 764 765 766 767Used by:769
Symbol 769 MovieClipUses:752 753 44 754 755 152 756 560 757 758 542 149 34 768 330 511 388Used by:791
Symbol 770 BitmapUsed by:771 772 773 774
Symbol 771 GraphicUses:770Used by:775
Symbol 772 GraphicUses:770Used by:775
Symbol 773 GraphicUses:770Used by:775
Symbol 774 GraphicUses:770Used by:775
Symbol 775 MovieClipUses:771 772 773 774Used by:790
Symbol 776 GraphicUsed by:779
Symbol 777 GraphicUsed by:779
Symbol 778 GraphicUsed by:779
Symbol 779 MovieClipUses:776 777 778Used by:790
Symbol 780 GraphicUsed by:790
Symbol 781 GraphicUsed by:784
Symbol 782 GraphicUsed by:784
Symbol 783 GraphicUsed by:784
Symbol 784 MovieClipUses:781 782 783Used by:790
Symbol 785 GraphicUsed by:790
Symbol 786 GraphicUsed by:789
Symbol 787 GraphicUsed by:789
Symbol 788 GraphicUsed by:789
Symbol 789 MovieClipUses:786 787 788Used by:790
Symbol 790 MovieClipUses:775 44 779 388 780 399 542 784 785 789Used by:791
Symbol 791 MovieClipUses:640 653 659 665 696 698 703 748 769 790 368 37Used by:Timeline
Symbol 792 GraphicUsed by:796
Symbol 793 GraphicUsed by:796
Symbol 794 GraphicUsed by:796
Symbol 795 GraphicUsed by:796
Symbol 796 MovieClipUses:515 37 518 792 542 399 793 794 795 547 549 560Used by:Timeline
Symbol 797 FontUsed by:798 1143 1144 1145 1253 1254 1255 1256
Symbol 798 EditableTextUses:797Used by:Timeline
Symbol 799 FontUsed by:800
Symbol 800 TextUses:799Used by:Timeline
Symbol 801 GraphicUsed by:802
Symbol 802 MovieClipUses:801Used by:Timeline
Symbol 803 GraphicUsed by:819
Symbol 804 GraphicUsed by:819
Symbol 805 GraphicUsed by:819
Symbol 806 GraphicUsed by:819
Symbol 807 GraphicUsed by:819
Symbol 808 GraphicUsed by:819
Symbol 809 GraphicUsed by:819
Symbol 810 GraphicUsed by:819
Symbol 811 GraphicUsed by:819
Symbol 812 GraphicUsed by:819
Symbol 813 GraphicUsed by:819
Symbol 814 GraphicUsed by:819
Symbol 815 GraphicUsed by:819
Symbol 816 GraphicUsed by:819
Symbol 817 GraphicUsed by:819
Symbol 818 GraphicUsed by:819
Symbol 819 MovieClipUses:803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818Used by:835
Symbol 820 GraphicUsed by:826
Symbol 821 GraphicUsed by:826
Symbol 822 GraphicUsed by:826
Symbol 823 GraphicUsed by:826
Symbol 824 GraphicUsed by:826
Symbol 825 GraphicUsed by:826
Symbol 826 MovieClipUses:820 821 822 823 824 825Used by:834
Symbol 827 GraphicUsed by:833
Symbol 828 GraphicUsed by:833
Symbol 829 GraphicUsed by:833
Symbol 830 GraphicUsed by:833
Symbol 831 GraphicUsed by:833
Symbol 832 GraphicUsed by:833
Symbol 833 MovieClipUses:827 828 829 830 831 832Used by:834
Symbol 834 MovieClipUses:826 833Used by:835
Symbol 835 MovieClipUses:819 117 834 149Used by:938
Symbol 836 GraphicUsed by:848
Symbol 837 GraphicUsed by:848
Symbol 838 GraphicUsed by:848
Symbol 839 GraphicUsed by:848
Symbol 840 GraphicUsed by:848
Symbol 841 GraphicUsed by:848
Symbol 842 GraphicUsed by:848
Symbol 843 GraphicUsed by:848
Symbol 844 GraphicUsed by:848
Symbol 845 GraphicUsed by:848
Symbol 846 GraphicUsed by:848
Symbol 847 GraphicUsed by:848
Symbol 848 MovieClipUses:836 837 838 839 840 841 842 843 844 845 846 847Used by:849
Symbol 849 MovieClipUses:848Used by:938
Symbol 850 GraphicUsed by:864
Symbol 851 GraphicUsed by:860
Symbol 852 GraphicUsed by:860
Symbol 853 GraphicUsed by:860
Symbol 854 GraphicUsed by:860
Symbol 855 GraphicUsed by:860
Symbol 856 GraphicUsed by:860
Symbol 857 GraphicUsed by:860
Symbol 858 GraphicUsed by:860
Symbol 859 GraphicUsed by:860
Symbol 860 MovieClipUses:851 852 853 854 855 856 857 858 859Used by:864
Symbol 861 GraphicUsed by:864
Symbol 862 GraphicUsed by:864
Symbol 863 GraphicUsed by:864
Symbol 864 MovieClipUses:850 860 861 862 863Used by:936 938
Symbol 865 GraphicUsed by:881
Symbol 866 GraphicUsed by:881
Symbol 867 GraphicUsed by:881
Symbol 868 GraphicUsed by:881
Symbol 869 GraphicUsed by:881
Symbol 870 GraphicUsed by:881
Symbol 871 GraphicUsed by:881
Symbol 872 GraphicUsed by:881
Symbol 873 GraphicUsed by:881
Symbol 874 GraphicUsed by:881
Symbol 875 GraphicUsed by:881
Symbol 876 GraphicUsed by:881
Symbol 877 GraphicUsed by:881
Symbol 878 GraphicUsed by:881
Symbol 879 GraphicUsed by:881
Symbol 880 GraphicUsed by:881
Symbol 881 MovieClipUses:865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880Used by:897
Symbol 882 GraphicUsed by:888
Symbol 883 GraphicUsed by:888
Symbol 884 GraphicUsed by:888
Symbol 885 GraphicUsed by:888
Symbol 886 GraphicUsed by:888
Symbol 887 GraphicUsed by:888
Symbol 888 MovieClipUses:882 883 884 885 886 887Used by:896
Symbol 889 GraphicUsed by:895
Symbol 890 GraphicUsed by:895
Symbol 891 GraphicUsed by:895
Symbol 892 GraphicUsed by:895
Symbol 893 GraphicUsed by:895
Symbol 894 GraphicUsed by:895
Symbol 895 MovieClipUses:889 890 891 892 893 894Used by:896
Symbol 896 MovieClipUses:888 895Used by:897
Symbol 897 MovieClipUses:881 117 896 149Used by:938
Symbol 898 GraphicUsed by:905
Symbol 899 GraphicUsed by:905
Symbol 900 GraphicUsed by:905
Symbol 901 GraphicUsed by:905
Symbol 902 GraphicUsed by:905
Symbol 903 GraphicUsed by:905
Symbol 904 GraphicUsed by:905
Symbol 905 MovieClipUses:898 899 900 901 902 903 904Used by:937
Symbol 906 GraphicUsed by:936
Symbol 907 GraphicUsed by:911
Symbol 908 GraphicUsed by:911
Symbol 909 GraphicUsed by:911
Symbol 910 GraphicUsed by:911
Symbol 911 MovieClipUses:907 908 909 910Used by:936
Symbol 912 GraphicUsed by:919
Symbol 913 GraphicUsed by:919
Symbol 914 GraphicUsed by:919
Symbol 915 GraphicUsed by:919
Symbol 916 GraphicUsed by:919
Symbol 917 GraphicUsed by:919
Symbol 918 GraphicUsed by:919
Symbol 919 MovieClipUses:912 913 914 915 916 917 918Used by:936
Symbol 920 GraphicUsed by:936
Symbol 921 GraphicUsed by:936
Symbol 922 GraphicUsed by:936
Symbol 923 GraphicUsed by:936
Symbol 924 GraphicUsed by:936
Symbol 925 GraphicUsed by:936
Symbol 926 GraphicUsed by:936
Symbol 927 GraphicUsed by:936
Symbol 928 GraphicUsed by:936
Symbol 929 GraphicUsed by:936
Symbol 930 GraphicUsed by:936
Symbol 931 GraphicUsed by:936
Symbol 932 GraphicUsed by:936
Symbol 933 GraphicUsed by:936
Symbol 934 GraphicUsed by:936
Symbol 935 GraphicUsed by:936
Symbol 936 MovieClipUses:906 911 864 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935Used by:937
Symbol 937 MovieClipUses:905 936Used by:938
Symbol 938 MovieClipUses:835 37 44 849 864 149 897 937 152 242 330Used by:Timeline
Symbol 939 BitmapUsed by:940 945
Symbol 940 GraphicUses:939Used by:948
Symbol 941 BitmapUsed by:942
Symbol 942 GraphicUses:941Used by:948
Symbol 943 BitmapUsed by:944 946
Symbol 944 GraphicUses:943Used by:948
Symbol 945 GraphicUses:939Used by:948
Symbol 946 GraphicUses:943Used by:948
Symbol 947 GraphicUsed by:948
Symbol 948 MovieClipUses:940 942 944 945 946 947Used by:984
Symbol 949 GraphicUsed by:957
Symbol 950 GraphicUsed by:957
Symbol 951 GraphicUsed by:957
Symbol 952 GraphicUsed by:957
Symbol 953 GraphicUsed by:957
Symbol 954 GraphicUsed by:957
Symbol 955 GraphicUsed by:957
Symbol 956 GraphicUsed by:957
Symbol 957 MovieClipUses:949 950 951 952 953 954 955 956Used by:969
Symbol 958 GraphicUsed by:968
Symbol 959 GraphicUsed by:968
Symbol 960 GraphicUsed by:968
Symbol 961 GraphicUsed by:968
Symbol 962 GraphicUsed by:968
Symbol 963 GraphicUsed by:968
Symbol 964 GraphicUsed by:968
Symbol 965 GraphicUsed by:968
Symbol 966 GraphicUsed by:968
Symbol 967 GraphicUsed by:968
Symbol 968 MovieClipUses:958 959 960 961 962 963 964 965 966 967Used by:969
Symbol 969 MovieClipUses:957 968Used by:984
Symbol 970 GraphicUsed by:977
Symbol 971 GraphicUsed by:977
Symbol 972 GraphicUsed by:977
Symbol 973 GraphicUsed by:977
Symbol 974 GraphicUsed by:977
Symbol 975 GraphicUsed by:977
Symbol 976 GraphicUsed by:977
Symbol 977 MovieClipUses:970 971 972 973 365 974 975 976Used by:984
Symbol 978 GraphicUsed by:983
Symbol 979 GraphicUsed by:983
Symbol 980 GraphicUsed by:983
Symbol 981 GraphicUsed by:983
Symbol 982 GraphicUsed by:983
Symbol 983 MovieClipUses:978 979 980 981 982Used by:984
Symbol 984 MovieClipUses:948 44 969 977 983Used by:1128
Symbol 985 GraphicUsed by:1001
Symbol 986 GraphicUsed by:1001
Symbol 987 GraphicUsed by:1001
Symbol 988 GraphicUsed by:1001
Symbol 989 GraphicUsed by:1001
Symbol 990 GraphicUsed by:1001
Symbol 991 GraphicUsed by:1001
Symbol 992 GraphicUsed by:1001
Symbol 993 GraphicUsed by:1001
Symbol 994 GraphicUsed by:1001
Symbol 995 GraphicUsed by:1001
Symbol 996 GraphicUsed by:1001
Symbol 997 GraphicUsed by:1001
Symbol 998 GraphicUsed by:1001
Symbol 999 GraphicUsed by:1001
Symbol 1000 GraphicUsed by:1001
Symbol 1001 MovieClipUses:985 117 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000Used by:1128
Symbol 1002 GraphicUsed by:1012
Symbol 1003 GraphicUsed by:1012
Symbol 1004 GraphicUsed by:1012
Symbol 1005 GraphicUsed by:1012
Symbol 1006 GraphicUsed by:1012
Symbol 1007 GraphicUsed by:1012
Symbol 1008 GraphicUsed by:1012
Symbol 1009 GraphicUsed by:1012
Symbol 1010 GraphicUsed by:1012
Symbol 1011 GraphicUsed by:1012
Symbol 1012 MovieClipUses:1002 1003 1004 1005 1006 1007 1008 1009 1010 1011Used by:1113
Symbol 1013 GraphicUsed by:1027
Symbol 1014 GraphicUsed by:1027
Symbol 1015 GraphicUsed by:1027
Symbol 1016 GraphicUsed by:1027
Symbol 1017 GraphicUsed by:1027
Symbol 1018 GraphicUsed by:1027
Symbol 1019 GraphicUsed by:1027
Symbol 1020 GraphicUsed by:1027
Symbol 1021 GraphicUsed by:1027
Symbol 1022 GraphicUsed by:1027
Symbol 1023 GraphicUsed by:1027
Symbol 1024 GraphicUsed by:1027
Symbol 1025 GraphicUsed by:1027
Symbol 1026 GraphicUsed by:1027
Symbol 1027 MovieClipUses:1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026Used by:1113
Symbol 1028 GraphicUsed by:1113 1127
Symbol 1029 GraphicUsed by:1032
Symbol 1030 GraphicUsed by:1032
Symbol 1031 GraphicUsed by:1032
Symbol 1032 MovieClipUses:1029 1030 1031Used by:1113 1128
Symbol 1033 GraphicUsed by:1036
Symbol 1034 GraphicUsed by:1036
Symbol 1035 GraphicUsed by:1036
Symbol 1036 MovieClipUses:1033 44 1034 1035Used by:1113 1127
Symbol 1037 GraphicUsed by:1042
Symbol 1038 GraphicUsed by:1042
Symbol 1039 GraphicUsed by:1042
Symbol 1040 GraphicUsed by:1042
Symbol 1041 GraphicUsed by:1042
Symbol 1042 MovieClipUses:1037 1038 1039 1040 1041Used by:1113 1127
Symbol 1043 GraphicUsed by:1057
Symbol 1044 GraphicUsed by:1057
Symbol 1045 GraphicUsed by:1057
Symbol 1046 GraphicUsed by:1057
Symbol 1047 GraphicUsed by:1057
Symbol 1048 GraphicUsed by:1057
Symbol 1049 GraphicUsed by:1056
Symbol 1050 GraphicUsed by:1056
Symbol 1051 GraphicUsed by:1056
Symbol 1052 GraphicUsed by:1056
Symbol 1053 GraphicUsed by:1056
Symbol 1054 GraphicUsed by:1056
Symbol 1055 GraphicUsed by:1056
Symbol 1056 MovieClipUses:1049 1050 1051 1052 1053 1054 1055Used by:1057
Symbol 1057 MovieClipUses:1043 44 1044 1045 1046 1047 1048 1056Used by:1113 1127
Symbol 1058 GraphicUsed by:1059
Symbol 1059 MovieClipUses:1058Used by:1113 1127
Symbol 1060 GraphicUsed by:1061
Symbol 1061 MovieClipUses:1060 44Used by:1113 1127
Symbol 1062 GraphicUsed by:1072
Symbol 1063 GraphicUsed by:1072
Symbol 1064 GraphicUsed by:1072
Symbol 1065 GraphicUsed by:1071
Symbol 1066 GraphicUsed by:1071
Symbol 1067 GraphicUsed by:1071
Symbol 1068 GraphicUsed by:1071
Symbol 1069 GraphicUsed by:1071
Symbol 1070 GraphicUsed by:1071
Symbol 1071 MovieClipUses:1065 1066 1067 1068 1069 1070Used by:1072
Symbol 1072 MovieClipUses:1062 44 1063 1064 1071Used by:1113 1127
Symbol 1073 GraphicUsed by:1079
Symbol 1074 GraphicUsed by:1079
Symbol 1075 GraphicUsed by:1079
Symbol 1076 GraphicUsed by:1079
Symbol 1077 GraphicUsed by:1079
Symbol 1078 GraphicUsed by:1079
Symbol 1079 MovieClipUses:1073 1074 1075 1076 1077 1078Used by:1081
Symbol 1080 GraphicUsed by:1081
Symbol 1081 MovieClipUses:1079 44 1080Used by:1113 1127
Symbol 1082 GraphicUsed by:1091
Symbol 1083 GraphicUsed by:1091
Symbol 1084 GraphicUsed by:1091
Symbol 1085 GraphicUsed by:1091
Symbol 1086 GraphicUsed by:1091
Symbol 1087 GraphicUsed by:1091
Symbol 1088 GraphicUsed by:1091
Symbol 1089 GraphicUsed by:1091
Symbol 1090 GraphicUsed by:1091
Symbol 1091 MovieClipUses:1082 1083 1084 1085 1086 1087 1088 1089 1090Used by:1113
Symbol 1092 GraphicUsed by:1102
Symbol 1093 GraphicUsed by:1102
Symbol 1094 GraphicUsed by:1102
Symbol 1095 GraphicUsed by:1102
Symbol 1096 GraphicUsed by:1102
Symbol 1097 GraphicUsed by:1102
Symbol 1098 GraphicUsed by:1102
Symbol 1099 GraphicUsed by:1102
Symbol 1100 GraphicUsed by:1102
Symbol 1101 GraphicUsed by:1102
Symbol 1102 MovieClipUses:1092 1093 1094 1095 1096 1097 1098 1099 1100 1101Used by:1113
Symbol 1103 GraphicUsed by:1109
Symbol 1104 GraphicUsed by:1109
Symbol 1105 GraphicUsed by:1109
Symbol 1106 GraphicUsed by:1109
Symbol 1107 GraphicUsed by:1109
Symbol 1108 GraphicUsed by:1109
Symbol 1109 MovieClipUses:1103 1104 1105 1106 1107 1108Used by:1112
Symbol 1110 GraphicUsed by:1111
Symbol 1111 MovieClipUses:1110Used by:1112
Symbol 1112 MovieClipUses:1109 44 1111Used by:1113
Symbol 1113 MovieClipUses:1012 149 1027 1028 1032 1036 1042 1057 1059 1061 1072 1081 1091 1102 1112Used by:1128
Symbol 1114 GraphicUsed by:1128
Symbol 1115 GraphicUsed by:1116
Symbol 1116 MovieClipUses:1115Used by:1127
Symbol 1117 GraphicUsed by:1126
Symbol 1118 GraphicUsed by:1126
Symbol 1119 GraphicUsed by:1126
Symbol 1120 GraphicUsed by:1126
Symbol 1121 GraphicUsed by:1126
Symbol 1122 GraphicUsed by:1126
Symbol 1123 GraphicUsed by:1126
Symbol 1124 GraphicUsed by:1126
Symbol 1125 GraphicUsed by:1126
Symbol 1126 MovieClipUses:1117 1118 1119 1120 1121 1122 1123 1124 1125Used by:1127
Symbol 1127 MovieClipUses:1028 1036 1042 1057 1059 1061 149 1072 1116 1081 1126Used by:1128
Symbol 1128 MovieClipUses:984 44 37 1001 1113 152 33 1114 1032 1127 242 399 330Used by:Timeline
Symbol 1129 GraphicUsed by:1130
Symbol 1130 MovieClipUses:1129Used by:Timeline
Symbol 1131 GraphicUsed by:1142
Symbol 1132 GraphicUsed by:1142
Symbol 1133 GraphicUsed by:1142
Symbol 1134 GraphicUsed by:1142
Symbol 1135 GraphicUsed by:1142
Symbol 1136 GraphicUsed by:1142
Symbol 1137 GraphicUsed by:1142
Symbol 1138 GraphicUsed by:1142
Symbol 1139 GraphicUsed by:1142
Symbol 1140 GraphicUsed by:1142
Symbol 1141 GraphicUsed by:1142
Symbol 1142 MovieClipUses:1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141Used by:Timeline
Symbol 1143 EditableTextUses:797Used by:Timeline
Symbol 1144 EditableTextUses:797Used by:Timeline
Symbol 1145 EditableTextUses:797Used by:Timeline
Symbol 1146 GraphicUsed by:Timeline
Symbol 1147 GraphicUsed by:1150
Symbol 1148 GraphicUsed by:1149
Symbol 1149 MovieClipUses:1148Used by:1150
Symbol 1150 MovieClipUses:1147 1149Used by:1153
Symbol 1151 GraphicUsed by:1152
Symbol 1152 MovieClipUses:1151Used by:1153
Symbol 1153 MovieClipUses:1150 1152Used by:Timeline
Symbol 1154 GraphicUsed by:1155
Symbol 1155 MovieClipUses:1154Used by:Timeline
Symbol 1156 GraphicUsed by:Timeline
Symbol 1157 GraphicUsed by:1163
Symbol 1158 GraphicUsed by:1162
Symbol 1159 GraphicUsed by:1162
Symbol 1160 GraphicUsed by:1162
Symbol 1161 GraphicUsed by:1162
Symbol 1162 MovieClipUses:1158 1159 1160 1161Used by:1163
Symbol 1163 MovieClipUses:1157 1162 117Used by:1232
Symbol 1164 GraphicUsed by:1168
Symbol 1165 GraphicUsed by:1168
Symbol 1166 GraphicUsed by:1168
Symbol 1167 GraphicUsed by:1168
Symbol 1168 MovieClipUses:1164 1165 1166 1167Used by:1209
Symbol 1169 GraphicUsed by:1171
Symbol 1170 GraphicUsed by:1171
Symbol 1171 MovieClipUses:1169 1170Used by:1209
Symbol 1172 GraphicUsed by:1182
Symbol 1173 GraphicUsed by:1182
Symbol 1174 GraphicUsed by:1182
Symbol 1175 GraphicUsed by:1182
Symbol 1176 GraphicUsed by:1182
Symbol 1177 GraphicUsed by:1182
Symbol 1178 GraphicUsed by:1182
Symbol 1179 GraphicUsed by:1182
Symbol 1180 GraphicUsed by:1182
Symbol 1181 GraphicUsed by:1182
Symbol 1182 MovieClipUses:1172 1173 1174 1175 1176 1177 1178 1179 1180 1181Used by:1209
Symbol 1183 GraphicUsed by:1200
Symbol 1184 GraphicUsed by:1200
Symbol 1185 GraphicUsed by:1200
Symbol 1186 GraphicUsed by:1200
Symbol 1187 GraphicUsed by:1200
Symbol 1188 GraphicUsed by:1200
Symbol 1189 GraphicUsed by:1200
Symbol 1190 GraphicUsed by:1197
Symbol 1191 GraphicUsed by:1197
Symbol 1192 GraphicUsed by:1197
Symbol 1193 GraphicUsed by:1197
Symbol 1194 GraphicUsed by:1197
Symbol 1195 GraphicUsed by:1197
Symbol 1196 GraphicUsed by:1197
Symbol 1197 MovieClipUses:1190 1191 1192 1193 1194 1195 1196Used by:1200
Symbol 1198 GraphicUsed by:1200
Symbol 1199 GraphicUsed by:1200
Symbol 1200 MovieClipUses:1183 1184 1185 1186 1187 1188 1189 1197 1198 1199Used by:1201 1209
Symbol 1201 MovieClipUses:1200 438Used by:1209 1232
Symbol 1202 GraphicUsed by:1206
Symbol 1203 GraphicUsed by:1206
Symbol 1204 GraphicUsed by:1206
Symbol 1205 GraphicUsed by:1206
Symbol 1206 MovieClipUses:1202 1203 1204 1205Used by:1209
Symbol 1207 GraphicUsed by:1208
Symbol 1208 MovieClip [tooth]Uses:1207Used by:1209
Symbol 1209 MovieClipUses:1168 44 1171 149 1182 1201 1206 1200 1208Used by:1232
Symbol 1210 GraphicUsed by:1232
Symbol 1211 GraphicUsed by:1214
Symbol 1212 GraphicUsed by:1214
Symbol 1213 GraphicUsed by:1214
Symbol 1214 MovieClipUses:1211 1212 1213Used by:1232
Symbol 1215 GraphicUsed by:1231
Symbol 1216 GraphicUsed by:1217
Symbol 1217 MovieClipUses:1216Used by:1231
Symbol 1218 GraphicUsed by:1231
Symbol 1219 GraphicUsed by:1231
Symbol 1220 GraphicUsed by:1230
Symbol 1221 GraphicUsed by:1230
Symbol 1222 GraphicUsed by:1230
Symbol 1223 GraphicUsed by:1230
Symbol 1224 GraphicUsed by:1230
Symbol 1225 GraphicUsed by:1230
Symbol 1226 GraphicUsed by:1230
Symbol 1227 GraphicUsed by:1230
Symbol 1228 GraphicUsed by:1230
Symbol 1229 GraphicUsed by:1230
Symbol 1230 MovieClipUses:1220 1221 1222 1223 1224 1225 1226 1227 1228 1229Used by:1231
Symbol 1231 MovieClipUses:1215 438 1217 1218 1219 1230Used by:1232
Symbol 1232 MovieClipUses:1163 1209 44 37 1210 1214 511 1231 149 152 1201 33Used by:Timeline
Symbol 1233 GraphicUsed by:1248
Symbol 1234 GraphicUsed by:1236
Symbol 1235 GraphicUsed by:1236
Symbol 1236 MovieClipUses:1234 1235Used by:1248
Symbol 1237 GraphicUsed by:1239
Symbol 1238 GraphicUsed by:1239
Symbol 1239 MovieClipUses:1237 1238Used by:1248
Symbol 1240 GraphicUsed by:1241
Symbol 1241 MovieClipUses:1240Used by:1248
Symbol 1242 GraphicUsed by:1245
Symbol 1243 GraphicUsed by:1245
Symbol 1244 GraphicUsed by:1245
Symbol 1245 MovieClipUses:1242 1243 1244Used by:1247 1248
Symbol 1246 GraphicUsed by:1247
Symbol 1247 MovieClipUses:1246 1245Used by:1248
Symbol 1248 MovieClipUses:1233 1236 44 1239 1241 1245 37 330 542 399 560 1247Used by:Timeline
Symbol 1249 GraphicUsed by:Timeline
Symbol 1250 GraphicUsed by:Timeline
Symbol 1251 GraphicUsed by:1252
Symbol 1252 MovieClipUses:1251 562 512 574Used by:Timeline
Symbol 1253 EditableTextUses:797Used by:Timeline
Symbol 1254 EditableTextUses:797Used by:Timeline
Symbol 1255 EditableTextUses:797Used by:Timeline
Symbol 1256 EditableTextUses:797Used by:Timeline

Instance Names

"bg"Frame 1Symbol 404 MovieClip
"bg2"Frame 1Symbol 407 MovieClip
"nade"Frame 1Symbol 401 MovieClip [grenader]
"ground"Frame 1Symbol 575 MovieClip
"char"Frame 1Symbol 579 MovieClip
"hero"Frame 1Symbol 610 MovieClip
"crate2"Frame 1Symbol 625 MovieClip
"crate4"Frame 1Symbol 625 MovieClip
"crate5"Frame 1Symbol 625 MovieClip
"crate8"Frame 1Symbol 625 MovieClip
"crate9"Frame 1Symbol 625 MovieClip
"crate10"Frame 1Symbol 625 MovieClip
"crate12"Frame 1Symbol 625 MovieClip
"crate11"Frame 1Symbol 625 MovieClip
"buzz4"Frame 1Symbol 639 MovieClip
"buzz3"Frame 1Symbol 639 MovieClip
"buzz7"Frame 1Symbol 639 MovieClip
"buzz6"Frame 1Symbol 639 MovieClip
"crate3"Frame 1Symbol 625 MovieClip
"wall4"Frame 1Symbol 562 MovieClip
"wall5"Frame 1Symbol 562 MovieClip
"buzz9"Frame 1Symbol 639 MovieClip
"buzz10"Frame 1Symbol 639 MovieClip
"buzz11"Frame 1Symbol 639 MovieClip
"buzz12"Frame 1Symbol 639 MovieClip
"buzz13"Frame 1Symbol 639 MovieClip
"tank3"Frame 1Symbol 791 MovieClip
"tank4"Frame 1Symbol 791 MovieClip
"ceiling1"Frame 1Symbol 796 MovieClip
"crate6"Frame 1Symbol 625 MovieClip
"crate"Frame 1Symbol 625 MovieClip
"tank1"Frame 1Symbol 791 MovieClip
"hand"Frame 1Symbol 802 MovieClip
"bgr1"Frame 1Symbol 938 MovieClip
"bgr2"Frame 1Symbol 938 MovieClip
"bgr3"Frame 1Symbol 938 MovieClip
"bgr4"Frame 1Symbol 938 MovieClip
"bgr5"Frame 1Symbol 938 MovieClip
"bgr6"Frame 1Symbol 938 MovieClip
"bgr7"Frame 1Symbol 938 MovieClip
"crate20"Frame 1Symbol 625 MovieClip
"crate13"Frame 1Symbol 625 MovieClip
"crate19"Frame 1Symbol 625 MovieClip
"crate16"Frame 1Symbol 625 MovieClip
"crate15"Frame 1Symbol 625 MovieClip
"crate23"Frame 1Symbol 625 MovieClip
"crate21"Frame 1Symbol 625 MovieClip
"crate17"Frame 1Symbol 625 MovieClip
"crate14"Frame 1Symbol 625 MovieClip
"crate18"Frame 1Symbol 625 MovieClip
"crate22"Frame 1Symbol 625 MovieClip
"pir20"Frame 1Symbol 1128 MovieClip
"pir25"Frame 1Symbol 1128 MovieClip
"pir21"Frame 1Symbol 1128 MovieClip
"pir22"Frame 1Symbol 1128 MovieClip
"pir23"Frame 1Symbol 1128 MovieClip
"pir29"Frame 1Symbol 1128 MovieClip
"pir24"Frame 1Symbol 1128 MovieClip
"pir26"Frame 1Symbol 1128 MovieClip
"pir28"Frame 1Symbol 1128 MovieClip
"pir27"Frame 1Symbol 1128 MovieClip
"lifebar"Frame 1Symbol 1130 MovieClip
"xpbar"Frame 1Symbol 1130 MovieClip
"ammo"Frame 1Symbol 1145 EditableText
"cursor"Frame 1Symbol 1153 MovieClip
"blister1"Frame 1Symbol 1232 MovieClip
"blister2"Frame 1Symbol 1232 MovieClip
"blister4"Frame 1Symbol 1232 MovieClip
"blister3"Frame 1Symbol 1232 MovieClip
"blister5"Frame 1Symbol 1232 MovieClip
"blister8"Frame 1Symbol 1232 MovieClip
"blister6"Frame 1Symbol 1232 MovieClip
"blister7"Frame 1Symbol 1232 MovieClip
"fly1"Frame 1Symbol 1248 MovieClip
"fly2"Frame 1Symbol 1248 MovieClip
"pir1"Frame 1Symbol 1128 MovieClip
"pir2"Frame 1Symbol 1128 MovieClip
"pir5"Frame 1Symbol 1128 MovieClip
"pir4"Frame 1Symbol 1128 MovieClip
"pir3"Frame 1Symbol 1128 MovieClip
"pir9"Frame 1Symbol 1128 MovieClip
"pir7"Frame 1Symbol 1128 MovieClip
"pir8"Frame 1Symbol 1128 MovieClip
"pir6"Frame 1Symbol 1128 MovieClip
"pir17"Frame 1Symbol 1128 MovieClip
"pir11"Frame 1Symbol 1128 MovieClip
"pir14"Frame 1Symbol 1128 MovieClip
"pir12"Frame 1Symbol 1128 MovieClip
"pir10"Frame 1Symbol 1128 MovieClip
"pir18"Frame 1Symbol 1128 MovieClip
"pir15"Frame 1Symbol 1128 MovieClip
"pir13"Frame 1Symbol 1128 MovieClip
"pir16"Frame 1Symbol 1128 MovieClip
"crate2"Frame 2Symbol 625 MovieClip
"crate4"Frame 2Symbol 625 MovieClip
"crate7"Frame 2Symbol 625 MovieClip
"crate8"Frame 2Symbol 625 MovieClip
"crate9"Frame 2Symbol 625 MovieClip
"crate10"Frame 2Symbol 625 MovieClip
"crate3"Frame 2Symbol 625 MovieClip
"ceiling1"Frame 2Symbol 796 MovieClip
"crate6"Frame 2Symbol 625 MovieClip
"crate"Frame 2Symbol 625 MovieClip
"ground"Frame 2Symbol 1252 MovieClip
"lifebar"Frame 2Symbol 1130 MovieClip
"xpbar"Frame 2Symbol 1130 MovieClip
"ammo"Frame 2Symbol 1256 EditableText
"tank1"Frame 2Symbol 791 MovieClip
"tank2"Frame 2Symbol 791 MovieClip
"hero"Frame 2Symbol 610 MovieClip
"pir3"Frame 2Symbol 1128 MovieClip
"pir5"Frame 2Symbol 1128 MovieClip
"pir8"Frame 2Symbol 1128 MovieClip
"pir11"Frame 2Symbol 1128 MovieClip
"pir10"Frame 2Symbol 1128 MovieClip
"pir9"Frame 2Symbol 1128 MovieClip
"pir6"Frame 2Symbol 1128 MovieClip
"pir7"Frame 2Symbol 1128 MovieClip
"bgr1"Frame 2Symbol 938 MovieClip
"bgr2"Frame 2Symbol 938 MovieClip
"bgr3"Frame 2Symbol 938 MovieClip
"blister1"Frame 2Symbol 1232 MovieClip
"blister2"Frame 2Symbol 1232 MovieClip
"blister3"Frame 2Symbol 1232 MovieClip
"blister4"Frame 2Symbol 1232 MovieClip
"blister5"Frame 2Symbol 1232 MovieClip
"blister6"Frame 2Symbol 1232 MovieClip
"pir13"Frame 2Symbol 1128 MovieClip
"pir12"Frame 2Symbol 1128 MovieClip
"pir15"Frame 2Symbol 1128 MovieClip
"pir14"Frame 2Symbol 1128 MovieClip
"head"Symbol 16 MovieClip [sprout] Frame 1Symbol 9 MovieClip
"shot"Symbol 35 MovieClip Frame 1Symbol 21 MovieClip
"rose"Symbol 47 MovieClip Frame 1Symbol 44 MovieClip
"basichit"Symbol 54 MovieClip [bullet1] Frame 1Symbol 35 MovieClip
"bullet2"Symbol 54 MovieClip [bullet1] Frame 2Symbol 47 MovieClip
"rocket"Symbol 54 MovieClip [bullet1] Frame 4Symbol 53 MovieClip
"head"Symbol 118 MovieClip [sprout1] Frame 1Symbol 89 MovieClip
"head"Symbol 180 MovieClip Frame 1Symbol 175 MovieClip
"sprout_main"Symbol 331 MovieClip [enemy] Frame 1Symbol 118 MovieClip [sprout1]
"jumper"Symbol 331 MovieClip [enemy] Frame 1Symbol 120 MovieClip
"box_alive"Symbol 331 MovieClip [enemy] Frame 1Symbol 37 MovieClip [box_alive]
"box_alive"Symbol 331 MovieClip [enemy] Frame 2Symbol 37 MovieClip [box_alive]
"box_alive"Symbol 331 MovieClip [enemy] Frame 3Symbol 37 MovieClip [box_alive]
"shard"Symbol 388 MovieClip [particle_explode] Frame 1Symbol 387 MovieClip [particle]
"rocker"Symbol 439 MovieClip Frame 1Symbol 44 MovieClip
"rocker"Symbol 480 MovieClip Frame 1Symbol 44 MovieClip
"doodad2"Symbol 481 MovieClip Frame 1Symbol 439 MovieClip
"flatland1"Symbol 481 MovieClip Frame 1Symbol 480 MovieClip
"doodad1"Symbol 481 MovieClip Frame 1Symbol 439 MovieClip
"crys_alive"Symbol 512 MovieClip Frame 1Symbol 44 MovieClip
"coin_grab"Symbol 512 MovieClip Frame 120Symbol 511 MovieClip
"wall_alive"Symbol 562 MovieClip Frame 1Symbol 515 MovieClip
"flash"Symbol 562 MovieClip Frame 2Symbol 518 MovieClip
"flash2"Symbol 562 MovieClip Frame 3Symbol 518 MovieClip
"flash3"Symbol 562 MovieClip Frame 4Symbol 518 MovieClip
"flash4"Symbol 562 MovieClip Frame 5Symbol 518 MovieClip
"flash5"Symbol 562 MovieClip Frame 6Symbol 518 MovieClip
"flash6"Symbol 562 MovieClip Frame 7Symbol 518 MovieClip
"gem"Symbol 574 MovieClip Frame 1Symbol 573 MovieClip
"realground"Symbol 575 MovieClip Frame 1Symbol 481 MovieClip
"crys1"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys3"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys2"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys4"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys6"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"stubble"Symbol 575 MovieClip Frame 1Symbol 44 MovieClip
"crys5"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys7"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys8"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys9"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys11"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys12"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys14"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys13"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys15"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys16"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys18"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"crys17"Symbol 575 MovieClip Frame 1Symbol 512 MovieClip
"wall1"Symbol 575 MovieClip Frame 1Symbol 562 MovieClip
"wall2"Symbol 575 MovieClip Frame 1Symbol 562 MovieClip
"wall3"Symbol 575 MovieClip Frame 1Symbol 562 MovieClip
"wall4"Symbol 575 MovieClip Frame 1Symbol 562 MovieClip
"wall5"Symbol 575 MovieClip Frame 1Symbol 562 MovieClip
"head"Symbol 585 MovieClip Frame 1Symbol 584 MovieClip
"hurtbox"Symbol 610 MovieClip Frame 1Symbol 587 MovieClip
"jump"Symbol 610 MovieClip Frame 3Symbol 608 MovieClip
"hurtbox"Symbol 610 MovieClip Frame 4Symbol 587 MovieClip
"crate_alive"Symbol 625 MovieClip Frame 1Symbol 44 MovieClip
"rota_box"Symbol 625 MovieClip Frame 1Symbol 615 MovieClip
"rota_box"Symbol 625 MovieClip Frame 2Symbol 615 MovieClip
"buzz_alive"Symbol 639 MovieClip Frame 1Symbol 631 MovieClip
"1"Symbol 639 MovieClip Frame 2Symbol 399 MovieClip
"3"Symbol 639 MovieClip Frame 3Symbol 399 MovieClip
"2"Symbol 639 MovieClip Frame 4Symbol 399 MovieClip
"4"Symbol 639 MovieClip Frame 5Symbol 399 MovieClip
"4"Symbol 639 MovieClip Frame 5Symbol 399 MovieClip
"node"Symbol 653 MovieClip Frame 1Symbol 44 MovieClip
"bt"Symbol 659 MovieClip Frame 1Symbol 656 MovieClip
"node"Symbol 659 MovieClip Frame 1Symbol 44 MovieClip
"t"Symbol 665 MovieClip Frame 1Symbol 662 MovieClip
"node"Symbol 665 MovieClip Frame 1Symbol 44 MovieClip
"2"Symbol 674 MovieClip Frame 43Symbol 399 MovieClip
"node"Symbol 696 MovieClip Frame 1Symbol 44 MovieClip
"1"Symbol 696 MovieClip Frame 2Symbol 676 MovieClip
"2"Symbol 696 MovieClip Frame 3Symbol 676 MovieClip
"3"Symbol 696 MovieClip Frame 4Symbol 676 MovieClip
"4"Symbol 696 MovieClip Frame 5Symbol 676 MovieClip
"5"Symbol 696 MovieClip Frame 6Symbol 676 MovieClip
"6"Symbol 696 MovieClip Frame 7Symbol 676 MovieClip
"7"Symbol 696 MovieClip Frame 8Symbol 676 MovieClip
"8"Symbol 696 MovieClip Frame 9Symbol 676 MovieClip
"9"Symbol 696 MovieClip Frame 10Symbol 676 MovieClip
"10"Symbol 696 MovieClip Frame 11Symbol 676 MovieClip
"1"Symbol 696 MovieClip Frame 12Symbol 684 MovieClip
"2"Symbol 696 MovieClip Frame 12Symbol 686 MovieClip
"1"Symbol 696 MovieClip Frame 12Symbol 399 MovieClip
"4"Symbol 696 MovieClip Frame 13Symbol 399 MovieClip
"2"Symbol 696 MovieClip Frame 13Symbol 399 MovieClip
"6"Symbol 696 MovieClip Frame 14Symbol 399 MovieClip
"7"Symbol 696 MovieClip Frame 14Symbol 399 MovieClip
"node"Symbol 698 MovieClip Frame 1Symbol 44 MovieClip
"node"Symbol 703 MovieClip Frame 1Symbol 44 MovieClip
"node"Symbol 748 MovieClip Frame 1Symbol 44 MovieClip
"1"Symbol 748 MovieClip Frame 2Symbol 713 MovieClip
"2"Symbol 748 MovieClip Frame 3Symbol 713 MovieClip
"3"Symbol 748 MovieClip Frame 4Symbol 713 MovieClip
"4"Symbol 748 MovieClip Frame 5Symbol 713 MovieClip
"5"Symbol 748 MovieClip Frame 6Symbol 713 MovieClip
"6"Symbol 748 MovieClip Frame 7Symbol 713 MovieClip
"7"Symbol 748 MovieClip Frame 8Symbol 713 MovieClip
"8"Symbol 748 MovieClip Frame 9Symbol 713 MovieClip
"9"Symbol 748 MovieClip Frame 10Symbol 713 MovieClip
"10"Symbol 748 MovieClip Frame 11Symbol 713 MovieClip
"11"Symbol 748 MovieClip Frame 12Symbol 713 MovieClip
"12"Symbol 748 MovieClip Frame 13Symbol 713 MovieClip
"13"Symbol 748 MovieClip Frame 14Symbol 713 MovieClip
"1"Symbol 748 MovieClip Frame 15Symbol 399 MovieClip
"14"Symbol 748 MovieClip Frame 15Symbol 713 MovieClip
"1"Symbol 748 MovieClip Frame 16Symbol 399 MovieClip
"1"Symbol 748 MovieClip Frame 17Symbol 399 MovieClip
"3"Symbol 748 MovieClip Frame 17Symbol 399 MovieClip
"7"Symbol 748 MovieClip Frame 17Symbol 542 MovieClip
"4"Symbol 748 MovieClip Frame 17Symbol 542 MovieClip
"1"Symbol 748 MovieClip Frame 17Symbol 542 MovieClip
"3"Symbol 748 MovieClip Frame 17Symbol 399 MovieClip
"eye"Symbol 769 MovieClip Frame 1Symbol 752 MovieClip
"node"Symbol 769 MovieClip Frame 1Symbol 44 MovieClip
"eye3"Symbol 769 MovieClip Frame 2Symbol 752 MovieClip
"44"Symbol 769 MovieClip Frame 11Symbol 768 MovieClip
"45"Symbol 769 MovieClip Frame 11Symbol 768 MovieClip
"44"Symbol 769 MovieClip Frame 12Symbol 768 MovieClip
"45"Symbol 769 MovieClip Frame 12Symbol 768 MovieClip
"node"Symbol 790 MovieClip Frame 1Symbol 44 MovieClip
"2"Symbol 790 MovieClip Frame 2Symbol 779 MovieClip
"36"Symbol 790 MovieClip Frame 2Symbol 388 MovieClip [particle_explode]
"35"Symbol 790 MovieClip Frame 2Symbol 388 MovieClip [particle_explode]
"3"Symbol 790 MovieClip Frame 3Symbol 779 MovieClip
"31"Symbol 790 MovieClip Frame 3Symbol 388 MovieClip [particle_explode]
"37"Symbol 790 MovieClip Frame 3Symbol 388 MovieClip [particle_explode]
"4"Symbol 790 MovieClip Frame 4Symbol 779 MovieClip
"5"Symbol 790 MovieClip Frame 5Symbol 779 MovieClip
"41"Symbol 790 MovieClip Frame 5Symbol 388 MovieClip [particle_explode]
"40"Symbol 790 MovieClip Frame 5Symbol 388 MovieClip [particle_explode]
"6"Symbol 790 MovieClip Frame 6Symbol 779 MovieClip
"56"Symbol 790 MovieClip Frame 6Symbol 388 MovieClip [particle_explode]
"55"Symbol 790 MovieClip Frame 6Symbol 388 MovieClip [particle_explode]
"7"Symbol 790 MovieClip Frame 7Symbol 779 MovieClip
"8"Symbol 790 MovieClip Frame 8Symbol 779 MovieClip
"9"Symbol 790 MovieClip Frame 9Symbol 779 MovieClip
"34"Symbol 790 MovieClip Frame 11Symbol 399 MovieClip
"g10"Symbol 791 MovieClip Frame 1Symbol 653 MovieClip
"g5"Symbol 791 MovieClip Frame 1Symbol 659 MovieClip
"g9"Symbol 791 MovieClip Frame 1Symbol 659 MovieClip
"g6"Symbol 791 MovieClip Frame 1Symbol 665 MovieClip
"g7"Symbol 791 MovieClip Frame 1Symbol 665 MovieClip
"g8"Symbol 791 MovieClip Frame 1Symbol 665 MovieClip
"g2"Symbol 791 MovieClip Frame 1Symbol 696 MovieClip
"g1"Symbol 791 MovieClip Frame 1Symbol 698 MovieClip
"g11"Symbol 791 MovieClip Frame 1Symbol 703 MovieClip
"g4"Symbol 791 MovieClip Frame 1Symbol 748 MovieClip
"g12"Symbol 791 MovieClip Frame 1Symbol 769 MovieClip
"g3"Symbol 791 MovieClip Frame 1Symbol 790 MovieClip
"switcher"Symbol 791 MovieClip Frame 1Symbol 368 MovieClip [switcher]
"wall_alive"Symbol 796 MovieClip Frame 1Symbol 515 MovieClip
"flash"Symbol 796 MovieClip Frame 2Symbol 518 MovieClip
"flash2"Symbol 796 MovieClip Frame 3Symbol 518 MovieClip
"flash3"Symbol 796 MovieClip Frame 4Symbol 518 MovieClip
"flash4"Symbol 796 MovieClip Frame 5Symbol 518 MovieClip
"gr1"Symbol 938 MovieClip Frame 1Symbol 835 MovieClip
"box_alive"Symbol 938 MovieClip Frame 1Symbol 37 MovieClip [box_alive]
"hit2"Symbol 938 MovieClip Frame 1Symbol 44 MovieClip
"gr1"Symbol 938 MovieClip Frame 17Symbol 897 MovieClip
"firehit"Symbol 938 MovieClip Frame 24Symbol 44 MovieClip
"hit"Symbol 1128 MovieClip Frame 1Symbol 44 MovieClip
"dsw"Symbol 1128 MovieClip Frame 3Symbol 1113 MovieClip
"dsw"Symbol 1128 MovieClip Frame 5Symbol 1113 MovieClip
"node"Symbol 1209 MovieClip Frame 1Symbol 44 MovieClip
"2"Symbol 1209 MovieClip Frame 2Symbol 1171 MovieClip
"3"Symbol 1209 MovieClip Frame 3Symbol 1171 MovieClip
"4"Symbol 1209 MovieClip Frame 4Symbol 1171 MovieClip
"5"Symbol 1209 MovieClip Frame 4Symbol 149 MovieClip
"5"Symbol 1209 MovieClip Frame 5Symbol 1171 MovieClip
"6"Symbol 1209 MovieClip Frame 5Symbol 149 MovieClip
"3"Symbol 1209 MovieClip Frame 6Symbol 149 MovieClip
"4"Symbol 1209 MovieClip Frame 7Symbol 149 MovieClip
"7"Symbol 1209 MovieClip Frame 7Symbol 149 MovieClip
"3"Symbol 1209 MovieClip Frame 8Symbol 149 MovieClip
"2"Symbol 1209 MovieClip Frame 8Symbol 149 MovieClip
"lips"Symbol 1232 MovieClip Frame 1Symbol 1209 MovieClip
"node2"Symbol 1232 MovieClip Frame 1Symbol 44 MovieClip
"box_alive"Symbol 1232 MovieClip Frame 1Symbol 37 MovieClip [box_alive]
"follow"Symbol 1232 MovieClip Frame 1Symbol 37 MovieClip [box_alive]
"hit"Symbol 1248 MovieClip Frame 1Symbol 44 MovieClip
"hit2"Symbol 1248 MovieClip Frame 1Symbol 44 MovieClip
"shifter"Symbol 1248 MovieClip Frame 1Symbol 1239 MovieClip
"paint"Symbol 1248 MovieClip Frame 1Symbol 1245 MovieClip
"1"Symbol 1248 MovieClip Frame 2Symbol 399 MovieClip
"hit"Symbol 1248 MovieClip Frame 3Symbol 44 MovieClip
"wall1"Symbol 1252 MovieClip Frame 1Symbol 562 MovieClip
"wall2"Symbol 1252 MovieClip Frame 1Symbol 562 MovieClip
"wall3"Symbol 1252 MovieClip Frame 1Symbol 562 MovieClip
"wall4"Symbol 1252 MovieClip Frame 1Symbol 562 MovieClip
"wall5"Symbol 1252 MovieClip Frame 1Symbol 562 MovieClip
"crys1"Symbol 1252 MovieClip Frame 1Symbol 512 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 16 as "sprout"
ExportAssets (56)Timeline Frame 1Symbol 33 as "dia_explode"
ExportAssets (56)Timeline Frame 1Symbol 34 as "bullet_explode"
ExportAssets (56)Timeline Frame 1Symbol 37 as "box_alive"
ExportAssets (56)Timeline Frame 1Symbol 54 as "bullet1"
ExportAssets (56)Timeline Frame 1Symbol 118 as "sprout1"
ExportAssets (56)Timeline Frame 1Symbol 242 as "flamegib"
ExportAssets (56)Timeline Frame 1Symbol 270 as "ammog"
ExportAssets (56)Timeline Frame 1Symbol 329 as "smoke"
ExportAssets (56)Timeline Frame 1Symbol 331 as "enemy"
ExportAssets (56)Timeline Frame 1Symbol 341 as "gib"
ExportAssets (56)Timeline Frame 1Symbol 349 as "cuttershot_explode"
ExportAssets (56)Timeline Frame 1Symbol 359 as "bullgex"
ExportAssets (56)Timeline Frame 1Symbol 365 as "pirate_bullet"
ExportAssets (56)Timeline Frame 1Symbol 368 as "switcher"
ExportAssets (56)Timeline Frame 1Symbol 387 as "particle"
ExportAssets (56)Timeline Frame 1Symbol 388 as "particle_explode"
ExportAssets (56)Timeline Frame 1Symbol 401 as "grenader"
ExportAssets (56)Timeline Frame 1Symbol 1208 as "tooth"

Labels

"alive"Symbol 331 MovieClip [enemy] Frame 1
"dead"Symbol 331 MovieClip [enemy] Frame 4
"dead2"Symbol 331 MovieClip [enemy] Frame 5

Dynamic Text Variables

lifeSymbol 798 EditableText"100"
coinsSymbol 1143 EditableText"0"
ammoSymbol 1145 EditableText"0"
coinsSymbol 1253 EditableText"0"
lifeSymbol 1255 EditableText"100"
ammoSymbol 1256 EditableText"0"




http://swfchan.com/49/241613/info.shtml
Created: 14/8 -2021 23:36:48 Last modified: 14/8 -2021 23:36:48 Server time: 29/04 -2024 08:23:48