Combined Code
movieClip 3 {
}
movieClip 6 {
}
movieClip 7 {
}
movieClip 10 {
}
button 11 {
on (release) {
gotoAndStop(1452);
stopAllSounds();
}
}
movieClip 13 {
}
movieClip 17 {
}
movieClip 18 {
}
movieClip 20 {
}
movieClip 39 {
}
movieClip 42 {
}
movieClip 43 {
}
movieClip 46 {
}
movieClip 47 {
}
movieClip 52 {
}
movieClip 55 {
}
movieClip 56 {
}
movieClip 60 {
}
movieClip 64 {
}
movieClip 65 {
}
movieClip 70 {
}
movieClip 73 {
}
movieClip 74 {
}
movieClip 78 {
}
movieClip 82 {
}
movieClip 83 {
}
movieClip 89 {
}
movieClip 94 {
}
movieClip 96 {
}
movieClip 97 {
}
movieClip 101 {
}
movieClip 104 {
}
movieClip 106 {
}
movieClip 108 {
}
movieClip 110 {
}
movieClip 113 {
}
movieClip 115 {
}
movieClip 116 {
}
movieClip 118 {
}
movieClip 121 {
}
movieClip 123 {
}
movieClip 124 {
}
movieClip 133 {
}
movieClip 139 {
}
movieClip 140 {
}
movieClip 142 {
}
movieClip 144 {
}
movieClip 145 {
}
movieClip 148 {
}
movieClip 149 {
}
movieClip 157 {
}
movieClip 159 {
}
movieClip 160 {
}
movieClip 188 {
}
movieClip 192 {
}
movieClip 195 {
}
movieClip 199 {
}
movieClip 200 {
}
movieClip 203 {
}
movieClip 206 {
}
movieClip 209 {
}
movieClip 212 {
}
movieClip 215 {
}
movieClip 217 {
}
movieClip 218 {
}
movieClip 221 {
}
movieClip 223 {
}
movieClip 224 {
}
movieClip 225 {
}
movieClip 230 {
}
movieClip 234 {
}
movieClip 238 {
}
movieClip 244 {
}
frame 1451 {
gotoAndStop(1452);
}
frame 1452 {
stopAllSounds();
}
frame 1452 {
stop();
_root.strength = 3;
_root.toughness = 3;
_root.luck = 3;
_root.extra = 3;
_root.health = 3;
_root.totalhealth = 80;
_root.enemyhealth = 70;
_root.totalenemyhealth = 70;
_root.enemyattk = 12;
_root.score = 0;
_root.heal = 10;
}
movieClip 247 {
}
button 255 {
on (release) {
nextFrame();
stopAllSounds();
}
}
frame 1453 {
stop();
}
button 266 {
on (release) {
if (_root.extra > 0) {
_root.strength += 1;
_root.extra -= 1;
}
}
}
button 267 {
on (release) {
if (_root.extra > 0) {
_root.toughness += 1;
_root.extra -= 1;
}
}
}
button 268 {
on (release) {
if (_root.extra > 0) {
_root.luck += 1;
_root.extra -= 1;
}
}
}
button 269 {
on (release) {
if (_root.luck > 0) {
_root.extra += 1;
_root.luck -= 1;
}
}
}
button 270 {
on (release) {
if (_root.toughness > 0) {
_root.extra += 1;
_root.toughness -= 1;
}
}
}
button 271 {
on (release) {
if (_root.strength > 1) {
_root.extra += 1;
_root.strength -= 1;
}
}
}
button 274 {
on (release) {
nextFrame();
stopAllSounds();
}
}
movieClip 276 {
}
instance of movieClip 276 {
onClipEvent (enterFrame) {
if (_root.health < _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.health > _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.enemyhealth > _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
if (_root.enemyhealth < _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
}
}
button 282 {
on (release) {
gotoAndStop('help');
stopAllSounds();
}
}
button 287 {
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.health = _root.health;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.totalhealth = _root.totalhealth;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.enemyhealth = _root.enemyhealth;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.totalenemyhealth = _root.totalenemyhealth;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.enemyattk = _root.enemyattk;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.score = _root.score;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.strength = _root.strength;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.toughness = _root.toughness;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.luck = _root.luck;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.pos.data.extra = _root.extra;
}
}
button 291 {
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.health = _root.pos.data.health;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.totalhealth = _root.pos.data.totalhealth;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.enemyhealth = _root.pos.data.enemyhealth;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.totalenemyhealth = _root.pos.data.totalenemyhealth;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.score = _root.pos.data.score;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.strength = _root.pos.data.strength;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.luck = _root.pos.data.luck;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.toughness = _root.pos.data.toughness;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.enemyattk = _root.pos.data.enemyattk;
}
on (release) {
_root.pos = SharedObject.getLocal('minirpg');
_root.extra = _root.pos.data.extra;
}
}
movieClip 295 {
frame 11 {
stop();
}
}
button 299 {
on (release) {
if (mypasswordbox.text == 'datass') {
gotoAndStop(1469);
} else {}
}
on (release) {
if (mypasswordbox.text == 'rice') {
gotoAndStop(1461);
} else {}
}
on (release) {
if (mypasswordbox.text == 'gunn') {
gotoAndStop(1465);
} else {}
}
on (release) {
if (mypasswordbox.text == 'troll') {
gotoAndStop(1473);
} else {}
}
on (release) {
if (mypasswordbox.text == 'weed') {
gotoAndStop(1477);
} else {}
}
on (release) {
if (mypasswordbox.text == 'mc') {
gotoAndStop(1481);
} else {}
}
on (release) {
if (mypasswordbox.text == 'scrub') {
gotoAndStop(1485);
} else {}
}
}
frame 1454 {
stop();
}
movieClip 303 {
}
movieClip 305 {
}
movieClip 310 {
}
movieClip 311 {
frame 258 {
_root.play();
}
}
movieClip 324 {
frame 1 {
gotoAndPlay(random(11));
}
frame 2 {
gotoAndPlay('hint1');
}
frame 3 {
gotoAndPlay('hint2');
}
frame 4 {
gotoAndPlay('hint3');
}
frame 5 {
gotoAndPlay('hint4');
}
frame 6 {
gotoAndPlay('hint5');
}
frame 7 {
gotoAndPlay('hint6');
}
frame 8 {
gotoAndPlay('hint7');
}
frame 9 {
gotoAndPlay('hint8');
}
frame 10 {
gotoAndPlay('hint9');
}
frame 11 {
gotoAndPlay('hint10');
}
frame 12 {
stop();
}
frame 13 {
stop();
}
frame 14 {
stop();
}
frame 15 {
stop();
}
frame 16 {
stop();
}
frame 17 {
stop();
}
frame 18 {
stop();
}
frame 19 {
stop();
}
frame 20 {
stop();
}
frame 21 {
stop();
}
}
frame 1455 {
stop();
}
movieClip 327 {
}
button 333 {
on (release) {
_root.you.play();
}
}
movieClip 336 {
}
button 338 {
on (release) {
_root.you.gotoAndPlay('attack');
}
on (release) {
_root.lungecd.play();
}
}
button 340 {
on (release) {
_root.you.gotoAndPlay('punch');
}
on (release) {
_root.punchcd.play();
}
}
button 342 {
on (release) {
_root.you.gotoAndPlay('jump');
}
on (release) {
_root.jumpcd.play();
}
}
button 344 {
on (release) {
_root.you.play();
}
on (release) {
_root.you.gotoAndPlay('attack');
}
on (release) {
_root.lungecd2.play();
}
}
movieClip 355 {
}
button 356 {
on (release) {
_root.joe.play();
}
on (release) {
_root.joecd.play();
}
on (release) {
_root.health += heal;
}
}
button 357 {
on (release) {
gotoAndPlay('dodge');
}
on (release) {
_root.dodgecd.play();
}
}
movieClip 360 {
}
movieClip 393 {
frame 6 {
stop();
}
}
movieClip 427 {
}
movieClip 437 {
}
movieClip 446 {
}
movieClip 450 {
}
movieClip 452 {
}
movieClip 461 {
frame 1 {
stop();
}
instance Targetm of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.hit)) {
_root.mmiss.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.stunner)) {
_root.mmiss.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.inv)) {
_root.mmiss.play();
}
}
}
frame 20 {
gotoAndStop(1);
}
instance Targetm of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.hit)) {
_root.mmiss.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.stunner)) {
_root.mmiss.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.inv)) {
_root.mmiss.play();
}
}
}
frame 28 {
gotoAndStop(1);
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
frame 31 {
damage = _root.enemyattk - _root.toughness - random(_root.luck);
if (damage < 0) {
damage = 0;
}
_parent.health -= damage;
}
frame 34 {
gotoAndStop(1);
}
frame 50 {
gotoAndStop(1);
}
instance Targetm of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.hit)) {
_root.mmiss.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.stunner)) {
_root.mmiss.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.inv)) {
_root.mmiss.play();
}
}
}
frame 68 {
gotoAndStop(1);
}
instance Targetb of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.hit)) {
_root.blocked.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.stunner)) {
_root.blocked.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.inv)) {
_root.blocked.play();
}
}
}
frame 115 {
gotoAndStop(1);
}
instance Targetm of movieClip 52 {
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.hit)) {
_root.mmiss.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.stunner)) {
_root.mmiss.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.enemy.inv)) {
_root.mmiss.play();
}
}
}
frame 144 {
gotoAndStop(1);
}
frame 145 {
gotoAndStop(1);
}
frame 149 {
damage = _root.enemyattk - _root.toughness - random(_root.luck);
if (damage < 0) {
damage = 0;
}
_parent.health -= damage;
}
frame 194 {
gotoAndStop(1);
}
}
instance you of movieClip 461 {
onClipEvent (enterFrame) {
if (this.Target.hitTest(_root.enemy.hit)) {
this.gotoAndPlay('Hurt');
_root.gothitgd.play();
}
if (_root.health <= 0) {
_parent.gotoAndStop('gameover');
}
}
}
movieClip 532 {
frame 1 {
gotoAndPlay('kick');
}
frame 2 {
gotoAndPlay('energyball');
}
frame 3 {
gotoAndPlay('vanish');
}
frame 39 {
gotoAndPlay(random(3));
}
frame 62 {
if (this.hitTest(_parent.you.Target)) {
gotoAndPlay('hit');
} else {
gotoAndPlay('miss');
}
}
frame 64 {
damage = _root.enemyattk - _root.toughness - random(_root.luck);
if (damage < 0) {
damage = 0;
}
_parent.health -= damage;
}
frame 69 {
gotoAndPlay(random(3));
}
frame 70 {
_root.mmiss.play();
}
frame 72 {
gotoAndPlay(random(3));
}
frame 113 {
gotoAndPlay(random(3));
}
frame 114 {
gotoAndPlay(random(3));
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
frame 117 {
damage = _root.strength + random(_root.luck);
_root.enemyhealth -= damage;
if (_root.enemyhealth <= 0) {
gotoAndPlay('dead');
}
crit = _root.strength + random(_root.luck);
if (crit > 7) {
_root.criticalm.play();
}
}
frame 118 {
gotoAndPlay(random(3));
}
frame 119 {
if (_root.enemyhealth > 0) {
gotoAndPlay(random(3));
}
}
frame 122 {
if (_root.enemyhealth <= 0) {
_parent.gotoAndStop('win');
} else {
play();
}
}
}
instance enemy of movieClip 532 {
onClipEvent (enterFrame) {
if (_root.enemyhealth < 0) {
_root.enemyhealth = 0;
}
if (_root.health < 0) {
_root.health = 0;
}
if (this.Target.hitTest(_root.you.hit)) {
this.gotoAndPlay('hurt');
_root.gothit.play();
}
}
}
movieClip 537 {
}
movieClip 539 {
}
movieClip 540 {
frame 1 {
stop();
}
}
movieClip 541 {
frame 1 {
stop();
}
}
movieClip 542 {
frame 1 {
stop();
}
}
movieClip 543 {
frame 1 {
stop();
}
}
button 544 {
on (release) {
_root.joe.play();
}
on (release) {
_root.joecd.play();
}
}
movieClip 547 {
}
movieClip 550 {
frame 1 {
stop();
}
frame 9 {
gotoAndPlay('derpframe');
}
}
movieClip 552 {
}
movieClip 553 {
}
movieClip 555 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 555 {
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
}
movieClip 557 {
}
movieClip 559 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 559 {
onClipEvent (enterFrame) {
this._xscale = _root.enemyhealth;
}
}
movieClip 569 {
}
movieClip 571 {
}
movieClip 575 {
}
movieClip 577 {
}
movieClip 578 {
frame 1 {
stop();
}
frame 9 {
stop();
}
frame 17 {
stop();
}
frame 25 {
stop();
}
frame 33 {
stop();
}
}
movieClip 581 {
frame 1 {
stop();
}
}
movieClip 583 {
}
movieClip 584 {
frame 1 {
stop();
}
}
movieClip 586 {
}
movieClip 588 {
frame 1 {
stop();
}
}
movieClip 590 {
}
movieClip 591 {
}
movieClip 593 {
}
movieClip 595 {
}
movieClip 598 {
frame 1 {
stop();
}
frame 76 {
gotoAndPlay('mewframe');
}
frame 77 {
stop();
}
}
movieClip 599 {
frame 5 {
stop();
}
}
frame 1456 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
movieClip 607 {
}
movieClip 609 {
}
movieClip 611 {
}
movieClip 612 {
frame 6 {
stop();
}
}
button 614 {
on (release) {
gotoAndStop(1460);
stopAllSounds();
}
}
frame 1457 {
stop();
}
button 624 {
on (release) {
gotoAndStop(1453);
stopAllSounds();
}
}
frame 1458 {
stop();
}
button 627 {
on (release) {
nextFrame();
}
}
movieClip 631 {
}
movieClip 633 {
}
movieClip 635 {
}
movieClip 637 {
}
movieClip 639 {
}
movieClip 641 {
}
movieClip 648 {
}
movieClip 658 {
}
movieClip 660 {
}
movieClip 699 {
}
movieClip 719 {
frame 1 {
stop();
}
instance of movieClip 631 {
onClipEvent (release) {
_root.learn.gotoAndStop('battlestuff');
}
}
instance of movieClip 633 {
onClipEvent (release) {
_root.learn.gotoAndStop('statsstuff');
}
}
instance of movieClip 635 {
onClipEvent (release) {
_root.learn.gotoAndStop('abilitystuff');
}
}
instance of movieClip 637 {
onClipEvent (release) {
_root.learn.gotoAndStop('bossstuff');
}
}
instance of movieClip 639 {
onClipEvent (release) {
_root.learn.gotoAndStop('bossinfostuff');
}
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
frame 10 {
stop();
}
frame 11 {
stop();
}
frame 12 {
stop();
}
frame 13 {
stop();
}
frame 14 {
stop();
}
frame 15 {
stop();
}
frame 16 {
stop();
}
}
button 725 {
on (release) {
gotoAndStop('stats');
stopAllSounds();
}
}
frame 1459 {
stop();
}
button 727 {
on (release) {
prevFrame();
}
}
button 730 {
on (release) {
gotoAndStop('stats');
}
}
frame 1460 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
button 740 {
on (release) {
nextFrame();
}
}
instance of movieClip 276 {
onClipEvent (enterFrame) {
if (_root.health < _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.health > _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.enemyhealth > _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
if (_root.enemyhealth < _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
}
}
button 741 {
on (release) {
gotoAndStop('help');
}
}
movieClip 744 {
}
frame 1461 {
stop();
}
movieClip 747 {
}
movieClip 749 {
frame 258 {
_root.play();
}
}
frame 1462 {
stop();
}
instance you of movieClip 461 {
onClipEvent (enterFrame) {
if (this.Target.hitTest(_root.enemy.hit)) {
this.gotoAndPlay('Hurt');
_root.gothitgd.play();
}
if (_root.health <= 0) {
_parent.gotoAndStop('gameover');
}
}
}
movieClip 761 {
}
movieClip 783 {
}
movieClip 788 {
}
movieClip 802 {
}
movieClip 828 {
frame 1 {
gotoAndPlay('slice');
}
frame 2 {
gotoAndPlay('extend');
}
frame 3 {
gotoAndPlay('strike');
}
frame 4 {
gotoAndPlay(random(3));
}
frame 76 {
gotoAndPlay(random(3));
}
frame 120 {
gotoAndPlay(random(3));
}
frame 201 {
gotoAndPlay(random(3));
}
frame 202 {
gotoAndPlay(random(3));
}
frame 203 {
gotoAndPlay(random(3));
}
frame 282 {
gotoAndPlay(random(3));
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
frame 289 {
damage = _root.strength + random(_root.luck);
_root.enemyhealth -= damage;
if (_root.enemyhealth <= 0) {
gotoAndPlay('dead');
}
crit = _root.strength + random(_root.luck);
if (crit > 9) {
_root.criticalm.play();
}
}
frame 290 {
if (_root.enemyhealth > 0) {
gotoAndPlay(random(3));
}
}
frame 292 {
if (_root.enemyhealth <= 0) {
_parent.gotoAndStop('winj');
} else {
play();
}
}
}
instance enemy of movieClip 828 {
onClipEvent (enterFrame) {
if (_root.enemyhealth < 0) {
_root.enemyhealth = 0;
}
if (_root.health < 0) {
_root.health = 0;
}
if (this.Target.hitTest(_root.you.hit)) {
this.gotoAndPlay('hurt');
_root.gothit.play();
}
}
}
movieClip 830 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 830 {
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
}
movieClip 832 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 832 {
onClipEvent (enterFrame) {
this._xscale = _root.enemyhealth;
}
}
movieClip 834 {
}
frame 1463 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
button 848 {
on (release) {
gotoAndStop(1464);
stopAllSounds();
}
}
frame 1464 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
frame 1464 {
_root.chris = true;
}
instance of movieClip 276 {
onClipEvent (enterFrame) {
if (_root.health < _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.health > _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.enemyhealth > _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
if (_root.enemyhealth < _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
}
}
button 863 {
on (release) {
gotoAndStop('help');
}
}
movieClip 865 {
}
movieClip 867 {
}
movieClip 869 {
frame 258 {
_root.play();
}
}
frame 1466 {
stop();
}
button 873 {
on (release) {
_root.you.gotoAndPlay('shield');
}
on (release) {
_root.telecd.play();
}
}
instance you of movieClip 461 {
onClipEvent (enterFrame) {
if (this.Target.hitTest(_root.enemy.hit)) {
this.gotoAndPlay('Hurt');
_root.gothitgd.play();
}
if (this.Target.hitTest(_root.enemy.stunner)) {
this.gotoAndPlay('stun');
_root.gothitgd.play();
}
if (_root.health <= 0) {
_parent.gotoAndStop('gameover');
}
}
}
movieClip 880 {
}
movieClip 882 {
}
movieClip 913 {
}
movieClip 915 {
}
movieClip 922 {
}
movieClip 927 {
}
movieClip 928 {
}
movieClip 933 {
}
movieClip 952 {
frame 16 {
stop();
}
}
movieClip 962 {
}
movieClip 964 {
}
movieClip 968 {
}
movieClip 973 {
}
movieClip 975 {
frame 1 {
gotoAndPlay('slice');
}
frame 2 {
gotoAndPlay('extend');
}
frame 3 {
gotoAndPlay('strike');
}
frame 4 {
gotoAndPlay('close');
}
frame 25 {
gotoAndPlay(random(4));
}
frame 153 {
gotoAndPlay(random(4));
}
frame 226 {
gotoAndPlay(random(4));
}
frame 281 {
gotoAndPlay(random(4));
}
frame 282 {
gotoAndPlay(random(4));
}
frame 285 {
gotoAndPlay(random(4));
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
frame 292 {
damage = _root.strength + random(_root.luck);
_root.enemyhealth -= damage;
if (_root.enemyhealth <= 0) {
gotoAndPlay('dead');
}
crit = _root.strength + random(_root.luck);
if (crit > 11) {
_root.criticalm.play();
}
}
frame 293 {
if (_root.enemyhealth > 0) {
gotoAndPlay(random(4));
}
}
frame 295 {
if (_root.enemyhealth <= 0) {
_parent.gotoAndStop('winc');
} else {
play();
}
}
}
instance enemy of movieClip 975 {
onClipEvent (enterFrame) {
if (_root.enemyhealth < 0) {
_root.enemyhealth = 0;
}
if (_root.health < 0) {
_root.health = 0;
}
if (this.Target.hitTest(_root.you.hit)) {
this.gotoAndPlay('hurt');
_root.gothit.play();
}
}
}
movieClip 977 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 977 {
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
}
movieClip 979 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 979 {
onClipEvent (enterFrame) {
this._xscale = _root.enemyhealth;
}
}
movieClip 980 {
}
frame 1467 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
button 995 {
on (release) {
gotoAndStop(1468);
stopAllSounds();
}
}
frame 1468 {
stop();
}
frame 1468 {
_root.chris = true;
}
instance of movieClip 276 {
onClipEvent (enterFrame) {
if (_root.health < _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.health > _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.enemyhealth > _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
if (_root.enemyhealth < _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
}
}
button 1009 {
on (release) {
gotoAndStop('help');
}
}
movieClip 1011 {
}
frame 1469 {
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(10) + 20;
_root.enemyhealth += random(5) + 20;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
movieClip 1013 {
}
movieClip 1015 {
frame 258 {
_root.play();
}
}
frame 1470 {
stop();
}
button 1019 {
on (release) {
_root.you.gotoAndPlay('shadow');
}
on (release) {
_root.shadowcd.play();
}
}
instance you of movieClip 461 {
onClipEvent (enterFrame) {
if (this.Target.hitTest(_root.enemy.hit)) {
this.gotoAndPlay('Hurt');
_root.gothitgd.play();
}
if (_root.health <= 0) {
_parent.gotoAndStop('gameover');
}
}
}
movieClip 1056 {
}
movieClip 1059 {
}
movieClip 1073 {
}
movieClip 1074 {
frame 40 {
stop();
}
}
movieClip 1081 {
}
movieClip 1083 {
}
movieClip 1145 {
frame 1 {
gotoAndPlay('slice');
}
frame 2 {
gotoAndPlay('extend');
}
frame 3 {
gotoAndPlay('strike');
}
frame 4 {
gotoAndPlay('close');
}
frame 49 {
gotoAndPlay(random(4));
}
frame 140 {
gotoAndPlay(random(4));
}
frame 141 {
gotoAndPlay(random(4));
}
frame 175 {
gotoAndPlay(random(4));
}
frame 209 {
gotoAndPlay(random(4));
}
frame 210 {
gotoAndPlay(random(4));
}
frame 212 {
gotoAndPlay(random(4));
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
frame 219 {
damage = _root.strength + random(_root.luck);
_root.enemyhealth -= damage;
if (_root.enemyhealth <= 0) {
gotoAndPlay('dead');
}
crit = _root.strength + random(_root.luck);
if (crit > 13) {
_root.criticalm.play();
}
}
frame 220 {
if (_root.enemyhealth > 0) {
gotoAndPlay(random(4));
}
}
frame 221 {
if (_root.enemyhealth <= 0) {
_parent.gotoAndStop('winh');
} else {
play();
}
}
}
instance enemy of movieClip 1145 {
onClipEvent (enterFrame) {
if (_root.enemyhealth < 0) {
_root.enemyhealth = 0;
}
if (_root.health < 0) {
_root.health = 0;
}
if (this.Target.hitTest(_root.you.hit)) {
this.gotoAndPlay('hurt');
_root.gothit.play();
}
}
}
movieClip 1146 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 1146 {
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
}
movieClip 1148 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 1148 {
onClipEvent (enterFrame) {
this._xscale = _root.enemyhealth;
}
}
movieClip 1149 {
}
frame 1471 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
button 1163 {
on (release) {
gotoAndStop(1472);
stopAllSounds();
}
}
frame 1472 {
stop();
}
frame 1472 {
_root.chris = true;
}
instance of movieClip 276 {
onClipEvent (enterFrame) {
if (_root.health < _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.health > _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.enemyhealth > _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
if (_root.enemyhealth < _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
}
}
button 1177 {
on (release) {
gotoAndStop('help');
}
}
movieClip 1179 {
}
frame 1473 {
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(20) + 30;
_root.enemyhealth += random(10) + 30;
_root.enemyattk += random(1) + 3;
_root.score += 1;
}
movieClip 1181 {
}
movieClip 1183 {
frame 258 {
_root.play();
}
}
frame 1474 {
stop();
}
movieClip 1186 {
}
instance you of movieClip 461 {
onClipEvent (enterFrame) {
if (this.Target.hitTest(_root.enemy.hit)) {
this.gotoAndPlay('Hurt');
_root.gothitgd.play();
}
if (_root.health <= 0) {
_parent.gotoAndStop('gameover');
}
}
}
movieClip 1190 {
}
movieClip 1202 {
}
movieClip 1203 {
}
movieClip 1237 {
}
movieClip 1267 {
}
movieClip 1268 {
frame 1 {
gotoAndPlay('slice');
}
frame 2 {
gotoAndPlay('extend');
}
frame 3 {
gotoAndPlay(171);
}
frame 4 {
gotoAndPlay(171);
}
frame 49 {
gotoAndPlay(random(4));
}
frame 170 {
gotoAndPlay(random(4));
}
frame 199 {
gotoAndPlay(random(4));
}
frame 200 {
gotoAndPlay(random(4));
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
frame 207 {
damage = _root.strength + random(_root.luck);
_root.enemyhealth -= damage;
if (_root.enemyhealth <= 0) {
gotoAndPlay('dead');
}
crit = _root.strength + random(_root.luck);
if (crit > 15) {
_root.criticalm.play();
}
}
frame 208 {
if (_root.enemyhealth > 0) {
gotoAndPlay(random(4));
}
}
frame 209 {
if (_root.enemyhealth <= 0) {
_parent.gotoAndStop('wine');
} else {
play();
}
}
}
instance enemy of movieClip 1268 {
onClipEvent (enterFrame) {
if (_root.enemyhealth < 0) {
_root.enemyhealth = 0;
}
if (_root.health < 0) {
_root.health = 0;
}
if (this.Target.hitTest(_root.you.hit)) {
this.gotoAndPlay('hurt');
_root.gothit.play();
}
}
}
movieClip 1269 {
}
movieClip 1270 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 1270 {
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
}
movieClip 1272 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 1272 {
onClipEvent (enterFrame) {
this._xscale = _root.enemyhealth;
}
}
movieClip 1273 {
}
frame 1475 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
button 1287 {
on (release) {
gotoAndStop(1476);
stopAllSounds();
}
}
frame 1476 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(30) + 80;
_root.enemyhealth += random(20) + 80;
_root.enemyattk += random(1) + 4;
_root.score += 1;
}
frame 1476 {
_root.chris = true;
}
instance of movieClip 276 {
onClipEvent (enterFrame) {
if (_root.health < _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.health > _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.enemyhealth > _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
if (_root.enemyhealth < _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
}
}
button 1301 {
on (release) {
gotoAndStop('help');
}
}
movieClip 1303 {
}
movieClip 1305 {
}
movieClip 1307 {
}
movieClip 1309 {
frame 258 {
_root.play();
}
}
frame 1478 {
stop();
}
movieClip 1344 {
frame 1 {
stop();
}
frame 10 {
stop();
}
frame 20 {
stop();
}
frame 30 {
stop();
}
frame 40 {
stop();
}
frame 48 {
stop();
}
frame 50 {
gotoAndPlay(45);
}
}
instance you of movieClip 461 {
onClipEvent (enterFrame) {
if (this.Target.hitTest(_root.enemy.hit)) {
this.gotoAndPlay('Hurt');
_root.gothitgd.play();
}
if (this.Target.hitTest(_root.enemy.stunner)) {
this.gotoAndPlay('stun');
_root.gothitgd.play();
}
if (_root.health <= 0) {
_parent.gotoAndStop('gameover');
}
}
}
movieClip 1365 {
}
movieClip 1367 {
}
movieClip 1370 {
}
movieClip 1397 {
}
movieClip 1409 {
}
movieClip 1413 {
}
movieClip 1415 {
}
movieClip 1421 {
}
movieClip 1434 {
}
movieClip 1435 {
}
movieClip 1436 {
frame 1 {
gotoAndPlay('slice');
}
frame 2 {
gotoAndPlay('strike');
}
frame 3 {
gotoAndPlay('extend');
}
frame 4 {
gotoAndPlay('strike');
}
frame 51 {
gotoAndPlay(random(4));
}
frame 52 {
gotoAndPlay(random(4));
}
frame 88 {
gotoAndPlay(random(4));
}
frame 151 {
_root.backdetail.play();
}
frame 190 {
gotoAndPlay(random(4));
}
frame 191 {
gotoAndPlay(random(4));
}
frame 192 {
gotoAndPlay(random(4));
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
frame 199 {
damage = _root.strength + random(_root.luck);
_root.enemyhealth -= damage;
if (_root.enemyhealth <= 0) {
gotoAndPlay('dead');
}
crit = _root.strength + random(_root.luck);
if (crit > 15) {
_root.criticalm.play();
}
}
frame 200 {
if (_root.enemyhealth > 0) {
gotoAndPlay(random(4));
}
}
frame 201 {
if (_root.enemyhealth <= 0) {
_parent.gotoAndStop('winss');
} else {
play();
}
}
}
instance enemy of movieClip 1436 {
onClipEvent (enterFrame) {
if (_root.enemyhealth < 0) {
_root.enemyhealth = 0;
}
if (_root.health < 0) {
_root.health = 0;
}
if (this.Target.hitTest(_root.you.hit)) {
this.gotoAndPlay('hurt');
_root.gothit.play();
}
}
}
movieClip 1437 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 1437 {
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
}
movieClip 1438 {
frame 1 {
stop();
}
frame 15 {
gotoAndPlay('meow');
}
}
instance of movieClip 1438 {
onClipEvent (enterFrame) {
this._xscale = _root.enemyhealth;
}
}
movieClip 1439 {
}
frame 1479 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
movieClip 1451 {
}
button 1453 {
on (release) {
gotoAndStop(1480);
stopAllSounds();
}
}
frame 1480 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(60) + 120;
_root.enemyhealth += random(50) + 120;
_root.enemyattk += random(1) + 5;
_root.score += 1;
}
frame 1480 {
_root.chris = true;
}
instance of movieClip 276 {
onClipEvent (enterFrame) {
if (_root.health < _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.health > _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.enemyhealth > _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
if (_root.enemyhealth < _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
}
}
button 1467 {
on (release) {
gotoAndStop('help');
}
}
movieClip 1469 {
}
frame 1481 {
stopAllSounds();
_root.totalhealth += healthget;
}
movieClip 1472 {
}
movieClip 1473 {
frame 258 {
_root.play();
}
}
frame 1482 {
stop();
}
movieClip 1475 {
}
movieClip 1476 {
}
instance you of movieClip 461 {
onClipEvent (enterFrame) {
if (this.Target.hitTest(_root.enemy.hit)) {
this.gotoAndPlay('Hurt');
_root.gothitgd.play();
}
if (this.Target.hitTest(_root.enemy.stunner)) {
this.gotoAndPlay('stun');
_root.gothitgd.play();
}
if (_root.health <= 0) {
_parent.gotoAndStop('gameover');
}
}
}
movieClip 1480 {
}
movieClip 1481 {
}
movieClip 1521 {
}
movieClip 1531 {
}
movieClip 1542 {
}
movieClip 1550 {
}
movieClip 1571 {
}
movieClip 1573 {
}
movieClip 1581 {
}
movieClip 1596 {
}
movieClip 1601 {
}
movieClip 1603 {
}
movieClip 1605 {
}
movieClip 1606 {
}
movieClip 1610 {
}
movieClip 1612 {
}
movieClip 1614 {
}
movieClip 1616 {
}
movieClip 1618 {
}
movieClip 1620 {
}
movieClip 1621 {
}
movieClip 1623 {
}
movieClip 1625 {
}
movieClip 1630 {
}
movieClip 1632 {
}
movieClip 1634 {
}
movieClip 1635 {
}
movieClip 1637 {
}
movieClip 1638 {
frame 1 {
gotoAndPlay('slice');
}
frame 2 {
gotoAndPlay('strike');
}
frame 3 {
gotoAndPlay('extend');
}
frame 4 {
gotoAndPlay('bam');
}
frame 5 {
gotoAndPlay(random(4));
}
frame 74 {
gotoAndPlay(random(5));
}
frame 75 {
gotoAndPlay(random(5));
}
frame 76 {
gotoAndPlay(random(5));
}
frame 77 {
gotoAndPlay(random(5));
}
frame 213 {
gotoAndPlay(random(5));
}
frame 214 {
gotoAndPlay(random(5));
}
frame 215 {
gotoAndPlay(random(5));
}
frame 371 {
gotoAndPlay(random(5));
}
frame 372 {
gotoAndPlay(random(5));
}
frame 496 {
gotoAndPlay(random(5));
}
frame 497 {
gotoAndPlay(random(5));
}
frame 498 {
gotoAndPlay(random(5));
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
frame 505 {
damage = _root.strength + random(_root.luck);
_root.enemyhealth -= damage;
if (_root.enemyhealth <= 0) {
gotoAndPlay('dead');
}
crit = _root.strength + random(_root.luck);
if (crit > 16) {
_root.criticalm.play();
}
}
frame 506 {
if (_root.enemyhealth > 0) {
gotoAndPlay(random(5));
}
}
frame 507 {
if (_root.enemyhealth <= 0) {
_parent.gotoAndStop('winster');
} else {
play();
}
}
}
instance enemy of movieClip 1638 {
onClipEvent (enterFrame) {
if (_root.enemyhealth < 0) {
_root.enemyhealth = 0;
}
if (_root.health < 0) {
_root.health = 0;
}
if (this.Target.hitTest(_root.you.hit)) {
this.gotoAndPlay('hurt');
_root.gothit.play();
}
}
}
instance of movieClip 1437 {
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
}
instance of movieClip 1438 {
onClipEvent (enterFrame) {
this._xscale = _root.enemyhealth;
}
}
movieClip 1639 {
}
frame 1483 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}
movieClip 1651 {
}
button 1653 {
on (release) {
gotoAndStop(1484);
stopAllSounds();
}
}
frame 1484 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(60) + 120;
_root.enemyhealth += random(50) + 120;
_root.enemyattk += random(1) + 5;
_root.score += 1;
}
frame 1484 {
_root.chris = true;
}
instance of movieClip 276 {
onClipEvent (enterFrame) {
if (_root.health < _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.health > _root.totalhealth) {
_root.health = _root.totalhealth;
}
if (_root.enemyhealth > _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
if (_root.enemyhealth < _root.totalenemyhealth) {
_root.enemyhealth = _root.totalenemyhealth;
}
}
}
button 1667 {
on (release) {
gotoAndStop('help');
}
}
frame 1485 {
stopAllSounds();
_root.totalhealth += healthget;
}
movieClip 1670 {
}
movieClip 1672 {
}
movieClip 1673 {
frame 258 {
_root.play();
}
}
frame 1486 {
stop();
}
movieClip 1675 {
}
instance you of movieClip 461 {
onClipEvent (enterFrame) {
if (this.Target.hitTest(_root.enemy.hit)) {
this.gotoAndPlay('Hurt');
_root.gothitgd.play();
}
if (this.Target.hitTest(_root.enemy.stunner)) {
this.gotoAndPlay('stun');
_root.gothitgd.play();
}
if (_root.health <= 0) {
_parent.gotoAndStop('gameover');
}
}
}
movieClip 1679 {
}
movieClip 1688 {
frame 6 {
stop();
}
}
movieClip 1693 {
}
movieClip 1696 {
}
movieClip 1708 {
}
movieClip 1710 {
frame 1 {
gotoAndPlay('slice');
}
frame 2 {
gotoAndPlay('strike');
}
frame 3 {
gotoAndPlay('extend');
}
frame 4 {
gotoAndPlay('bam');
}
frame 5 {
gotoAndPlay(random(4));
}
frame 25 {
gotoAndPlay('extend');
}
frame 26 {
gotoAndPlay('extend');
}
frame 27 {
gotoAndPlay('extend');
}
frame 28 {
gotoAndPlay('extend');
}
frame 114 {
gotoAndPlay('slice');
}
frame 164 {
gotoAndPlay(random(5));
}
frame 165 {
gotoAndPlay(random(5));
}
frame 166 {
gotoAndPlay(random(5));
}
frame 322 {
gotoAndPlay(random(5));
}
frame 323 {
gotoAndPlay(random(5));
}
frame 447 {
gotoAndPlay(random(5));
}
frame 448 {
gotoAndPlay(random(5));
}
frame 449 {
gotoAndPlay(random(5));
}
frame 456 {
damage = _root.strength + random(_root.luck);
_root.enemyhealth -= damage;
if (_root.enemyhealth <= 0) {
gotoAndPlay('dead');
}
crit = _root.strength + random(_root.luck);
if (crit > 16) {
_root.criticalm.play();
}
}
frame 457 {
if (_root.enemyhealth > 0) {
gotoAndPlay(random(5));
}
}
frame 458 {
if (_root.enemyhealth <= 0) {
_parent.gotoAndStop('winster');
} else {
play();
}
}
instance of movieClip 393 {
onClipEvent (enterFrame) {
this._rotation += 100;
}
}
}
instance enemy of movieClip 1710 {
onClipEvent (enterFrame) {
if (_root.enemyhealth < 0) {
_root.enemyhealth = 0;
}
if (_root.health < 0) {
_root.health = 0;
}
if (this.Target.hitTest(_root.you.hit)) {
this.gotoAndPlay('hurt');
_root.gothit.play();
}
}
}
instance of movieClip 1437 {
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
}
instance of movieClip 1438 {
onClipEvent (enterFrame) {
this._xscale = _root.enemyhealth;
}
}
movieClip 1711 {
}
frame 1487 {
stop();
_root.healthget = random(3) + 1;
_root.pointget = random(1) + 1;
_root.totalhealth += healthget;
_root.extra += pointget;
_root.totalenemyhealth += random(5) + 3;
_root.enemyattk += random(1) + 1;
_root.score += 1;
}