Frame 2
stop();
Frame 3
stop();
Frame 4
stop();
Frame 563
stop();
_global.speed = 0.75;
_global.jumpingYet = false;
_global.jumpSpeed = 5.5;
_global.score = 0;
_global.DEADKORG = false;
_global.gotoDead = false;
_global.gravity = function (object) {
object._y = object._y + _global.speed;
if ((((!object.FOOT.hitTest(_root.GROUND1A)) and (!object.FOOT.hitTest(_root.GROUND1B))) and (!object.FOOT.hitTest(_root.GROUND1C))) and (!object.FOOT.hitTest(_root.GROUND1D))) {
_global.speed = _global.speed + 0.35;
} else {
_global.speed = 0;
if (_global.jumpingYet == true) {
_global.jumpingYet = false;
}
}
};
_global.jump = function (object) {
if ((!Key.isDown(32)) and (_global.attackingYet == false)) {
object.gotoAndPlay("jump");
}
object._y = object._y - _global.jumpSpeed;
};
Instance of Symbol 64 MovieClip "KORG" in Frame 563
onClipEvent (load) {
_global.animatedYet = false;
_global.attackingYet = false;
this._xscale = 14;
this._yscale = 14;
}
onClipEvent (enterFrame) {
if (_global.DEADKORG == false) {
_global.gravity(this);
if (_global.jumpingYet == true) {
_global.jump(this);
}
if (Key.isDown(39)) {
this._xscale = 14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x < 545) {
this._x = this._x + 5;
}
}
if (Key.isDown(37)) {
this._xscale = -14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x > 5) {
this._x = this._x - 5;
}
}
if (Key.isDown(38)) {
_global.jumpingYet = true;
_global.jump(this);
}
if (Key.isDown(32)) {
if (_global.attackingYet == false) {
_global.attackingYet = true;
this.gotoAndPlay("attack");
}
}
}
}
Instance of Symbol 66 MovieClip "GROUND1B" in Frame 563
onClipEvent (enterFrame) {
if (_global.score == 3) {
_root.GO.gotoAndStop(2);
}
}
Instance of Symbol 79 MovieClip "ENEMY" in Frame 563
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 375) {
this._xscale = 25;
xdirection = -5;
this._x = 370;
} else if (this._x <= 125) {
this._xscale = -25;
xdirection = 5;
this._x = 130;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY2" in Frame 563
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY3" in Frame 563
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 81 MovieClip "GO" in Frame 563
onClipEvent (enterFrame) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.score == 3) {
_root.nextFrame();
_root.KORG._x = 5;
}
}
}
Instance of Symbol 23 MovieClip in Frame 563
onClipEvent (enterFrame) {
if (_global.gotoDead == true) {
_root.gotoAndStop("dead");
}
}
Frame 564
stop();
Instance of Symbol 66 MovieClip "GROUND1B" in Frame 564
onClipEvent (enterFrame) {
if (_global.score == 7) {
_root.GO2.gotoAndStop(2);
}
}
Instance of Symbol 64 MovieClip "KORG" in Frame 564
onClipEvent (load) {
_global.animatedYet = false;
_global.attackingYet = false;
this._xscale = 14;
this._yscale = 14;
}
onClipEvent (enterFrame) {
if (_global.DEADKORG == false) {
_global.gravity(this);
if (_global.jumpingYet == true) {
_global.jump(this);
}
if (Key.isDown(39)) {
this._xscale = 14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x < 545) {
this._x = this._x + 5;
}
}
if (Key.isDown(37)) {
this._xscale = -14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x > 5) {
this._x = this._x - 5;
}
}
if (Key.isDown(38)) {
_global.jumpingYet = true;
_global.jump(this);
}
if (Key.isDown(32)) {
if (_global.attackingYet == false) {
_global.attackingYet = true;
this.gotoAndPlay("attack");
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY5" in Frame 564
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 215) {
this._xscale = 25;
xdirection = -5;
this._x = 210;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY6" in Frame 564
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 215) {
this._xscale = 25;
xdirection = -5;
this._x = 210;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY4" in Frame 564
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY7" in Frame 564
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 525) {
this._xscale = 25;
xdirection = -5;
this._x = 520;
} else if (this._x <= 315) {
this._xscale = -25;
xdirection = 5;
this._x = 320;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 81 MovieClip "GO2" in Frame 564
onClipEvent (enterFrame) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.score == 7) {
_root.nextFrame();
}
}
}
Frame 565
stop();
Instance of Symbol 66 MovieClip "GROUND1B" in Frame 565
onClipEvent (enterFrame) {
if (_global.score == 13) {
_root.GO3.gotoAndStop(2);
}
}
Instance of Symbol 64 MovieClip "KORG" in Frame 565
onClipEvent (load) {
_global.animatedYet = false;
_global.attackingYet = false;
this._xscale = 14;
this._yscale = 14;
this._x = 5;
}
onClipEvent (enterFrame) {
if (_global.DEADKORG == false) {
_global.gravity(this);
if (_global.jumpingYet == true) {
_global.jump(this);
}
if (Key.isDown(39)) {
this._xscale = 14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x < 545) {
this._x = this._x + 5;
}
}
if (Key.isDown(37)) {
this._xscale = -14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x > 5) {
this._x = this._x - 5;
}
}
if (Key.isDown(38)) {
_global.jumpingYet = true;
_global.jump(this);
}
if (Key.isDown(32)) {
if (_global.attackingYet == false) {
_global.attackingYet = true;
this.gotoAndPlay("attack");
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY11" in Frame 565
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 215) {
this._xscale = 25;
xdirection = -5;
this._x = 210;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY10" in Frame 565
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 215) {
this._xscale = 25;
xdirection = -5;
this._x = 210;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY9" in Frame 565
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY12" in Frame 565
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 525) {
this._xscale = 25;
xdirection = -5;
this._x = 520;
} else if (this._x <= 315) {
this._xscale = -25;
xdirection = 5;
this._x = 320;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 81 MovieClip "GO3" in Frame 565
onClipEvent (enterFrame) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.score == 13) {
_root.nextFrame();
}
}
}
Instance of Symbol 79 MovieClip "ENEMY13" in Frame 565
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 525) {
this._xscale = 25;
xdirection = -5;
this._x = 520;
} else if (this._x <= 315) {
this._xscale = -25;
xdirection = 5;
this._x = 320;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY8" in Frame 565
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Frame 566
stop();
Instance of Symbol 66 MovieClip "GROUND1B" in Frame 566
onClipEvent (enterFrame) {
if (_global.score == 20) {
_root.GO4.gotoAndStop(2);
}
}
Instance of Symbol 64 MovieClip "KORG" in Frame 566
onClipEvent (load) {
_global.animatedYet = false;
_global.attackingYet = false;
this._xscale = 14;
this._yscale = 14;
this._x = 7;
}
onClipEvent (enterFrame) {
if (_global.DEADKORG == false) {
_global.gravity(this);
if (_global.jumpingYet == true) {
_global.jump(this);
}
if (Key.isDown(39)) {
this._xscale = 14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x < 545) {
this._x = this._x + 5;
}
}
if (Key.isDown(37)) {
this._xscale = -14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x > 5) {
this._x = this._x - 5;
}
}
if (Key.isDown(38)) {
_global.jumpingYet = true;
_global.jump(this);
}
if (Key.isDown(32)) {
if (_global.attackingYet == false) {
_global.attackingYet = true;
this.gotoAndPlay("attack");
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY18" in Frame 566
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 215) {
this._xscale = 25;
xdirection = -5;
this._x = 210;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY16" in Frame 566
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 215) {
this._xscale = 25;
xdirection = -5;
this._x = 210;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY15" in Frame 566
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY20" in Frame 566
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 160) {
this._xscale = 25;
xdirection = -5;
this._x = 155;
} else if (this._x <= 95) {
this._xscale = -25;
xdirection = 5;
this._x = 100;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 81 MovieClip "GO4" in Frame 566
onClipEvent (enterFrame) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.score == 20) {
_root.nextFrame();
}
}
}
Instance of Symbol 79 MovieClip "ENEMY19" in Frame 566
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 385) {
this._xscale = 25;
xdirection = -5;
this._x = 380;
} else if (this._x <= 325) {
this._xscale = -25;
xdirection = 5;
this._x = 330;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY14" in Frame 566
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY17" in Frame 566
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 215) {
this._xscale = 25;
xdirection = -5;
this._x = 210;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Frame 567
stop();
Instance of Symbol 66 MovieClip "GROUND1B" in Frame 567
onClipEvent (enterFrame) {
if (_global.score == 29) {
_root.GO5.gotoAndStop(2);
}
}
Instance of Symbol 64 MovieClip "KORG" in Frame 567
onClipEvent (load) {
_global.animatedYet = false;
_global.attackingYet = false;
this._xscale = 14;
this._yscale = 14;
this._x = 7;
}
onClipEvent (enterFrame) {
if (_global.DEADKORG == false) {
_global.gravity(this);
if (_global.jumpingYet == true) {
_global.jump(this);
}
if (Key.isDown(39)) {
this._xscale = 14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x < 545) {
this._x = this._x + 5;
}
}
if (Key.isDown(37)) {
this._xscale = -14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x > 5) {
this._x = this._x - 5;
}
}
if (Key.isDown(38)) {
_global.jumpingYet = true;
_global.jump(this);
}
if (Key.isDown(32)) {
if (_global.attackingYet == false) {
_global.attackingYet = true;
this.gotoAndPlay("attack");
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY23" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 355) {
this._xscale = 25;
xdirection = -5;
this._x = 350;
} else if (this._x <= 180) {
this._xscale = -25;
xdirection = 5;
this._x = 185;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY22" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY29" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 165) {
this._xscale = 25;
xdirection = -5;
this._x = 160;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 81 MovieClip "GO5" in Frame 567
onClipEvent (enterFrame) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.score == 29) {
_root.nextFrame();
}
}
}
Instance of Symbol 79 MovieClip "ENEMY27" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 525) {
this._xscale = 25;
xdirection = -5;
this._x = 520;
} else if (this._x <= 350) {
this._xscale = -25;
xdirection = 5;
this._x = 355;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY21" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 25;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -25;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY26" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 525) {
this._xscale = 25;
xdirection = -5;
this._x = 520;
} else if (this._x <= 350) {
this._xscale = -25;
xdirection = 5;
this._x = 355;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY25" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 355) {
this._xscale = 25;
xdirection = -5;
this._x = 350;
} else if (this._x <= 180) {
this._xscale = -25;
xdirection = 5;
this._x = 185;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY24" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 355) {
this._xscale = 25;
xdirection = -5;
this._x = 350;
} else if (this._x <= 180) {
this._xscale = -25;
xdirection = 5;
this._x = 185;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Instance of Symbol 79 MovieClip "ENEMY28" in Frame 567
onClipEvent (load) {
dead = false;
this._xscale = 25;
this._yscale = 25;
xdirection = -5;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (dead == false) {
this.gotoAndPlay("dead");
dead = true;
}
}
}
if (dead == false) {
if (this._x >= 165) {
this._xscale = 25;
xdirection = -5;
this._x = 160;
} else if (this._x <= 5) {
this._xscale = -25;
xdirection = 5;
this._x = 10;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Frame 568
stop();
Instance of Symbol 64 MovieClip "KORG" in Frame 568
onClipEvent (load) {
_global.animatedYet = false;
_global.attackingYet = false;
this._xscale = 14;
this._yscale = 14;
this._x = 7;
}
onClipEvent (enterFrame) {
if (_global.DEADKORG == false) {
_global.gravity(this);
if (_global.jumpingYet == true) {
_global.jump(this);
}
if (Key.isDown(39)) {
this._xscale = 14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x < 545) {
this._x = this._x + 5;
}
}
if (Key.isDown(37)) {
this._xscale = -14;
if (_global.animatedYet == false) {
this.gotoAndPlay("move");
_global.animatedYet = true;
}
if (this._x > 5) {
this._x = this._x - 5;
}
}
if (Key.isDown(38)) {
_global.jumpingYet = true;
_global.jump(this);
}
if (Key.isDown(32)) {
if (_global.attackingYet == false) {
_global.attackingYet = true;
this.gotoAndPlay("attack");
}
}
}
}
Instance of Symbol 101 MovieClip in Frame 568
onClipEvent (load) {
dead = false;
xdirection = -5;
_global.beingHit = false;
_global.bosshp = 3;
this._xscale = 75;
this._yscale = 75;
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (this.hitTest(_root.KORG.HITTEST)) {
if (_global.beingHit == false) {
if (_global.bosshp == 0) {
this.gotoAndPlay("Dead");
dead = true;
_root.play();
} else {
this.gotoAndPlay("HIT");
_global.bosshp--;
}
_global.beingHit = true;
}
}
}
if (dead == false) {
if (this._x >= 480) {
this._xscale = 75;
xdirection = -5;
this._x = 475;
} else if (this._x <= 30) {
this._xscale = -75;
xdirection = 5;
this._x = 35;
} else {
this._x = this._x + xdirection;
if ((!Key.isDown(32)) and (!Key.isDown(38))) {
if (this.hitTest(_root.KORG.HEART)) {
if (_global.DEADKORG == false) {
_global.DEADKORG = true;
_root.KORG.gotoAndPlay("DIE");
}
}
}
}
}
}
Frame 679
stop();
Frame 680
stop();
Symbol 11 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndPlay ("loaded");
}
Symbol 11 MovieClip Frame 2
gotoAndPlay (1);
Symbol 11 MovieClip Frame 40
_root.play();
Symbol 26 Button
on (release) {
gotoAndPlay (5);
}
Symbol 28 Button
on (release) {
_root.nextFrame();
}
Symbol 32 Button
on (release) {
_root.prevFrame();
}
Symbol 37 Button
on (release) {
_root.play();
}
Symbol 39 Button
on (release) {
_root.gotoAndPlay(561);
}
Symbol 64 MovieClip Frame 1
stop();
Symbol 64 MovieClip Frame 24
_global.attackingYet = false;
_global.animatedYet = false;
if (!Key.isDown(39)) {
this.gotoAndStop("idle");
}
if (!Key.isDown(37)) {
this.gotoAndStop("idle");
}
if (!Key.isDown(32)) {
this.gotoAndPlay("idle");
}
Symbol 64 MovieClip Frame 26
if (!Key.isDown(38)) {
this.gotoAndStop("idle");
}
Symbol 64 MovieClip Frame 42
_global.attackingYet = false;
_global.animatedYet = false;
if (!Key.isDown(39)) {
this.gotoAndStop("idle");
}
if (!Key.isDown(37)) {
this.gotoAndStop("idle");
}
if (!Key.isDown(32)) {
this.gotoAndPlay("idle");
}
Symbol 64 MovieClip Frame 84
stop();
_global.gotoDead = true;
Symbol 64 MovieClip Frame 88
_global.attackingYet = false;
_global.animatedYet = false;
if (!Key.isDown(39)) {
this.gotoAndStop("idle");
}
if (!Key.isDown(37)) {
this.gotoAndStop("idle");
}
if (!Key.isDown(32)) {
this.gotoAndPlay("idle");
}
Symbol 79 MovieClip Frame 17
gotoAndPlay (1);
Symbol 79 MovieClip Frame 69
_global.score++;
stop();
Symbol 81 MovieClip Frame 1
stop();
Symbol 81 MovieClip Frame 2
stop();
Symbol 101 MovieClip Frame 17
gotoAndPlay (1);
Symbol 101 MovieClip Frame 23
gotoAndPlay (1);
_global.beingHit = false;
Symbol 101 MovieClip Frame 114
stop();
Symbol 103 Button
on (release) {
_root.gotoAndPlay(1);
}
Symbol 106 Button
on (release) {
_root.play();
}