Frame 1
loaded = _root.getBytesLoaded();
total = _root.getBytesTotal();
loadp = Math.round((loaded / total) * 100);
_root.loadbar._xscale = loadp;
ldp = loadp + "%";
Frame 2
if (loaded != total) {
gotoAndPlay (1);
}
Frame 3
function getheromovements() {
tbdelay = tbdelay - 1;
omg = _root.scenery._y;
omg2 = _root.scenery._x;
if ((Key.isDown(37) && (_root.attacking == 0)) && (_root.moveable == 1)) {
if (Key.isDown(16) != true) {
_root.hero.gotoAndStop("walkleft");
movemap(-3);
}
if (Key.isDown(16) && (_root.stamina > 6)) {
_root.hero.gotoAndStop("nitro2");
movemap(-16);
}
}
if ((Key.isDown(39) && (_root.attacking == 0)) && (_root.moveable == 1)) {
if ((Key.isDown(32) != true) && (Key.isDown(16) != true)) {
_root.hero.gotoAndStop("walk");
movemap(1.2);
}
if ((Key.isDown(32) && (Key.isDown(16) != true)) && (_root.stamina > 1)) {
_root.hero.gotoAndStop("sprint");
movemap(3.2);
}
if ((Key.isDown(16) && (Key.isDown(32) != true)) && (_root.stamina > 6)) {
_root.hero.gotoAndStop("nitro");
movemap(16);
}
}
if (((Key.isDown(39) != true) && (Key.isDown(37) != true)) && (_root.attacking == 0)) {
_root.hero.gotoAndStop("stand");
}
if (Key.isDown(65) && (_root.attacking == 0)) {
_root.hero.gotoAndStop("attack1");
}
if (Key.isDown(83) && (_root.attacking == 0)) {
_root.hero.gotoAndStop("attack2");
}
if (Key.isDown(68) && (_root.attacking == 0)) {
_root.hero.gotoAndStop("attack3");
}
if (Key.isDown(67) && (_root.attacking == 0)) {
_root.hero.gotoAndStop("blocking");
}
if (Key.isDown(81)) {
if ((techs > 1) && (tbdelay < 0)) {
tbdelay = 40;
specialmov = specialmov + 1;
_root.specialHUD.gotoAndStop(specialmov);
if (specialmov == 4) {
_root.specialHUD.gotoAndStop(1);
}
}
}
if (specialmov > 3) {
specialmov = 1;
}
if (Key.isDown(90) && (_root.attacking == 0)) {
if ((specialmov == 1) && (stamina > 15)) {
_root.hero.gotoAndStop("special1");
}
if ((specialmov == 2) && (stamina > 30)) {
_root.hero.gotoAndStop("special2");
}
if ((specialmov == 3) && (stamina > 90)) {
_root.hero.gotoAndStop("bestshot");
}
}
if (((_root.combo1 == true) && (_root.attacking == 0)) && (_root.stamina > 5)) {
_root.hero.gotoAndStop("combo1");
_root.combo1 = false;
}
if (((_root.combo2 == true) && (_root.attacking == 0)) && (_root.stamina > 10)) {
_root.hero.gotoAndStop("combo2");
_root.combo2 = false;
}
}
function recoverstamina() {
if (_root.stamina < 100) {
stamina = stamina + 1;
}
}
function fixhealth() {
if ((_root.health > 100) || (_global.health > 100)) {
health = 100;
}
if ((_root.health < 0) || (_global.health < 0)) {
bgs1.stop();
boss1.stop();
_root.health = 100;
_global.health = 100;
gotoAndPlay (879);
}
}
function winlv1() {
if ((_root.scenery._x < -4932) && (curlvl == 1)) {
_global.allscore = _root.score;
bgs1.stop();
gotoAndPlay (592);
}
if ((_root.scenery._x < -6453) && (curlvl == 2)) {
_global.allscore = _root.score;
bgs1.stop();
gotoAndPlay (729);
}
if ((_root.won == 1) && (curlvl == 3)) {
_root.won = 0;
_global.allscore = _root.score;
bgs1.stop();
boss1.stop();
gotoAndPlay (870);
}
}
function checknitro() {
if (Key.isDown(39) && (_root.attacking == 0)) {
if ((Key.isDown(16) && (Key.isDown(32) != true)) && (_root.stamina > 6)) {
_root.boost = 1;
_root.effects.gotoAndStop("blurry");
} else {
_root.boost = 0;
}
} else {
_root.boost = 0;
}
}
function checknitro2() {
if (Key.isDown(37) && (_root.attacking == 0)) {
if ((Key.isDown(16) && (Key.isDown(32) != true)) && (_root.stamina > 6)) {
_root.boost2 = 1;
_root.effects.gotoAndStop("blurry2");
} else {
_root.boost2 = 0;
}
} else {
_root.boost2 = 0;
}
}
function fixstamina() {
if (_root.stamina < 0) {
_root.stamina = 0;
}
}
function setstuff() {
_global.health = _root.health;
}
Stage.showMenu = false;
_global.defaultqt = 2;
_global.bodydissapear = 1;
_global.backscenery = 1;
_global.pipesandbushes = 1;
setInterval(getheromovements, 1);
setInterval(checknitro2, 1);
setInterval(fixstamina, 1);
setInterval(checknitro, 1);
setInterval(recoverstamina, 1000);
setInterval(fixhealth, 1);
setInterval(winlv1, 1);
setInterval(setstuff, 1);
Frame 38
stop();
Frame 39
stop();
Instance of Symbol 66 MovieClip "pw" in Frame 39
onClipEvent (load) {
_root.key = "Input PW here";
_root.thepw = null;
_root.btg._visible = false;
this._visible = false;
}
Frame 40
stop();
Frame 41
stop();
Frame 42
stop();
Frame 43
stop();
Frame 44
stop();
Instance of Symbol 136 MovieClip in Frame 45
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.gotoAndPlay("lvtitle");
}
}
Frame 591
function movemap(x) {
scenery._x = scenery._x - x;
}
function movemap2(y) {
scenery._y = scenery._y - y;
}
stop();
if (_global.defaultqt == 1) {
_root._quality = "low";
} else if (_global.defaultqt == 2) {
_root._quality = "medium";
} else if ((_global.defaultqt == 3) || (_global.defaultqt == null)) {
_root._quality = "high";
}
curlvl = 1;
nos1 = 1;
_root.blocking = 0;
nos2 = 1;
_root.score = 0;
_root.moveable = 1;
_root.combo1 = false;
if (learned == null) {
techs = 1;
specialmov = 1;
}
health = 100;
stamina = 100;
_root.jumping = false;
_root.attacking = 0;
sword1 = new Sound();
sword1.attachSound("sword1");
sword2 = new Sound();
sword2.attachSound("sword2");
sword3 = new Sound();
sword3.attachSound("sword3");
wind = new Sound();
wind.attachSound("windnos");
combos1 = new Sound();
combos1.attachSound("Attack2");
die01 = new Sound();
die01.attachSound("enemydie01");
pl_slosh1 = new Sound();
pl_slosh1.attachSound("pl_slosh1");
pl_slosh2 = new Sound();
pl_slosh2.attachSound("pl_slosh2");
pl_slosh3 = new Sound();
pl_slosh3.attachSound("pl_slosh3");
pl_slosh4 = new Sound();
pl_slosh4.attachSound("pl_slosh4");
takedmgs = new Sound();
takedmgs.attachSound("Blow3");
hitfactory = new Sound();
hitfactory.attachSound("Blow2");
knockblocks = new Sound();
knockblocks.attachSound("Blow4");
bones = new Sound();
bones.attachSound("bones");
laser1 = new Sound();
laser1.attachSound("Laser1");
pl_pain6 = new Sound();
pl_pain6.attachSound("pl_pain6");
pl_pain7 = new Sound();
pl_pain7.attachSound("pl_pain7");
explosions = new Sound();
explosions.attachSound("Explosion4");
recovers = new Sound();
recovers.attachSound("recovers");
specs1 = new Sound();
specs1.attachSound("Flashlight2");
bgs1 = new Sound();
bgs1.attachSound("madnessloop1");
bgs1.start(0, 999);
Instance of Symbol 442 MovieClip "scenery" in Frame 591
onClipEvent (load) {
this._x = 578;
}
Instance of Symbol 543 MovieClip "baloon" in Frame 591
onClipEvent (load) {
stop();
}
Instance of Symbol 590 MovieClip "specialHUD" in Frame 591
onClipEvent (load) {
stop();
}
Frame 593
_root._quality = "high";
Jfanfare4 = new Sound();
Jfanfare4.attachSound("Jfanfare4");
Jfanfare4.setVolume(90);
Jfanfare4.start(-1, 0);
stop();
Instance of Symbol 136 MovieClip in Frame 594
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.gotoAndPlay("lv2title");
}
}
Frame 728
function movemap(x) {
scenery._x = scenery._x - x;
}
function movemap2(y) {
scenery._y = scenery._y - y;
}
_root.score = _global.allscore;
tbdelay = 0;
stop();
if (_global.defaultqt == 1) {
_root._quality = "low";
} else if (_global.defaultqt == 2) {
_root._quality = "medium";
} else if ((_global.defaultqt == 3) || (_global.defaultqt == null)) {
_root._quality = "high";
}
curlvl = 2;
nos1 = 1;
_root.blocking = 0;
nos2 = 1;
_root.moveable = 1;
_root.combo1 = false;
_root.combo2 = false;
_root.combo3 = false;
techs = 3;
specialmov = 1;
health = 100;
stamina = 100;
_root.jumping = false;
_root.attacking = 0;
sword1 = new Sound();
sword1.attachSound("sword1");
sword2 = new Sound();
sword2.attachSound("sword2");
sword3 = new Sound();
sword3.attachSound("sword3");
wind = new Sound();
wind.attachSound("windnos");
combos1 = new Sound();
combos1.attachSound("Attack2");
die01 = new Sound();
die01.attachSound("enemydie01");
pl_slosh1 = new Sound();
pl_slosh1.attachSound("pl_slosh1");
pl_slosh2 = new Sound();
pl_slosh2.attachSound("pl_slosh2");
pl_slosh3 = new Sound();
pl_slosh3.attachSound("pl_slosh3");
pl_slosh4 = new Sound();
pl_slosh4.attachSound("pl_slosh4");
takedmgs = new Sound();
takedmgs.attachSound("Blow3");
hitfactory = new Sound();
hitfactory.attachSound("Blow2");
knockblocks = new Sound();
knockblocks.attachSound("Blow4");
bones = new Sound();
bones.attachSound("bones");
laser1 = new Sound();
laser1.attachSound("Laser1");
pl_pain6 = new Sound();
pl_pain6.attachSound("pl_pain6");
pl_pain7 = new Sound();
pl_pain7.attachSound("pl_pain7");
explosions = new Sound();
explosions.attachSound("Explosion4");
recovers = new Sound();
recovers.attachSound("recovers");
specs1 = new Sound();
specs1.attachSound("Flashlight2");
specs2 = new Sound();
specs2.attachSound("Darkness5");
bgs1 = new Sound();
bgs1.attachSound("loop5");
bgs1.setVolume(70);
bgs1.start(0, 999);
function setstuff() {
_global.health = _root.health;
}
setInterval(setstuff, 1);
Instance of Symbol 723 MovieClip "scenery" in Frame 728
onClipEvent (load) {
this._x = 538;
}
Instance of Symbol 543 MovieClip "baloon" in Frame 728
onClipEvent (load) {
stop();
}
Instance of Symbol 590 MovieClip "specialHUD" in Frame 728
onClipEvent (load) {
stop();
}
Frame 730
_root._quality = "high";
Jfanfare4 = new Sound();
Jfanfare4.attachSound("Jfanfare4");
Jfanfare4.setVolume(90);
Jfanfare4.start(-1, 0);
stop();
Instance of Symbol 136 MovieClip in Frame 731
onClipEvent (enterFrame) {
if (Key.isDown(83)) {
_root.gotoAndPlay("lv3title");
}
}
Frame 867
function movemap(x) {
scenery._x = scenery._x - x;
}
function movemap2(y) {
scenery._y = scenery._y - y;
}
_root.score = _global.allscore;
tbdelay = 0;
stop();
if (_global.defaultqt == 1) {
_root._quality = "low";
} else if (_global.defaultqt == 2) {
_root._quality = "medium";
} else if ((_global.defaultqt == 3) || (_global.defaultqt == null)) {
_root._quality = "high";
}
curlvl = 3;
nos1 = 1;
_root.blocking = 0;
nos2 = 1;
_root.moveable = 1;
_root.combo1 = false;
_root.combo2 = false;
_root.combo3 = false;
techs = 3;
specialmov = 1;
health = 100;
stamina = 100;
_root.jumping = false;
_root.attacking = 0;
sword1 = new Sound();
sword1.attachSound("sword1");
sword2 = new Sound();
sword2.attachSound("sword2");
sword3 = new Sound();
sword3.attachSound("sword3");
wind = new Sound();
wind.attachSound("windnos");
combos1 = new Sound();
combos1.attachSound("Attack2");
die01 = new Sound();
die01.attachSound("enemydie01");
pl_slosh1 = new Sound();
pl_slosh1.attachSound("pl_slosh1");
pl_slosh2 = new Sound();
pl_slosh2.attachSound("pl_slosh2");
pl_slosh3 = new Sound();
pl_slosh3.attachSound("pl_slosh3");
pl_slosh4 = new Sound();
pl_slosh4.attachSound("pl_slosh4");
takedmgs = new Sound();
takedmgs.attachSound("Blow3");
hitfactory = new Sound();
hitfactory.attachSound("Blow2");
knockblocks = new Sound();
knockblocks.attachSound("Blow4");
bones = new Sound();
bones.attachSound("bones");
laser1 = new Sound();
laser1.attachSound("Laser1");
pl_pain6 = new Sound();
pl_pain6.attachSound("pl_pain6");
pl_pain7 = new Sound();
pl_pain7.attachSound("pl_pain7");
explosions = new Sound();
explosions.attachSound("Explosion4");
recovers = new Sound();
recovers.attachSound("recovers");
specs1 = new Sound();
specs1.attachSound("Flashlight2");
specs2 = new Sound();
specs2.attachSound("Darkness5");
bgs1 = new Sound();
bgs1.attachSound("loop8");
bgs1.start(0, 999);
bgs1.setVolume(70);
boss1 = new Sound();
boss1.attachSound("loop6");
function setstuff() {
_global.health = _root.health;
}
setInterval(setstuff, 1);
Instance of Symbol 765 MovieClip "scenery" in Frame 867
onClipEvent (load) {
this._x = 462.5;
this._y = 161.5;
}
Instance of Symbol 543 MovieClip "baloon" in Frame 867
onClipEvent (load) {
stop();
}
Instance of Symbol 590 MovieClip "specialHUD" in Frame 867
onClipEvent (load) {
stop();
}
Frame 868
play();
gotoAndPlay (874);
Frame 869
play();
Frame 870
play();
gotoAndPlay (874);
Frame 871
play();
Frame 872
play();
gotoAndPlay (874);
Frame 873
play();
Frame 878
_root._quality = "high";
Jfanfare4 = new Sound();
Jfanfare4.attachSound("Jfanfare4");
Jfanfare4.setVolume(90);
Jfanfare4.start(-1, 0);
score = _global.allscore;
stop();
Frame 879
_root._quality = "high";
stop();
Symbol 44 Button
on (release) {
gotoAndPlay (40);
}
Symbol 45 Button
on (release) {
gotoAndPlay (39);
}
Symbol 46 Button
on (release) {
gotoAndPlay (41);
}
Symbol 47 Button
on (release) {
gotoAndPlay (42);
}
Symbol 48 Button
on (release) {
gotoAndPlay (43);
}
Symbol 49 Button
on (release) {
getURL ("http://www.227movies.com", "blank");
}
Symbol 50 Button
on (release) {
gotoAndPlay (44);
}
Symbol 54 MovieClip Frame 1
function setmessage() {
msgpos = random(18) + 1;
if (msgpos == 2) {
rmess = "KadenMemorex sez: Bunjees will soon rule you all.";
} else if (msgpos == 1) {
rmess = "Syko227 sez: Feel good hit of the Summer~~~";
} else if (msgpos == 3) {
rmess = "IceCreamDude sez: Oh teh noes this game is soo violent!!11";
} else if (msgpos == 4) {
rmess = "Syko227's friends sez: OMR it Pwnz!";
} else if (msgpos == 5) {
rmess = "NB sez: Teh noes!!!";
} else if (msgpos == 6) {
rmess = "someone sez: something.";
} else if (msgpos == 7) {
rmess = "KCKKC sez: allright";
} else if (msgpos == 8) {
rmess = "OneToThree sez: OMG I need cheats!";
} else if (msgpos == 9) {
rmess = "me sez: aight let's play this shit.";
} else if (msgpos == 10) {
rmess = "Tips sez: X C X = combo1 sequence ^^.";
} else if (msgpos == 11) {
rmess = "anonymous sez: I have TEH ANGER!!11";
} else if (msgpos == 12) {
rmess = "anonymous sez: Yea it's cool";
} else if (msgpos == 13) {
rmess = "Jesse sez: hi yall '(^.^)'";
} else if (msgpos == 14) {
rmess = "Syko227's toughts sez: OMG click on my sponsors (lol)";
} else if (msgpos == 15) {
rmess = "monk sez: hello ??";
} else if (msgpos == 16) {
rmess = "Syko227 sez: QOTSA > any other band";
} else if (msgpos == 17) {
rmess = "Victor sez: By the time you read this, you already read it.";
} else if (msgpos == 18) {
rmess = "but aBIGidea says: SFC 4 life";
}
}
setInterval(setmessage, 4000);
Symbol 57 MovieClip Frame 25
stop();
Symbol 60 Button
on (release) {
gotoAndPlay (38);
}
Symbol 67 Button
on (press) {
_root.thepw = _root.key;
if (((_root.thepw == "010twist") || (_root.thepw == "010TWIST")) || (_root.thepw == 9009)) {
_global.allscore = 0;
gotoAndPlay (594);
}
if (_root.thepw == 7899) {
_global.allscore = 0;
gotoAndPlay (731);
}
}
Symbol 73 Button
on (press) {
gotoAndPlay (45);
}
Symbol 74 Button
on (press) {
_root.pw._visible = true;
_root.btg._visible = true;
}
Symbol 89 Button
on (press) {
_global.defaultqt = 1;
_root.qtset = "low";
_root.sett.gotoAndPlay(2);
}
Symbol 90 Button
on (press) {
_global.defaultqt = 2;
_root.qtset = "medium";
_root.sett.gotoAndPlay(2);
}
Symbol 91 Button
on (press) {
_global.defaultqt = 3;
_root.qtset = "high";
_root.sett.gotoAndPlay(2);
}
Symbol 92 Button
on (press) {
_global.backscenery = 1;
_global.pipesandbushes = 1;
_root.qtset = "bs on";
_root.sett.gotoAndPlay(2);
}
Symbol 93 Button
on (press) {
_global.backscenery = 0;
_global.pipesandbushes = 0;
_root.qtset = "bs off";
_root.sett.gotoAndPlay(2);
}
Symbol 94 Button
on (press) {
_global.bodydissapear = 1;
_root.qtset = "disappear";
_root.sett.gotoAndPlay(2);
}
Symbol 95 Button
on (press) {
_global.bodydissapear = 0;
_root.qtset = "stay";
_root.sett.gotoAndPlay(2);
}
Symbol 98 MovieClip Frame 1
stop();
Symbol 226 MovieClip Frame 1
stop();
Symbol 235 MovieClip Frame 5
stop();
Symbol 272 MovieClip Frame 1
_root.knockblocks.start(0, 0);
Symbol 272 MovieClip Frame 21
_parent.remove = 1;
stop();
Instance of Symbol 226 MovieClip in Symbol 273 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.moveable = 0;
_root.movemap(-7);
} else {
_root.moveable = 1;
}
if (this.hitTest(_root.hero.atk1.slash)) {
gotoAndPlay (2);
}
if (this.hitTest(_root.hero.atk2.slash)) {
_root.score = _root.score + 15;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.atk3.slash)) {
_root.score = _root.score + 20;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.spec1.slash)) {
_root.score = _root.score + 40;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.spec2.slash)) {
_root.score = _root.score + 40;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.combo1.slash)) {
_root.score = _root.score + 30;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.combo2.slash)) {
_root.score = _root.score + 30;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.best.slash)) {
_root.score = _root.score + 100;
_parent.gotoAndStop("destroy");
}
}
Instance of Symbol 136 MovieClip in Symbol 273 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.remove == 1) {
_parent.swapDepths(999);
_parent.removeMovieClip();
}
}
Symbol 276 MovieClip Frame 1
_root.laser1.start(0, 0);
Symbol 276 MovieClip Frame 11
stop();
_parent.removeMovieClip();
Instance of Symbol 275 MovieClip in Symbol 277 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 50;
_parent.gotoAndStop("dead");
}
}
Symbol 279 MovieClip Frame 1
stop();
stop();
Symbol 290 MovieClip Frame 1
_root.knockblocks.start(0, 0);
Symbol 290 MovieClip Frame 25
stop();
Instance of Symbol 279 MovieClip in Symbol 291 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.moveable = 0;
_root.movemap(-7);
if (Key.isDown(16) && (Key.isDown(39))) {
_root.health = _root.health - 10;
_root.hero.gotoAndStop("damage");
}
} else {
_root.moveable = 1;
}
if (this.hitTest(_root.hero.atk1.slash)) {
gotoAndPlay (2);
}
if (this.hitTest(_root.hero.atk2.slash)) {
_root.score = _root.score + 15;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.atk3.slash)) {
_root.score = _root.score + 20;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.spec1.slash)) {
_root.score = _root.score + 40;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.spec2.slash)) {
_root.score = _root.score + 40;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.combo1.slash)) {
_root.score = _root.score + 30;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.combo2.slash)) {
_root.score = _root.score + 30;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.best.slash)) {
_root.score = _root.score + 100;
_parent.gotoAndStop("destroy");
}
}
Instance of Symbol 293 MovieClip in Symbol 295 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.attacking = 1;
_root.moveable = 0;
_root.movemap(10);
}
}
Instance of Symbol 294 MovieClip in Symbol 295 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.attacking = 0;
_root.moveable = 1;
_root.scenery._y = 120.5;
}
}
Symbol 301 MovieClip Frame 26
stop();
_parent.done = 1;
Instance of Symbol 297 MovieClip in Symbol 302 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero.atk1.slash)) {
_root.score = _root.score + 15;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.atk2.slash)) {
_root.score = _root.score + 15;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.atk3.slash)) {
_root.score = _root.score + 20;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.spec1.slash)) {
_root.score = _root.score + 40;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.spec2.slash)) {
_root.score = _root.score + 40;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.combo1.slash)) {
_root.score = _root.score + 30;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.combo2.slash)) {
_root.score = _root.score + 30;
_parent.gotoAndStop("destroy");
}
if (this.hitTest(_root.hero.best.slash)) {
_root.score = _root.score + 100;
_parent.gotoAndStop("destroy");
}
}
Symbol 310 MovieClip Frame 1
stop();
Symbol 310 MovieClip Frame 2
_root.hitfactory.start(0, 0);
Symbol 355 MovieClip Frame 1
_root.scenery.generator1.removeMovieClip();
_parent._parent.allow = 0;
_root.explosions.start(0, 0);
Symbol 355 MovieClip Frame 23
_parent.removeMovieClip();
stop();
Instance of Symbol 310 MovieClip in Symbol 356 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero.atk1.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk2.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 100;
_parent.gotoAndStop("broke");
}
if (_parent.health < 0) {
_parent.gotoAndStop("broke");
}
}
Symbol 368 MovieClip Frame 1
stop();
Symbol 368 MovieClip Frame 5
stop();
Symbol 401 MovieClip Frame 1
function sound1() {
if (rd1 == 1) {
_root.pl_slosh1.start(0, 0);
} else if (rd1 == 2) {
_root.pl_slosh2.start(0, 0);
} else if (rd1 == 3) {
_root.pl_slosh3.start(0, 0);
} else if (rd1 == 4) {
_root.pl_slosh4.start(0, 0);
}
}
function sound2() {
if (rd3 == 1) {
_root.pl_slosh1.start(0, 0);
} else if (rd2 == 2) {
_root.pl_slosh2.start(0, 0);
} else if (rd2 == 3) {
_root.pl_slosh3.start(0, 0);
} else if (rd2 == 4) {
_root.pl_slosh4.start(0, 0);
}
}
function sound3() {
if (rd3 == 1) {
_root.pl_slosh1.start(0, 0);
} else if (rd3 == 2) {
_root.pl_slosh2.start(0, 0);
} else if (rd3 == 3) {
_root.pl_slosh3.start(0, 0);
} else if (rd3 == 4) {
_root.pl_slosh4.start(0, 0);
}
}
function sound4() {
if (rd4 == 1) {
_root.pl_slosh1.start(0, 0);
} else if (rd4 == 2) {
_root.pl_slosh2.start(0, 0);
} else if (rd4 == 3) {
_root.pl_slosh3.start(0, 0);
} else if (rd4 == 4) {
_root.pl_slosh4.start(0, 0);
}
}
_root.stamina = _root.stamina + 1;
rd1 = random(4) + 1;
rd2 = random(4) + 1;
rd3 = random(4) + 1;
rd4 = random(4) + 1;
_root.die01.start(0, 0);
Symbol 401 MovieClip Frame 12
sound1();
Symbol 401 MovieClip Frame 14
sound2();
Symbol 401 MovieClip Frame 15
sound3();
Symbol 401 MovieClip Frame 25
sound4();
Symbol 401 MovieClip Frame 30
if (_global.bodydissapear != 1) {
stop();
}
Symbol 401 MovieClip Frame 35
_parent.takeover = 1;
stop();
Instance of Symbol 360 MovieClip in Symbol 402 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent.takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
}
}
Instance of Symbol 364 MovieClip in Symbol 402 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_parent.wall) != true) {
_parent._x = _parent._x - 1;
}
if (this.hitTest(_parent.wall) || (this.hitTest(_root.hero))) {
_parent.gotoAndStop("walkright");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
trace(_parent.health);
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
trace(_parent.health);
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.gotoAndStop("dieleft");
}
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("dieleft");
}
}
Instance of Symbol 364 MovieClip in Symbol 402 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_parent.wall2) != true) {
_parent._x = _parent._x + 1;
}
if (this.hitTest(_parent.wall2)) {
_parent.gotoAndStop("walkleft");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.gotoAndStop("dieright");
}
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("dieright");
}
}
Instance of Symbol 410 MovieClip "skl" in Symbol 411 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero) && (_root.blocking == 0)) {
_root.health = _root.health - 4;
_root.hero.minidamage.gotoAndPlay(2);
_parent.gotoAndPlay(34);
} else if (this.hitTest(_root.hero) && (_root.blocking == 1)) {
_root.stamina = _root.stamina - 2;
_parent.gotoAndPlay(34);
} else if (this.hitTest(_root.hero) && (_root.blocking == 1)) {
_root.stamina = _root.stamina - 3;
rdd = 20;
if (rdd == 2) {
_root.health = _root.health - 1;
}
_parent.gotoAndPlay(34);
}
}
Instance of Symbol 410 MovieClip in Symbol 411 MovieClip Frame 30
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero) && (_root.blocking == 0)) {
_root.health = _root.health - 4;
_root.hero.gotoAndStop("damage");
_parent.gotoAndPlay(34);
} else if (this.hitTest(_root.hero) && (_root.blocking == 1)) {
_root.stamina = _root.stamina - 2;
_parent.gotoAndPlay(34);
} else if (this.hitTest(_root.hero) && (_root.blocking == 1)) {
_root.stamina = _root.stamina - 5;
_root.health = _root.health - 1;
_parent.gotoAndPlay(34);
}
}
Symbol 411 MovieClip Frame 35
_parent.delay = 200;
_parent.gotoAndStop("walkleft");
Symbol 414 MovieClip Frame 1
_root.bones.start(0, 0);
Symbol 414 MovieClip Frame 2
if (_root.stamina < 100) {
_root.stamina = _root.stamina + 5;
}
Symbol 414 MovieClip Frame 3
_parent._parent.totalskulls = _parent._parent.totalskulls - 1;
if (_global.bodydissapear != 1) {
stop();
}
Symbol 414 MovieClip Frame 4
_parent.takeover = 1;
stop();
Instance of Symbol 405 MovieClip in Symbol 415 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent.skulllimit1) != true) {
_parent._x = _parent._x - 1;
}
if (this.hitTest(_parent._parent.skulllimit1) || (this.hitTest(_root.hero))) {
_parent.gotoAndStop("walkright");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.gotoAndStop("dieleft");
}
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("dieleft");
}
if (_root.hero.hitTest(_parent.bonearea) && (_parent.delay < 1)) {
chance = random(30);
if (chance == 5) {
_parent.gotoAndStop("attackleft");
}
}
if (_parent.delay > 0) {
_parent.delay = _parent.delay - 1;
}
}
Instance of Symbol 411 MovieClip in Symbol 415 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_parent.skulllimit1) != true) {
_parent._x = _parent._x - 1;
}
if (this.hitTest(_parent.skulllimit1)) {
_parent.gotoAndStop("walkright");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.gotoAndStop("dieleft");
}
if ((this.skl.hitTest(_root.hero) && (_root.attacking == 0)) && (_root.blocking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("dieleft");
}
}
Instance of Symbol 405 MovieClip in Symbol 415 MovieClip Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent.skulllimit2) != true) {
_parent._x = _parent._x + 1;
}
if (this.hitTest(_parent._parent.skulllimit2)) {
_parent.gotoAndStop("walkleft");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.gotoAndStop("dieright");
}
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("dieright");
}
if (_root.hero.hitTest(_parent.bonearea) && (_parent.delay < 1)) {
chance = random(90);
if (chance == 5) {
_parent.gotoAndStop("attackleft");
}
}
if (_parent.delay > 0) {
_parent.delay = _parent.delay - 1;
}
}
Symbol 428 MovieClip Frame 1
_root.recovers.start(0, 0);
Symbol 428 MovieClip Frame 11
stop();
_parent.removeMovieClip();
Instance of Symbol 417 MovieClip in Symbol 429 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
if (_root.health < 100) {
_root.health = _root.health + 25;
}
_parent.gotoAndStop("gone");
}
}
Symbol 440 MovieClip Frame 1
_root.die01.start(0, 0);
Symbol 440 MovieClip Frame 15
_parent.dead = 1;
stop();
Instance of Symbol 432 MovieClip in Symbol 441 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent.bence01) != true) {
_parent._x = _parent._x - 2;
}
if (this.hitTest(_parent._parent.bence01) || (this.hitTest(_root.hero))) {
_parent.gotoAndStop("walkright");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 40;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 1000;
_parent.gotoAndStop("death");
}
if ((arena.hitTest(_root.hero) && (_root.attacking == 0)) && (_root.blocking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("death");
}
}
Instance of Symbol 432 MovieClip in Symbol 441 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent.bence02) != true) {
_parent._x = _parent._x + 2;
}
if (this.hitTest(_parent._parent.bence02)) {
_parent.gotoAndStop("walkleft");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 40;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 1000;
_parent.gotoAndStop("death");
}
if ((arena.hitTest(_root.hero) && (_root.attacking == 0)) && (_root.blocking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("death");
}
}
Instance of Symbol 211 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_global.backscenery == 0) {
this.swapDepths(999);
this.removeMovieClip();
}
}
Instance of Symbol 213 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_global.pipesandbushes == 0) {
this.swapDepths(999);
this.removeMovieClip();
}
}
Instance of Symbol 216 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 218 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 220 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 222 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 277 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 291 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 291 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 291 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 291 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 136 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.baloon.gotoAndStop("baloon1");
}
}
Instance of Symbol 136 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.baloon.gotoAndStop("none");
}
}
Instance of Symbol 302 MovieClip "sign01" in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 291 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 291 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 291 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 356 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 500;
stop();
}
Instance of Symbol 277 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip "sign02" in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 273 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 358 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 302 MovieClip "sign03" in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 361 MovieClip "generator1" in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
i = 0;
_parent.totalskulls = 0;
_parent.allow = 1;
}
onClipEvent (enterFrame) {
if (((_parent.totalskulls < 5) && (_root.scenery._x > -1400)) && (_parent.allow == 1)) {
dupper = random(35);
if (dupper == 14) {
i = i + 1;
_parent.skull.duplicateMovieClip("skull" + i, i);
}
}
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 415 MovieClip "skull" in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
_parent.totalskulls = _parent.totalskulls + 1;
this._y = 19.9;
this._x = 1564.45;
this.health = 350;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 429 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 402 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 441 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
health = 700;
moveon = 1;
stop();
}
onClipEvent (enterFrame) {
if (dead == 1) {
this.removeMovieClip();
}
if (_root.hero.hitTest(_parent.ourarena01) && (moveon == 1)) {
moveon = 0;
gotoAndStop ("walkleft");
}
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 441 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
health = 700;
moveon = 1;
stop();
}
onClipEvent (enterFrame) {
if (dead == 1) {
this.removeMovieClip();
}
if (_root.hero.hitTest(_parent.ourarena01) && (moveon == 1)) {
moveon = 0;
gotoAndStop ("walkleft");
}
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 441 MovieClip in Symbol 442 MovieClip Frame 1
onClipEvent (load) {
health = 700;
moveon = 1;
stop();
}
onClipEvent (enterFrame) {
if (dead == 1) {
this.removeMovieClip();
}
if (_root.hero.hitTest(_parent.ourarena01) && (moveon == 1)) {
moveon = 0;
gotoAndStop ("walkleft");
}
}
onClipEvent (enterFrame) {
if ((_root.scenery._x > -1400) != false) {
this._visible = false;
} else {
this._visible = true;
}
}
Symbol 448 MovieClip Frame 1
stop();
Symbol 448 MovieClip Frame 2
_root.blocking = 1;
_root.pl_pain6.start(0, 0);
Symbol 448 MovieClip Frame 15
_root.blocking = 0;
Symbol 457 MovieClip Frame 1
_root.attacking = 1;
Symbol 457 MovieClip Frame 2
_root.sword1.start(0, 0);
Symbol 457 MovieClip Frame 8
_root.attacking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 466 MovieClip Frame 1
_root.movemap(2);
_root.attacking = 1;
Symbol 466 MovieClip Frame 2
_root.sword2.start(0, 0);
_root.movemap2(-3);
_root.movemap(2);
Symbol 466 MovieClip Frame 3
_root.movemap2(-2);
_root.movemap(2);
Symbol 466 MovieClip Frame 4
_root.movemap2(-1);
_root.movemap(2);
Symbol 466 MovieClip Frame 5
_root.movemap(2);
Symbol 466 MovieClip Frame 6
_root.movemap2(1);
_root.movemap(1);
Symbol 466 MovieClip Frame 7
_root.movemap2(2);
_root.movemap(1);
Symbol 466 MovieClip Frame 8
_root.movemap2(3);
_root.movemap(1);
Symbol 466 MovieClip Frame 9
_root.movemap(1);
Symbol 466 MovieClip Frame 10
_root.attacking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 475 MovieClip Frame 1
_root.attacking = 1;
Symbol 475 MovieClip Frame 2
_root.sword3.start(0, 0);
Symbol 475 MovieClip Frame 3
_root.movemap2(-4);
Symbol 475 MovieClip Frame 4
_root.movemap2(-3);
Symbol 475 MovieClip Frame 5
_root.movemap2(-1);
Symbol 475 MovieClip Frame 7
_root.movemap2(2);
Symbol 475 MovieClip Frame 8
_root.movemap2(3);
Symbol 475 MovieClip Frame 9
_root.movemap2(3);
_root.attacking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 484 MovieClip Frame 1
_root.attacking = 1;
Symbol 484 MovieClip Frame 2
_root.effects.gotoAndStop("effect1");
_root.specs1.start(0, 0);
_root.movemap(4);
_root.stamina = _root.stamina - 2;
Symbol 484 MovieClip Frame 3
_root.movemap(4);
_root.stamina = _root.stamina - 2;
Symbol 484 MovieClip Frame 4
_root.movemap(3);
_root.stamina = _root.stamina - 2;
Symbol 484 MovieClip Frame 5
_root.movemap(3);
_root.stamina = _root.stamina - 2;
Symbol 484 MovieClip Frame 6
_root.movemap(2);
_root.stamina = _root.stamina - 2;
Symbol 484 MovieClip Frame 7
_root.movemap(2);
_root.stamina = _root.stamina - 2;
Symbol 484 MovieClip Frame 8
_root.movemap(2);
_root.stamina = _root.stamina - 2;
Symbol 484 MovieClip Frame 9
_root.movemap(1);
_root.attacking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 494 MovieClip Frame 1
_root.movemap(1);
_root.attacking = 1;
_root.stamina = _root.stamina - 30;
Symbol 494 MovieClip Frame 2
_root.movemap(2);
_root.effects.gotoAndStop("effect2");
_root.specs1.start(0, 0);
Symbol 494 MovieClip Frame 3
_root.movemap(4);
Symbol 494 MovieClip Frame 4
_root.movemap(4);
Symbol 494 MovieClip Frame 5
_root.movemap(4);
Symbol 494 MovieClip Frame 6
_root.movemap(3);
Symbol 494 MovieClip Frame 7
_root.movemap(2);
Symbol 494 MovieClip Frame 8
_root.movemap(2);
Symbol 494 MovieClip Frame 9
_root.movemap(1);
Symbol 494 MovieClip Frame 10
_root.movemap(1);
Symbol 494 MovieClip Frame 11
_root.attacking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 505 MovieClip Frame 1
_root.combos1.start(0, 0);
_root.movemap(2);
_root.attacking = 1;
Symbol 505 MovieClip Frame 2
_root.stamina = _root.stamina - 1;
_root.movemap(2);
Symbol 505 MovieClip Frame 3
_root.stamina = _root.stamina - 1;
_root.movemap(2);
Symbol 505 MovieClip Frame 4
_root.stamina = _root.stamina - 1;
_root.movemap(2);
Symbol 505 MovieClip Frame 5
_root.stamina = _root.stamina - 1;
_root.movemap(2);
Symbol 505 MovieClip Frame 6
_root.stamina = _root.stamina - 1;
_root.combos1.start(0, 0);
_root.movemap(2);
Symbol 505 MovieClip Frame 7
_root.movemap(2);
Symbol 505 MovieClip Frame 8
_root.movemap(2);
Symbol 505 MovieClip Frame 9
_root.movemap(2);
Symbol 505 MovieClip Frame 10
_root.movemap(2);
Symbol 505 MovieClip Frame 11
_root.movemap(2);
_root.attacking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 516 MovieClip Frame 1
_root.attacking = 1;
_root.sword1.start(0, 0);
_root.stamina = _root.stamina - 5;
Symbol 516 MovieClip Frame 2
_root.stamina = _root.stamina - 5;
Symbol 516 MovieClip Frame 4
_root.sword2.start(0, 0);
_root.movemap(2);
Symbol 516 MovieClip Frame 5
_root.movemap(4);
Symbol 516 MovieClip Frame 6
_root.movemap(2);
Symbol 516 MovieClip Frame 7
_root.movemap(1);
Symbol 516 MovieClip Frame 8
_root.attacking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 526 MovieClip Frame 1
_root.movemap(1);
_root.effects.gotoAndStop("effect3");
_root.specs2.start(0, 0);
_root.stamina = _root.stamina - 30;
_root.attacking = 1;
Symbol 526 MovieClip Frame 2
_root.movemap(1);
_root.stamina = _root.stamina - 30;
Symbol 526 MovieClip Frame 3
_root.movemap(4);
_root.stamina = _root.stamina - 30;
Symbol 526 MovieClip Frame 4
_root.movemap(-8);
Symbol 526 MovieClip Frame 5
_root.movemap(8);
Symbol 526 MovieClip Frame 6
_root.movemap(-8);
Symbol 526 MovieClip Frame 7
_root.movemap(8);
Symbol 526 MovieClip Frame 8
_root.movemap(-8);
Symbol 526 MovieClip Frame 9
_root.movemap(4);
Symbol 526 MovieClip Frame 10
_root.attacking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 527 MovieClip Frame 1
_root.movemap(-4);
_root.attacking = 1;
_root.blocking = 1;
_root.pl_pain7.start(0, 0);
Symbol 527 MovieClip Frame 2
_root.movemap(-4);
Symbol 527 MovieClip Frame 3
_root.movemap(-3);
Symbol 527 MovieClip Frame 4
_root.movemap(-3);
Symbol 527 MovieClip Frame 5
_root.movemap(-2);
Symbol 527 MovieClip Frame 6
_root.movemap(-2);
Symbol 527 MovieClip Frame 7
_root.movemap(-2);
Symbol 527 MovieClip Frame 8
_root.movemap(-1);
Symbol 527 MovieClip Frame 10
_root.attacking = 0;
_root.blocking = 0;
stop();
_parent.gotoAndStop("stand");
Symbol 529 MovieClip Frame 4
_root.stamina = _root.stamina - 1;
Symbol 533 MovieClip Frame 1
if (_root.stamina < 6) {
stop();
_parent.gotoAndStop("stand");
}
_root.stamina = _root.stamina - 2;
Symbol 533 MovieClip Frame 2
_root.stamina = _root.stamina - 2;
Symbol 534 MovieClip Frame 1
_root.stamina = _root.stamina - 2;
Symbol 534 MovieClip Frame 2
if (_root.stamina < 6) {
stop();
_parent.gotoAndStop("stand");
}
_root.stamina = _root.stamina - 2;
Symbol 538 MovieClip Frame 1
_root.blocking = 1;
_root.attacking = 1;
Symbol 538 MovieClip Frame 5
if (Key.isDown(67) != true) {
_root.attacking = 0;
_root.blocking = 0;
_parent.gotoAndStop("stand");
} else {
gotoAndPlay (1);
}
_root.stamina = _root.stamina - 1;
Instance of Symbol 457 MovieClip "atk1" in Symbol 539 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this._currentframe == 8) {
_root.attacking = 0;
stop();
}
}
Symbol 552 MovieClip Frame 7
stop();
_parent.gotoAndStop(1);
Symbol 559 MovieClip Frame 1
if (_root.nos1 == 1) {
_root.bgs1.stop();
_root.wind.start(0, 20);
_root.nos1 = 0;
}
if (_root.boost == 0) {
stop();
_root.wind.stop();
_root.bgs1.start(0, 999);
_root.nos1 = 1;
_parent.gotoAndStop("none");
}
Symbol 560 MovieClip Frame 1
if (_root.nos2 == 1) {
_root.bgs1.stop();
_root.wind.start(0, 20);
_root.nos2 = 0;
}
if (_root.boost2 == 0) {
stop();
_root.wind.stop();
_root.bgs1.start(0, 999);
_root.nos2 = 1;
_parent.gotoAndStop("none");
}
Symbol 562 MovieClip Frame 7
stop();
_parent.gotoAndStop(1);
Symbol 571 MovieClip Frame 7
stop();
_parent.gotoAndStop(1);
Symbol 572 MovieClip Frame 1
stop();
Instance of Symbol 578 MovieClip in Symbol 585 MovieClip Frame 1
onClipEvent (enterFrame) {
this._xscale = _root.stamina;
}
Instance of Symbol 580 MovieClip in Symbol 585 MovieClip Frame 1
onClipEvent (enterFrame) {
this._xscale = _root.health;
}
Symbol 592 MovieClip Frame 1
comboclear1 = 1;
comboclear2 = 1;
comboclear3 = 1;
comboclear5 = 1;
comboclear6 = 1;
comboclear7 = 1;
xmod1 = 0;
xmod2 = 0;
xmod3 = 0;
xmod5 = 0;
xmod6 = 0;
xmod7 = 0;
Symbol 592 MovieClip Frame 2
function checkcombo2() {
if ((Key.isDown(65) && (comboclear5 == 1)) && (xmod5 == 0)) {
xmod5 = 1;
} else if (((Key.isDown(65) && (comboclear5 == 0)) && (xmod5 == 1)) && (xmod6 == 0)) {
xmod5 = 0;
xmod6 = 0;
}
if ((Key.isDown(83) && (comboclear6 == 1)) && (xmod6 == 0)) {
xmod6 = 1;
comboclear5 = 0;
} else if ((Key.isDown(83) && (comboclear6 == 0)) && (xmod6 == 1)) {
xmod5 = 0;
xmod6 = 0;
}
if ((Key.isDown(68) && (comboclear7 == 1)) && (xmod6 == 1)) {
_root.combo2 = true;
comboclear6 = 0;
xmod6 = 0;
xmod5 = 0;
}
if ((Key.isDown(90) || (Key.isDown(88))) || (Key.isDown(67))) {
xmod5 = 0;
xmod6 = 0;
}
}
function checkcombo1() {
if ((Key.isDown(88) && (comboclear1 == 1)) && (xmod1 == 0)) {
xmod1 = 1;
} else if (((Key.isDown(88) && (comboclear1 == 0)) && (xmod1 == 1)) && (xmod2 == 0)) {
xmod1 = 0;
xmod2 = 0;
}
if ((Key.isDown(67) && (comboclear2 == 1)) && (xmod1 == 1)) {
xmod2 = 1;
comboclear1 = 0;
} else if ((Key.isDown(67) && (comboclear2 == 0)) && (xmod2 == 1)) {
xmod1 = 0;
xmod2 = 0;
}
if ((Key.isDown(88) && (comboclear3 == 1)) && (xmod2 == 1)) {
_root.combo1 = true;
comboclear2 = 0;
xmod2 = 0;
xmod1 = 0;
}
if (((Key.isDown(65) || (Key.isDown(83))) || (Key.isDown(68))) || (Key.isDown(90))) {
xmod1 = 0;
xmod2 = 0;
}
}
Symbol 592 MovieClip Frame 3
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 4
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 5
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 6
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 7
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 8
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 9
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 10
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 11
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 12
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 13
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 14
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 15
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 16
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 17
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 18
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 19
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 20
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 21
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 22
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 23
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 24
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 25
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 26
checkcombo2();
checkcombo1();
Symbol 592 MovieClip Frame 27
comboclear1 = 0;
comboclear2 = 0;
comboclear3 = 0;
comboclear5 = 0;
comboclear6 = 0;
comboclear7 = 0;
xmod1 = 0;
xmod2 = 0;
xmod3 = 0;
xmod5 = 0;
xmod6 = 0;
xmod7 = 0;
Symbol 601 MovieClip Frame 51
stop();
Symbol 608 Button
on (press) {
gotoAndPlay (594);
}
Instance of Symbol 293 MovieClip in Symbol 656 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.attacking = 1;
_root.moveable = 0;
_root.movemap(10);
}
}
Instance of Symbol 294 MovieClip in Symbol 656 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.attacking = 0;
_root.moveable = 1;
_root.scenery._y = 156;
}
}
Symbol 657 MovieClip Frame 1
_root.scenery.generator2.removeMovieClip();
_parent._parent.allow2 = 0;
_root.explosions.start(0, 0);
Symbol 657 MovieClip Frame 23
_parent.removeMovieClip();
stop();
Instance of Symbol 310 MovieClip in Symbol 658 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero.atk1.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk2.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
gotoAndPlay (2);
_root.score = _root.score + 100;
_parent.gotoAndStop("broke");
}
if (_parent.health < 0) {
_parent.gotoAndStop("broke");
}
}
Instance of Symbol 417 MovieClip in Symbol 659 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.score = _root.score + 100;
if (_root.stamina < 100) {
_root.stamina = _root.stamina + 20;
}
_parent.gotoAndStop("gone");
}
}
Symbol 709 MovieClip Frame 1
function sound1() {
if (rd1 == 1) {
_root.pl_slosh1.start(0, 0);
} else if (rd1 == 2) {
_root.pl_slosh2.start(0, 0);
} else if (rd1 == 3) {
_root.pl_slosh3.start(0, 0);
} else if (rd1 == 4) {
_root.pl_slosh4.start(0, 0);
}
}
function sound2() {
if (rd3 == 1) {
_root.pl_slosh1.start(0, 0);
} else if (rd2 == 2) {
_root.pl_slosh2.start(0, 0);
} else if (rd2 == 3) {
_root.pl_slosh3.start(0, 0);
} else if (rd2 == 4) {
_root.pl_slosh4.start(0, 0);
}
}
function sound3() {
if (rd3 == 1) {
_root.pl_slosh1.start(0, 0);
} else if (rd3 == 2) {
_root.pl_slosh2.start(0, 0);
} else if (rd3 == 3) {
_root.pl_slosh3.start(0, 0);
} else if (rd3 == 4) {
_root.pl_slosh4.start(0, 0);
}
}
function sound4() {
if (rd4 == 1) {
_root.pl_slosh1.start(0, 0);
} else if (rd4 == 2) {
_root.pl_slosh2.start(0, 0);
} else if (rd4 == 3) {
_root.pl_slosh3.start(0, 0);
} else if (rd4 == 4) {
_root.pl_slosh4.start(0, 0);
}
}
_root.die01.start(0, 0);
_root.stamina = _root.stamina + 1;
rd1 = random(4) + 1;
rd2 = random(4) + 1;
rd3 = random(4) + 1;
rd4 = random(4) + 1;
Symbol 709 MovieClip Frame 9
sound1();
Symbol 709 MovieClip Frame 20
sound2();
Symbol 709 MovieClip Frame 21
sound3();
Symbol 709 MovieClip Frame 25
sound4();
Symbol 709 MovieClip Frame 28
if (_global.bodydissapear != 1) {
stop();
}
Symbol 709 MovieClip Frame 29
_parent.takeover = 1;
stop();
Instance of Symbol 664 MovieClip in Symbol 710 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent.limit1) != true) {
_parent._x = _parent._x - 2;
}
if (this.hitTest(_parent._parent.limit1) || (this.hitTest(_root.hero))) {
_parent.gotoAndStop("walkright");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 40;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.health = _parent.health - 4500;
}
if ((this.hitTest(_root.hero) && (_root.attacking == 0)) && (_root.blocking == 0)) {
_root.health = _root.health - 7;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("death");
}
}
Instance of Symbol 664 MovieClip in Symbol 710 MovieClip Frame 3
onClipEvent (enterFrame) {
turnover1 = random(67);
if (this.hitTest(_parent._parent.limit2) != true) {
_parent._x = _parent._x + 2;
}
if (this.hitTest(_parent._parent.limit2) && (this.hitTest(_root.hero) != true)) {
_parent.gotoAndStop("walkleft");
}
if (((this.hitTest(_parent._parent.limit1) != true) && (this.hitTest(_root.hero) != true)) && (turnover1 == 10)) {
_parent.gotoAndStop("walkleft");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 40;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.health = _parent.health - 4500;
}
if ((this.hitTest(_root.hero) && (_root.attacking == 0)) && (_root.blocking == 0)) {
_root.health = _root.health - 7;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("death");
}
}
Instance of Symbol 360 MovieClip in Symbol 715 MovieClip Frame 4
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero) && (_root.blocking == 0)) {
_root.health = _root.health - 3;
_root.hero.minidamage.gotoAndPlay(2);
} else if (this.hitTest(_root.hero) && (_root.blocking == 1)) {
rdd = 20;
if (rdd == 2) {
_root.health = _root.health - 1;
}
}
}
Symbol 715 MovieClip Frame 11
_parent.delay = 140;
_parent.gotoAndStop("walkleft");
Symbol 721 MovieClip Frame 1
_root.die01.start(0, 0);
_root.stamina = _root.stamina + 2;
Symbol 721 MovieClip Frame 4
if (_global.bodydissapear != 1) {
stop();
}
Symbol 721 MovieClip Frame 5
_parent.takeover = 1;
stop();
Instance of Symbol 713 MovieClip in Symbol 722 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent.zlimit1) != true) {
_parent._x = _parent._x - 1;
}
if (this.hitTest(_parent._parent.zlimit1) || (this.hitTest(_root.hero))) {
_parent.gotoAndStop("walkright");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.gotoAndStop("dieleft");
}
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("dieleft");
}
if (_root.hero.hitTest(_parent.bonearea) && (_parent.delay < 1)) {
chance = random(30);
if (chance == 5) {
_parent.gotoAndStop("attackleft");
}
}
if (_parent.delay > 0) {
_parent.delay = _parent.delay - 1;
}
}
Instance of Symbol 713 MovieClip in Symbol 722 MovieClip Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent.skulllimit2) != true) {
_parent._x = _parent._x + 1;
}
if (this.hitTest(_parent._parent.skulllimit2)) {
_parent.gotoAndStop("walkleft");
}
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 80;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 50;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 100;
_parent.gotoAndStop("dieright");
}
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("dieright");
}
if (_root.hero.hitTest(_parent.bonearea) && (_parent.delay < 1)) {
chance = random(90);
if (chance == 5) {
_parent.gotoAndStop("attackleft");
}
}
if (_parent.delay > 0) {
_parent.delay = _parent.delay - 1;
}
}
Instance of Symbol 653 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_global.backscenery == 0) {
this.swapDepths(999);
this.removeMovieClip();
}
}
Instance of Symbol 655 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.scenery._x < 65) {
this._visible = false;
} else {
this._visible = true;
}
}
Instance of Symbol 356 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
this.health = 500;
stop();
}
Instance of Symbol 361 MovieClip "generator1" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
i = 0;
_parent.allow = 1;
}
onClipEvent (enterFrame) {
if ((_parent.allow == 1) && (_root.scenery._x > -1292.5)) {
dupper = random(30);
if (dupper == 14) {
i = i + 1;
_parent.dino.duplicateMovieClip("dino" + i, i);
}
}
}
Instance of Symbol 136 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.baloon.gotoAndStop("baloon1");
}
}
Instance of Symbol 136 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.baloon.gotoAndStop("none");
}
}
Instance of Symbol 658 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
this.health = 1000;
stop();
}
Instance of Symbol 361 MovieClip "generator1" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
i = 0;
_parent.allow2 = 1;
}
onClipEvent (enterFrame) {
if ((_parent.allow2 == 1) && (_root.scenery._x > -2780)) {
dupper = random(50);
if (dupper == 14) {
i = i + 1;
_parent.dino2.duplicateMovieClip("dino2" + i, i);
}
if (dupper == 20) {
i = i + 1;
_parent.skull.duplicateMovieClip("skull" + i, i);
}
if (dupper == 30) {
i = i + 1;
_parent.gomie.duplicateMovieClip("gomie" + i, i);
}
}
}
Instance of Symbol 302 MovieClip "sign04" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip "sign05" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip "sign06" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip "sign07" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip "sign08" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip "sign09" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 277 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 361 MovieClip "generator1" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
i = 0;
}
onClipEvent (enterFrame) {
if (_root.hero.hitTest(_parent.omgtt)) {
dupper = random(25);
if (dupper == 14) {
i = i + 1;
_parent.lor.duplicateMovieClip("lor" + i, i);
}
}
}
Instance of Symbol 302 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 441 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
health = 700;
moveon = 1;
stop();
}
onClipEvent (enterFrame) {
if (dead == 1) {
this.removeMovieClip();
}
if (_root.hero.hitTest(_parent.ourarena01) && (moveon == 1)) {
moveon = 0;
gotoAndStop ("walkleft");
}
}
Instance of Symbol 402 MovieClip "dino" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
_parent.totaldinos = _parent.totaldinos + 1;
this.health = 100;
this._x = 1393;
this._y = -21.65;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 441 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
health = 700;
moveon = 1;
stop();
}
onClipEvent (enterFrame) {
if (dead == 1) {
this.removeMovieClip();
}
if (_root.hero.hitTest(_parent.ourarena01) && (moveon == 1)) {
moveon = 0;
gotoAndStop ("walkleft");
}
}
Instance of Symbol 441 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
health = 700;
moveon = 1;
stop();
}
onClipEvent (enterFrame) {
if (dead == 1) {
this.removeMovieClip();
}
if (_root.hero.hitTest(_parent.ourarena01) && (moveon == 1)) {
moveon = 0;
gotoAndStop ("walkleft");
}
}
Instance of Symbol 441 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
health = 700;
moveon = 1;
stop();
}
onClipEvent (enterFrame) {
if (dead == 1) {
this.removeMovieClip();
}
if (_root.hero.hitTest(_parent.ourarena01) && (moveon == 1)) {
moveon = 0;
gotoAndStop ("walkleft");
}
}
Instance of Symbol 402 MovieClip "dino2" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
_parent.totaldinos2 = _parent.totaldinos2 + 1;
this.health = 100;
this._x = 2908;
this._y = -21.65;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 415 MovieClip "skull" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
_parent.totalskulls = _parent.totalskulls + 1;
this._y = -21.65;
this._x = 2895;
this.health = 350;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 710 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
this._y = -21.65;
this._x = 2405;
this.health = 400;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 710 MovieClip "gomie" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
this._y = -21.65;
this._x = 2921;
this.health = 400;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this._x = 3963;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 1000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 1000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 1000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 1000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -21.65;
this.health = 1000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 402 MovieClip "lor" in Symbol 723 MovieClip Frame 1
onClipEvent (load) {
this.health = 150;
this._x = 6085.9;
this._y = -21.65;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Symbol 727 Button
on (press) {
gotoAndPlay (731);
}
Instance of Symbol 293 MovieClip in Symbol 740 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.attacking = 1;
_root.moveable = 0;
_root.movemap(10);
}
}
Instance of Symbol 294 MovieClip in Symbol 740 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.attacking = 0;
_root.moveable = 1;
_root.scenery._y = 161.5;
}
}
Instance of Symbol 758 MovieClip "shell" in Symbol 759 MovieClip Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero) && (_root.blocking == 0)) {
_root.health = _root.health - 7;
_root.hero.minidamage.gotoAndPlay(2);
} else if (this.hitTest(_root.hero) && (_root.blocking == 1)) {
_root.stamina = _root.stamina - 1;
_root.health = _root.health - 1;
_root.hero.minidamage.gotoAndPlay(2);
}
}
Instance of Symbol 758 MovieClip "shell" in Symbol 759 MovieClip Frame 14
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero) && (_root.blocking == 0)) {
_root.health = _root.health - 2;
_root.hero.minidamage.gotoAndPlay(2);
} else if (this.hitTest(_root.hero) && (_root.blocking == 1)) {
_root.stamina = _root.stamina - 1;
_root.health = _root.health - 1;
_root.hero.minidamage.gotoAndPlay(2);
}
}
Instance of Symbol 758 MovieClip "shell" in Symbol 759 MovieClip Frame 37
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero) && (_root.blocking == 0)) {
_root.health = _root.health - 10;
_root.hero.minidamage.gotoAndPlay(2);
} else if (this.hitTest(_root.hero) && (_root.blocking == 1)) {
_root.stamina = _root.stamina - 1;
_root.health = _root.health - 1;
_root.hero.minidamage.gotoAndPlay(2);
}
}
Symbol 759 MovieClip Frame 49
stop();
_parent.delay = 50;
_parent.gotoAndStop("prepare1");
Symbol 763 MovieClip Frame 71
stop();
_root.won = 1;
Instance of Symbol 743 MovieClip in Symbol 764 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
rol = random(6);
if (rol == 5) {
_root.stamina = _root.stamina + 1;
}
_parent.health = _parent.health - 30;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
rol = random(6);
if (rol == 5) {
_root.stamina = _root.stamina + 1;
}
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
rol = random(6);
if (rol == 5) {
_root.stamina = _root.stamina + 1;
}
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
rol = random(6);
if (rol == 5) {
_root.stamina = _root.stamina + 1;
}
_parent.health = _parent.health - 60;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
rol = random(6);
if (rol == 5) {
_root.stamina = _root.stamina + 1;
}
_root.score = _root.score + 40;
_parent.health = _parent.health - 100;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
rol = random(6);
if (rol == 5) {
_root.stamina = _root.stamina + 1;
}
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
rol = random(6);
if (rol == 5) {
_root.stamina = _root.stamina + 1;
}
_parent.health = _parent.health - 60;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
rol = random(6);
if (rol == 5) {
_root.stamina = _root.stamina + 1;
}
_parent.health = _parent.health - 1000;
}
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("die");
}
_parent.delay = _parent.delay - 1;
if (_parent.delay < 0) {
_parent.gotoAndStop("angry");
}
}
Instance of Symbol 748 MovieClip in Symbol 764 MovieClip Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero.atk1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 30;
}
if (this.hitTest(_root.hero.atk2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.atk3.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 15;
_parent.health = _parent.health - 20;
}
if (this.hitTest(_root.hero.spec1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 60;
}
if (this.hitTest(_root.hero.spec2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 40;
_parent.health = _parent.health - 100;
}
if (this.hitTest(_root.hero.combo1.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 25;
_parent.health = _parent.health - 35;
}
if (this.hitTest(_root.hero.combo2.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 60;
}
if (this.hitTest(_root.hero.best.slash)) {
_parent.hittt.gotoAndPlay(2);
_root.score = _root.score + 30;
_parent.health = _parent.health - 200;
}
if (this.hitTest(_root.hero) && (_root.attacking == 0)) {
_root.health = _root.health - 5;
_root.hero.gotoAndStop("damage");
}
if (_parent.health < 0) {
_parent.gotoAndStop("die");
}
rdr = random(15);
if (rdr == 2) {
_parent.gotoAndStop("attacking");
}
}
Instance of Symbol 361 MovieClip "generator1" in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
i = 0;
_parent.allow2 = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
dupper = random(24);
if (dupper == 14) {
i = i + 1;
_parent.dino2.duplicateMovieClip("dino2" + i, i);
}
}
}
Instance of Symbol 361 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
i = 0;
_parent.allow2 = 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
dupper = random(35);
if (dupper == 14) {
i = i + 1;
_parent.omr.duplicateMovieClip("omr" + i, i);
}
}
}
Instance of Symbol 659 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 429 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 302 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 360 MovieClip "bossarena" in Symbol 765 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.hero)) {
_root.nos1 = 0;
_root.nos2 = 0;
}
}
Instance of Symbol 429 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 659 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
stop();
}
Instance of Symbol 402 MovieClip "dino2" in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 500;
this._x = 574.5;
this._y = -29.25;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 710 MovieClip "omr" in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this._y = -29.25;
this._x = 1519.8;
this.health = 1200;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -29.25;
this.health = 1000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -29.25;
this.health = 1000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 722 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
delay = 0;
this._y = -29.25;
this.health = 3000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if (takeover == 1) {
stop();
this.swapDepths(999);
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 710 MovieClip "bixo" in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
_parent.bxmax = 0;
i = 0;
this._y = -29.25;
this._x = 2839.8;
this.health = 5000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if ((health > 100) && (_parent.bxmax < 10)) {
lor = random(40);
if (lor == 20) {
i = i + 1;
_parent.owned.duplicateMovieClip("owned" + i, i);
}
}
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 710 MovieClip "owned" in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
lol = 1;
this._y = -29.25;
_parent.bxmax = _parent.bxmax + 1;
this._x = _parent.bixo._x;
this.health = 800;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if ((health < 0) && (lol == 1)) {
lol = 0;
_parent.bxmax = _parent.bxmax - 1;
}
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 710 MovieClip "owned2" in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
lol = 1;
this._y = -29.25;
_parent.bxmax = _parent.bxmax + 1;
this._x = _parent.bixo2._x;
this.health = 800;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if ((health < 0) && (lol == 1)) {
lol = 0;
_parent.bxmax = _parent.bxmax - 1;
}
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 710 MovieClip "bixo2" in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
_parent.bxmax = 0;
i = 0;
this._y = -29.25;
this._x = 2839.8;
this.health = 5000;
this.gotoAndStop("walkleft");
}
onClipEvent (enterFrame) {
if ((health > 100) && (_parent.bxmax < 20)) {
lor = random(40);
if (lor == 20) {
i = i + 1;
_parent.owned2.duplicateMovieClip("owned2" + i, i);
}
}
if (takeover == 1) {
stop();
this.removeMovieClip();
removeMovieClip(this);
}
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 402 MovieClip in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
this.health = 100;
this.gotoAndStop("walkleft");
}
Instance of Symbol 764 MovieClip "boss" in Symbol 765 MovieClip Frame 1
onClipEvent (load) {
health = 15000;
delay = 70;
stop();
ovar = 1;
}
onClipEvent (enterFrame) {
if (_parent.bossarena.hitTest(_root.hero) && (ovar == 1)) {
ovar = 0;
_root.bgs1.stop();
_root.boss1.start(0, 999);
_root.boss1.setVolume(40);
this.gotoAndStop("prepare1");
}
}
Symbol 772 Button
on (press) {
gotoAndPlay (878);
}
Symbol 778 Button
on (release) {
gotoAndPlay (9);
}