Frame 1
Stage.showMenu = false;
Frame 14
stop();
Frame 132
stop();
mine.removeMovieClip();
minePlanted = false;
camo = false;
dead = false;
Instance of Symbol 102 MovieClip "ground" in Frame 132
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 132 MovieClip "ninja" in Frame 132
onClipEvent (load) {
_x = 75;
_y = 202;
this.stop();
allowWalk = true;
camo = false;
doubleJump = false;
gravity = 0.2;
fallspeed = 0;
beschl = 0.1;
scale = 5;
}
onClipEvent (enterFrame) {
_root.camo = camo;
_y = (_y + fallspeed);
_x = (_x + walkspeed);
if (_y > Stage.height) {
_root.dead = true;
_root.deadMC.swapDepths(_root.getNextHighestDepth());
}
if (walkspeed > 1) {
walkspeed = 1;
}
if (walkspeed < -1) {
walkspeed = -1;
}
if (!_root.ground.hitTest(_x, _y + (_height / 2), true)) {
if (fallspeed >= 3) {
if (_root.enemy_one.hit.hitTest(this)) {
_root.enemy_one.play();
}
if (_root.enemy_two.hit.hitTest(this)) {
_root.enemy_two.play();
}
if (_root.enemy_four.hit.hitTest(this)) {
_root.enemy_four.play();
}
}
if (fallspeed < 3) {
fallspeed = fallspeed + gravity;
}
if ((Key.isDown(38) && ((fallspeed < 1) && (fallspeed > -1))) && (doubleJump == false)) {
fallspeed = -3;
doubleJump = true;
}
this.gotoAndStop("fall");
} else if (_root.ground.hitTest(_x, _y + (_height / 2), true)) {
fallspeed = 0;
doubleJump = false;
if (this._currentframe == 3) {
this.gotoAndStop("stand");
}
if (camo == false) {
if (Key.isDown(83) && (_root.minePlanted == false)) {
_root.attachMovie("mine", "mine", 1);
}
if ((Key.isDown(39) && (allowWalk == true)) && (!_root.ground.hitTest(_x + (_width / 2), _y, true))) {
if (walkspeed < 0) {
walkspeed = 0;
}
walkspeed = walkspeed + beschl;
this.gotoAndStop("walk");
_xscale = scale;
}
if ((Key.isDown(37) && (allowWalk == true)) && (!_root.ground.hitTest(_x - (_width / 2), _y, true))) {
if (walkspeed > 0) {
walkspeed = 0;
}
walkspeed = walkspeed - beschl;
this.gotoAndStop("walk");
_xscale = (-scale);
}
if (_root.ground.hitTest(_x + (_width / 2), _y, true)) {
_x = (_x-1);
}
if (_root.ground.hitTest(_x - (_width / 2), _y, true)) {
_x = (_x+1);
}
if (!(Key.isDown(39) || (Key.isDown(37)))) {
walkspeed = 0;
if (this._currentframe < 4) {
this.gotoAndStop("stand");
}
if (Key.isDown(65) && (this._currentframe == 1)) {
this.gotoAndPlay("stab");
}
}
if (Key.isDown(39) && (Key.isDown(37))) {
walkspeed = 0;
if (this._currentframe < 4) {
this.gotoAndStop("stand");
}
}
if (Key.isDown(38)) {
fallspeed = -3;
}
if (Key.isDown(32)) {
walkspeed = 0;
this.gotoAndStop("camo");
}
}
}
}
Instance of Symbol 145 MovieClip "enemy_one" in Frame 132
onClipEvent (enterFrame) {
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 147 MovieClip "enemy_two" in Frame 132
onClipEvent (load) {
_xscale = 4.5;
alive = true;
walkspeed = 0.5;
scale = 4.5;
}
onClipEvent (enterFrame) {
if (alive == true) {
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
if (_xscale == scale) {
_x = (_x + walkspeed);
}
if (_xscale == (-scale)) {
_x = (_x - walkspeed);
}
if (_x > 490) {
_xscale = (-scale);
}
if (_x < 360) {
_xscale = scale;
}
}
}
Instance of Symbol 150 MovieClip "enemy_three" in Frame 132
onClipEvent (load) {
alive = true;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ninja._x, _root.ninja._y) && (alive == true)) {
_root.dead = true;
}
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 147 MovieClip "enemy_four" in Frame 132
onClipEvent (load) {
_xscale = 4.5;
alive = true;
walkspeed = 0.5;
scale = 4.5;
}
onClipEvent (enterFrame) {
if (alive == true) {
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
if (_xscale == scale) {
_x = (_x + walkspeed);
}
if (_xscale == (-scale)) {
_x = (_x - walkspeed);
}
if (_x > 680) {
_xscale = (-scale);
}
if (_x < 560) {
_xscale = scale;
}
}
}
Instance of Symbol 152 MovieClip in Frame 132
onClipEvent (enterFrame) {
_y = (_y + ((_root.ninja._y - _y) / 10));
_x = (_x + ((_root.ninja._x - _x) / 10));
if (_x < (0 + (_width / 2))) {
_x = (0 + (_width / 2));
}
if (_x > (700 - (_width / 2))) {
_x = (700 - (_width / 2));
}
if (_y < (0 + (_height / 2))) {
_y = (0 + (_height / 2));
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
}
Instance of Symbol 155 MovieClip "deadMC" in Frame 132
onClipEvent (enterFrame) {
if (_root.dead == true) {
this.play();
}
}
Instance of Symbol 157 MovieClip "lvlOut" in Frame 132
onClipEvent (enterFrame) {
if (_root.ninja._x > 690) {
this.play();
}
}
Frame 133
stop();
mine.removeMovieClip();
minePlanted = false;
camo = false;
dead = false;
Instance of Symbol 160 MovieClip "ground" in Frame 133
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 132 MovieClip "ninja" in Frame 133
onClipEvent (load) {
_x = 20;
_y = 86;
this.stop();
allowWalk = true;
camo = false;
doubleJump = false;
gravity = 0.2;
fallspeed = 0;
beschl = 0.1;
scale = 5;
}
onClipEvent (enterFrame) {
_root.camo = camo;
_y = (_y + fallspeed);
_x = (_x + walkspeed);
if (_y > Stage.height) {
_root.dead = true;
_root.deadMC.swapDepths(_root.getNextHighestDepth());
}
if (walkspeed > 1) {
walkspeed = 1;
}
if (walkspeed < -1) {
walkspeed = -1;
}
if (!_root.ground.hitTest(_x, _y + (_height / 2), true)) {
if (fallspeed >= 3) {
if (_root.enemy_five.hit.hitTest(this)) {
_root.enemy_five.play();
}
if (_root.enemy_six.hit.hitTest(this)) {
_root.enemy_six.play();
}
if (_root.enemy_seven.hit.hitTest(this)) {
_root.enemy_seven.play();
}
if (_root.enemy_nine.hit.hitTest(this)) {
_root.enemy_nine.play();
}
if (_root.enemy_ten.hit.hitTest(this)) {
_root.enemy_ten.play();
}
}
if (fallspeed < 3) {
fallspeed = fallspeed + gravity;
}
if ((Key.isDown(38) && ((fallspeed < 1) && (fallspeed > -1))) && (doubleJump == false)) {
fallspeed = -3;
doubleJump = true;
}
this.gotoAndStop("fall");
} else if (_root.ground.hitTest(_x, _y + (_height / 2), true)) {
fallspeed = 0;
doubleJump = false;
if (this._currentframe == 3) {
this.gotoAndStop("stand");
}
if (camo == false) {
if (Key.isDown(83) && (_root.minePlanted == false)) {
_root.attachMovie("mine", "mine", 1);
}
if ((Key.isDown(39) && (allowWalk == true)) && (!_root.ground.hitTest(_x + (_width / 2), _y, true))) {
if (walkspeed < 0) {
walkspeed = 0;
}
walkspeed = walkspeed + beschl;
this.gotoAndStop("walk");
_xscale = scale;
}
if ((Key.isDown(37) && (allowWalk == true)) && (!_root.ground.hitTest(_x - (_width / 2), _y, true))) {
if (walkspeed > 0) {
walkspeed = 0;
}
walkspeed = walkspeed - beschl;
this.gotoAndStop("walk");
_xscale = (-scale);
}
if (_root.ground.hitTest(_x + (_width / 2), _y, true)) {
_x = (_x-1);
}
if (_root.ground.hitTest(_x - (_width / 2), _y, true)) {
_x = (_x+1);
}
if (!(Key.isDown(39) || (Key.isDown(37)))) {
walkspeed = 0;
if (this._currentframe < 4) {
this.gotoAndStop("stand");
}
if (Key.isDown(65) && (this._currentframe == 1)) {
this.gotoAndPlay("stab");
}
}
if (Key.isDown(39) && (Key.isDown(37))) {
walkspeed = 0;
if (this._currentframe < 4) {
this.gotoAndStop("stand");
}
}
if (Key.isDown(38)) {
fallspeed = -3;
}
if (Key.isDown(32)) {
walkspeed = 0;
this.gotoAndStop("camo");
}
}
}
}
Instance of Symbol 145 MovieClip "enemy_seven" in Frame 133
onClipEvent (enterFrame) {
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 150 MovieClip "enemy_four" in Frame 133
onClipEvent (load) {
alive = true;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ninja._x, _root.ninja._y) && (alive == true)) {
_root.dead = true;
trace("dead");
}
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 145 MovieClip "enemy_five" in Frame 133
onClipEvent (enterFrame) {
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 147 MovieClip "enemy_six" in Frame 133
onClipEvent (load) {
_xscale = 4.5;
alive = true;
walkspeed = 0.5;
scale = 4.5;
randomCount = random(300);
}
onClipEvent (enterFrame) {
if (alive == true) {
randomCount--;
if (randomCount <= 0) {
randomCount = random(300);
_xscale = (_xscale * -1);
}
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
if (_xscale == scale) {
_x = (_x + walkspeed);
}
if (_xscale == (-scale)) {
_x = (_x - walkspeed);
}
if (_x > 350) {
_xscale = (-scale);
}
if (_x < 195) {
_xscale = scale;
}
}
}
Instance of Symbol 150 MovieClip "enemy_eight" in Frame 133
onClipEvent (load) {
alive = true;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ninja._x, _root.ninja._y) && (alive == true)) {
_root.dead = true;
trace("dead");
}
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 145 MovieClip "enemy_nine" in Frame 133
onClipEvent (enterFrame) {
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 145 MovieClip "enemy_ten" in Frame 133
onClipEvent (load) {
count = 50;
alive = true;
}
onClipEvent (enterFrame) {
if ((count <= 0) && (alive == true)) {
count = 50;
_xscale = (_xscale * -1);
}
count--;
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 150 MovieClip "enemy_eleven" in Frame 133
onClipEvent (load) {
alive = true;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ninja._x, _root.ninja._y) && (alive == true)) {
_root.dead = true;
trace("dead");
}
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Frame 134
play();
mine.removeMovieClip();
minePlanted = false;
Frame 202
stop();
mine.removeMovieClip();
minePlanted = false;
camo = false;
dead = false;
Instance of Symbol 17 MovieClip in Frame 202
onClipEvent (enterFrame) {
if (_root.ninja.hitTest(this)) {
_root.gotoAndPlay("won");
}
}
Instance of Symbol 166 MovieClip "ground" in Frame 202
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 132 MovieClip "ninja" in Frame 202
onClipEvent (load) {
_x = 20;
_y = 86;
this.stop();
allowWalk = true;
camo = false;
doubleJump = false;
gravity = 0.2;
fallspeed = 0;
beschl = 0.1;
scale = 5;
}
onClipEvent (enterFrame) {
_root.camo = camo;
_y = (_y + fallspeed);
_x = (_x + walkspeed);
if (_y > Stage.height) {
_root.dead = true;
_root.deadMC.swapDepths(_root.getNextHighestDepth());
}
if (walkspeed > 1) {
walkspeed = 1;
}
if (walkspeed < -1) {
walkspeed = -1;
}
if (!_root.ground.hitTest(_x, _y + (_height / 2), true)) {
if (fallspeed >= 3) {
if (_root.enemy_one.hit.hitTest(this)) {
_root.enemy_one.play();
}
if (_root.enemy_two.hit.hitTest(this)) {
_root.enemy_two.play();
}
if (_root.enemy_three.hit.hitTest(this)) {
_root.enemy_three.play();
}
if (_root.enemy_four.hit.hitTest(this)) {
_root.enemy_four.play();
}
}
if (fallspeed < 3) {
fallspeed = fallspeed + gravity;
}
if ((Key.isDown(38) && ((fallspeed < 1) && (fallspeed > -1))) && (doubleJump == false)) {
fallspeed = -3;
doubleJump = true;
}
this.gotoAndStop("fall");
} else if (_root.ground.hitTest(_x, _y + (_height / 2), true)) {
fallspeed = 0;
doubleJump = false;
if (this._currentframe == 3) {
this.gotoAndStop("stand");
}
if (camo == false) {
if (Key.isDown(83) && (_root.minePlanted == false)) {
_root.attachMovie("mine", "mine", 1);
}
if ((Key.isDown(39) && (allowWalk == true)) && (!_root.ground.hitTest(_x + (_width / 2), _y, true))) {
if (walkspeed < 0) {
walkspeed = 0;
}
walkspeed = walkspeed + beschl;
this.gotoAndStop("walk");
_xscale = scale;
}
if ((Key.isDown(37) && (allowWalk == true)) && (!_root.ground.hitTest(_x - (_width / 2), _y, true))) {
if (walkspeed > 0) {
walkspeed = 0;
}
walkspeed = walkspeed - beschl;
this.gotoAndStop("walk");
_xscale = (-scale);
}
if (_root.ground.hitTest(_x + (_width / 2), _y, true)) {
_x = (_x-1);
}
if (_root.ground.hitTest(_x - (_width / 2), _y, true)) {
_x = (_x+1);
}
if (!(Key.isDown(39) || (Key.isDown(37)))) {
walkspeed = 0;
if (this._currentframe < 4) {
this.gotoAndStop("stand");
}
if (Key.isDown(65) && (this._currentframe == 1)) {
this.gotoAndPlay("stab");
}
}
if (Key.isDown(39) && (Key.isDown(37))) {
walkspeed = 0;
if (this._currentframe < 4) {
this.gotoAndStop("stand");
}
}
if (Key.isDown(38)) {
fallspeed = -3;
}
if (Key.isDown(32)) {
walkspeed = 0;
this.gotoAndStop("camo");
}
}
}
}
Instance of Symbol 150 MovieClip "enemy_six" in Frame 202
onClipEvent (load) {
alive = true;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ninja._x, _root.ninja._y) && (alive == true)) {
_root.dead = true;
}
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 145 MovieClip "enemy_one" in Frame 202
onClipEvent (enterFrame) {
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 145 MovieClip "enemy_two" in Frame 202
onClipEvent (load) {
count = 50;
alive = true;
}
onClipEvent (enterFrame) {
if ((count <= 0) && (alive == true)) {
count = 50;
_xscale = (_xscale * -1);
}
count--;
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 150 MovieClip "enemy_seven" in Frame 202
onClipEvent (load) {
alive = true;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ninja._x, _root.ninja._y) && (alive == true)) {
_root.dead = true;
}
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 145 MovieClip "enemy_three" in Frame 202
onClipEvent (enterFrame) {
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 145 MovieClip "enemy_four" in Frame 202
onClipEvent (load) {
count = 50;
alive = true;
}
onClipEvent (enterFrame) {
if ((count <= 0) && (alive == true)) {
count = 50;
_xscale = (_xscale * -1);
}
count--;
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 150 MovieClip "enemy_five" in Frame 202
onClipEvent (load) {
alive = true;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ninja._x, _root.ninja._y) && (alive == true)) {
_root.dead = true;
}
if (_root.ninja.knife.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
}
if (_root.mine.hitTest(this.hit) && (this._currentframe == 1)) {
this.gotoAndPlay(2);
_root.mine.play();
}
}
Instance of Symbol 152 MovieClip in Frame 202
onClipEvent (enterFrame) {
_y = (_y + ((_root.ninja._y - _y) / 10));
_x = (_x + ((_root.ninja._x - _x) / 10));
if (_x < (0 + (_width / 2))) {
_x = (0 + (_width / 2));
}
if (_x > (700 - (_width / 2))) {
_x = (700 - (_width / 2));
}
if (_y < (0 + (_height / 2))) {
_y = (0 + (_height / 2));
}
if (_y > (400 - (_height / 2))) {
_y = (400 - (_height / 2));
}
}
Instance of Symbol 155 MovieClip "deadMC" in Frame 202
onClipEvent (enterFrame) {
if (_root.dead == true) {
this.play();
}
}
Frame 203
mine.removeMovieClip();
gotoAndPlay (265);
Frame 204
mine.removeMovieClip();
minePlanted = false;
Frame 264
_root.gotoAndPlay("Menu", 2);
Frame 265
_root.deadMC.removeMovieClip();
play();
Frame 274
stop();
Symbol 11 MovieClip [mine] Frame 1
_root.minePlanted = true;
_x = _root.ninja._x;
_y = _root.ninja._y;
stop();
Symbol 11 MovieClip [mine] Frame 30
_root.minePlanted = false;
this.removeMovieClip();
Symbol 57 Button
on (release) {
getURL ("http://www.newgrounds.com", "_blank");
}
Symbol 66 Button
on (release) {
startMovie();
}
Symbol 68 MovieClip Frame 1
function timerHandler() {
if (!loadingComplete) {
var _local4 = _root.getBytesLoaded() / _root.getBytesTotal();
bar._xscale = 100 * _local4;
if (_local4 == 1) {
loadingComplete = true;
if (AUTO_PLAY) {
startMovie();
} else {
gotoAndStop ("loaded");
}
return(undefined);
}
}
dt = getTimer() - time;
time = time + dt;
frameAccum = frameAccum + dt;
var _local3 = 0;
while ((frameAccum >= FRAME_TIME) && (_local3 < MAX_FRAME_SKIP)) {
advanceFrame(tankLogo, true, true);
advanceFrame(loadingText, false, true);
advanceFrame(barGfx, false, true);
if (loadingComplete) {
advanceFrame(this, false, false);
}
(frameAccum = frameAccum - FRAME_TIME);
_local3++;
}
updateAfterEvent();
}
function advanceFrame(clip, recurse, loop) {
if (!clip) {
return(undefined);
}
clip.stop();
if (clip._currentframe == clip._totalframes) {
if (loop) {
clip.gotoAndStop(1);
}
} else {
clip.nextFrame();
}
if (recurse) {
for (childName in clip) {
if (typeof(clip[childName]) == "movieclip") {
advanceFrame(clip[childName], recurse, loop);
}
}
}
}
function startMovie() {
clearInterval(intervalId);
_root.play();
}
_root.stop();
stop();
var FRAME_TIME = 33.3333333333333;
var AUTO_PLAY = false;
var MAX_FRAME_SKIP = 5;
var loadingComplete;
var intervalId;
var time;
var frameAccum;
loadingComplete = false;
intervalId = setInterval(this, "timerHandler", FRAME_TIME / 2);
frameAccum = 0;
time = getTimer();
timerHandler();
Symbol 68 MovieClip Frame 2
stop();
Symbol 71 Button
on (release) {
_root.play();
}
Symbol 76 Button
on (release) {
_root.instr.play();
}
Symbol 79 Button
on (release) {
gotoAndPlay (275);
}
Symbol 81 Button
on (release) {
gotoAndStop (275);
}
Symbol 131 MovieClip Frame 28
stop();
Symbol 132 MovieClip Frame 1
allowWalk = true;
camo = false;
Symbol 132 MovieClip Frame 3
allowWalk = false;
Symbol 132 MovieClip Frame 4
allowWalk = false;
stab = true;
Symbol 132 MovieClip Frame 10
stab = false;
gotoAndStop (1);
Symbol 132 MovieClip Frame 11
allowWalk = false;
camo = true;
Instance of Symbol 131 MovieClip in Symbol 132 MovieClip Frame 11
onClipEvent (enterFrame) {
if (!Key.isDown(32)) {
_root.ninja.gotoAndStop("stand");
}
}
Symbol 145 MovieClip Frame 1
stop();
Instance of Symbol 141 MovieClip "sight_one" in Symbol 145 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.ninja.hitTest(this) && ((_root.ninja._currentframe < 4) || (_root.ninja._currentframe > 10))) && (_root.camo == false)) {
_root.dead = true;
trace("dead");
}
}
Symbol 145 MovieClip Frame 2
alive = false;
Symbol 145 MovieClip Frame 30
stop();
Symbol 147 MovieClip Frame 1
stop();
Instance of Symbol 141 MovieClip "sight_one" in Symbol 147 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.ninja.hitTest(this) && ((_root.ninja._currentframe < 4) || (_root.ninja._currentframe > 10))) && (_root.camo == false)) {
_root.dead = true;
trace("dead");
}
}
Symbol 147 MovieClip Frame 2
alive = false;
Symbol 147 MovieClip Frame 31
stop();
Symbol 150 MovieClip Frame 1
stop();
Symbol 150 MovieClip Frame 2
alive = false;
Symbol 150 MovieClip Frame 30
stop();
Symbol 152 MovieClip Frame 1
function camControl() {
rp.x = _x;
rp.y = _y;
var _local5 = camH * (_yscale * 0.01);
var _local6 = camW * (_xscale * 0.01);
var _local3 = sH / _local5;
var _local4 = sW / _local6;
_x2 = (_local6 / 2) * _local4;
_y2 = (_local5 / 2) * _local3;
_xscale2 = _local4 * 100;
_yscale2 = _local3 * 100;
_rotation2 = -_rotation;
_parent.filters = this.filters;
_parent.transform.colorTransform = this.transform.colorTransform;
}
function reset() {
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
_parent._rotation = 0;
_parent._visible = true;
}
function set_x2(value) {
var _local2 = {x:rp.x, y:rp.y};
_parent.localToGlobal(_local2);
_parent._x = _parent._x + (value - _local2.x);
}
function get_x2() {
var _local2 = {x:rp.x, y:rp.y};
_parent.localToGlobal(_local2);
return(_local2.x);
}
function set_y2(value) {
var _local2 = {x:rp.x, y:rp.y};
_parent.localToGlobal(_local2);
_parent._y = _parent._y + (value - _local2.y);
}
function get_y2() {
var _local2 = {x:rp.x, y:rp.y};
_parent.localToGlobal(_local2);
return(_local2.y);
}
function get_xscale2() {
return(_parent._xscale);
}
function set_xscale2(value) {
setProperty2("_xscale", value);
}
function get_yscale2() {
return(_parent._yscale);
}
function set_yscale2(value) {
setProperty2("_yscale", value);
}
function get_rotation2() {
return(parent.rotation);
}
function set_rotation2(value) {
setProperty2("_rotation", value);
}
function setProperty2(prop, n) {
var _local3 = {x:rp.x, y:rp.y};
_parent.localToGlobal(_local3);
_parent[prop] = n;
var _local2 = {x:rp.x, y:rp.y};
_parent.localToGlobal(_local2);
_parent._x = _parent._x - (_local2.x - _local3.x);
_parent._y = _parent._y - (_local2.y - _local3.y);
}
_visible = false;
addProperty("_x2", get_x2, set_x2);
addProperty("_y2", get_y2, set_y2);
addProperty("_xscale2", get_xscale2, set_xscale2);
addProperty("_yscale2", get_yscale2, set_yscale2);
addProperty("_rotation2", get_rotation2, set_rotation2);
var oldScaleMode = stage.scaleMode;
stage.scaleMode = "exactFit";
var sW = Stage.width;
var sH = Stage.height;
stage.scaleMode = oldScaleMode;
var bounds_obj = this.getBounds(this);
var camH = Math.abs(bounds_obj.yMax - bounds_obj.yMin);
var camW = Math.abs(bounds_obj.xMax - bounds_obj.xMin);
var rp = {x:this._x, y:this._y};
onEnterFrame = function () {
camControl();
};
this.onUnload = reset;
Symbol 154 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 50
stop();
Symbol 155 MovieClip Frame 1
stop();
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Instance of Symbol 154 MovieClip in Symbol 155 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.dead == true) && (_currentframe == 1)) {
this.gotoAndPlay(random(10));
}
}
Symbol 155 MovieClip Frame 50
_root.gotoAndStop("dead");
Symbol 156 MovieClip Frame 16
stop();
Symbol 157 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 15
_root.nextFrame();
Symbol 173 Button
on (release) {
stopAllSounds();
gotoAndPlay (15);
}
Symbol 175 Button
on (release) {
stopAllSounds();
gotoAndPlay (2);
}