Frame 1
stopAllSounds();
function skiptointro() {
gotoAndPlay (15);
}
_quality = "low";
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
Instance of Symbol 133 MovieClip in Frame 1
onClipEvent (load) {
currentbytes = int(_root.getBytesLoaded() / 1000);
totalbytes = int(_root.getBytesTotal() / 1000);
percentbytes = int((currentbytes / totalbytes) * 100);
_root.textbox = ((("LOADING " + percentbytes) + "% of ") + totalbytes) + " KBs";
_root.loadedbar._width = percentbytes;
if (percentbytes >= 100) {
_root.skiptointro();
}
}
Frame 9
gotoAndPlay (1);
Frame 10
stopAllSounds();
stop();
Frame 15
stopAllSounds();
bonusClockB = 0;
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
stop();
Instance of Symbol 216 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (_root.bonusClockB == 40) {
_root.gotoAndPlay("title");
}
}
onClipEvent (enterFrame) {
_root.bonusClockB++;
trace(_root.bonusClockB);
}
Frame 20
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
_quality = "high";
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
stop();
Frame 30
stopAllSounds();
_quality = "low";
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
stop();
Frame 33
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
hp = 100;
stop();
function findUser(badguy, xSpeed, spaceAway, deathVar) {
distance = spaceAway;
badGuySpeed = xSpeed;
move = deathVar;
if (((badguy._x <= (_root.user._x - distance)) && (_root.user._x > badguy._x)) && (move == false)) {
badguy._x = badguy._x + badGuySpeed;
} else if (((badguy._x >= (_root.user._x + distance)) && (_root.user._x < badguy._x)) && (move == false)) {
badguy._x = badguy._x - badGuySpeed;
}
}
function userWalk(character, speed) {
moveSpeed = speed;
if (Key.isDown(37) && (_root.walking == true)) {
character._x = character._x - moveSpeed;
} else if (Key.isDown(39) && (_root.walking == true)) {
character._x = character._x + moveSpeed;
} else if (Key.isDown(38) && (_root.walking == true)) {
character._y = character._y - moveSpeed;
} else if (Key.isDown(40) && (_root.walking == true)) {
character._y = character._y + moveSpeed;
}
}
function cpuTurn(badguy, frame) {
thisFrame = frame;
if (_root.user._x < badguy._x) {
badguy._xscale = 100;
} else if (_root.user._x > badguy._x) {
badguy._xscale = -100;
}
}
function findUserY(badguy, ySpeed, evenYpos) {
moveUpSpeed = ySpeed;
evenItOut = -evenYpos;
if (badguy._y >= (_root.user._y + evenItOut)) {
badguy._y = badguy._y - moveUpSpeed;
} else if (badguy._y < (_root.user._y - evenItOut)) {
badguy._y = badguy._y + moveUpSpeed;
}
}
function touchTeam(badguy, team1, team2, team3, team4, team5) {
if (badguy.hitTest(team1) && (team1._x > badguy._x)) {
badguy._x = badguy._x - 25;
} else if (badguy.hitTest(team1) && (team1._x < badguy._x)) {
badguy._x = badguy._x + 25;
} else if (badguy.hitTest(team2) && (team2._x < badguy._x)) {
badguy._x = badguy._x + 25;
} else if (badguy.hitTest(team2) && (team2._x > badguy._x)) {
badguy._x = badguy._x - 25;
} else if (badguy.hitTest(team3) && (team3._x > badguy._x)) {
badguy._x = badguy._x - 25;
} else if (badguy.hitTest(team3) && (team3._x < badguy._x)) {
badguy._x = badguy._x + 25;
}
}
function userHurt(badguy) {
if (badguy.hit.hitTest(_root.user) && (_root.gettingHurt == false)) {
_root.user.me.gotoAndPlay("damage");
}
}
function getLife(badguy) {
if (badguy.hit.hitTest(_root.user)) {
_root.hp = _root.hp - 2;
}
}
function removeCpu(badguy, deathVar, curFrame) {
if ((deathVar == true) && (badguy._currentframe > curFrame)) {
badguy._visible = false;
badguy._x = -1000;
}
}
function getBack(badguy) {
numberVar = 10;
if (_root.user.me.hit.hitTest(badguy) && (badguy._x < _root.user._x)) {
badguy._x = badguy._x - numberVar;
} else if (_root.user.me.hit.hitTest(badguy) && (badguy._x > _root.user._x)) {
badguy._x = badguy._x + numberVar;
}
}
function getOn() {
play();
}
walking = "";
counter0 = 0;
counter1 = 0;
counter2 = 0;
counter3 = 0;
counter4 = 0;
counter5 = 0;
counter6 = 0;
counter7 = 0;
counter8 = 0;
counter9 = 0;
counter10 = 0;
counter11 = 0;
counter12 = 0;
counter13 = 0;
counter14 = 0;
counter15 = 0;
gettingHurt = false;
cpuhp0 = 30;
cpuhp1 = 25;
cpuhp2 = 25;
cpuhp3 = 25;
cpuhp4 = 25;
cpuhp5 = 25;
cpuhp6 = 30;
cpuhp7 = 30;
cpuhp8 = 30;
cpuhp9 = 25;
cpuhp10 = 50;
cpuhp11 = 50;
cpuhp12 = 35;
cpuhp13 = 45;
cpuhp14 = 30;
cpuhp15 = 45;
cpuhp16 = 45;
cpuhp17 = 45;
cpuhp18 = 45;
cpuhp19 = 45;
cpuhp20 = 45;
cpuhp21 = 45;
cpuhp22 = 45;
cpuhp23 = 45;
cpuhp24 = 45;
cpuhp25 = 45;
dead0 = false;
dead1 = false;
dead2 = false;
dead3 = false;
dead4 = false;
dead5 = false;
dead6 = false;
dead7 = false;
dead8 = false;
dead9 = false;
dead10 = false;
dead11 = false;
dead12 = false;
dead13 = false;
dead14 = false;
dead15 = false;
dead16 = false;
dead17 = false;
dead18 = false;
dead19 = false;
dead20 = false;
dead21 = false;
dead22 = false;
dead23 = false;
dead24 = false;
dead25 = false;
switched = false;
switched2 = false;
switched3 = false;
switched4 = false;
switched5 = false;
moveLaser = false;
moveLaser2 = false;
moveLaserLeft = false;
moveLaserLeft2 = false;
heartfill1 = false;
heartfill2 = false;
heartfill3 = false;
heartfill4 = false;
heartfill5 = false;
inThere = false;
offPath = false;
ready = false;
goAttack = false;
ready = true;
destroyed = false;
highFire = false;
Instance of Symbol 55 MovieClip "advanceto" in Frame 33
onClipEvent (enterFrame) {
if ((_root.dead0 == true) && (((_root.dead2 == true) && (_root.dead1 == true)) && (Key.isDown(39) && (_root.user.hitTest(this))))) {
_root.getOn();
}
}
Instance of Symbol 351 MovieClip "user" in Frame 33
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 182) {
this._y = 182;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
Instance of Symbol 381 MovieClip "cpu" in Frame 33
onClipEvent (enterFrame) {
_root.findUser(_root.cpu, 7.5, 85, _root.dead1);
}
onClipEvent (enterFrame) {
_root.cpuTurn(_root.cpu, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(_root.cpu, 7.5, -10);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count2 < 16)) {
_root.count2++;
}
}
onClipEvent (enterFrame) {
if (_root.count2 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count2 == 15) {
_root.count2 = _root.count2 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp1 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp1 = _root.cpuhp1 - 5;
} else if ((_root.cpuhp1 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp1 <= 0) {
_root.dead1 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead1, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu3, _root.cpu2, _root.cpu0);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 381 MovieClip "cpu3" in Frame 33
onClipEvent (enterFrame) {
_root.findUser(this, 4, 85, _root.dead2);
}
onClipEvent (enterFrame) {
_root.cpuTurn(this, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -10);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu2, _root.cpu, _root.cpu0);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count3 < 16)) {
_root.count3++;
}
}
onClipEvent (enterFrame) {
if (_root.count3 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count3 == 15) {
_root.count3 = _root.count3 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp2 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp2 = _root.cpuhp2 - 5;
} else if ((_root.cpuhp2 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp2 <= 0) {
_root.dead2 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead2, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 381 MovieClip "cpu0" in Frame 33
onClipEvent (enterFrame) {
_root.findUser(_root.cpu0, 4, 85, _root.dead0);
}
onClipEvent (enterFrame) {
_root.cpuTurn(_root.cpu0, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(_root.cpu0, 7.5, -10);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count0 < 16)) {
_root.count0++;
}
}
onClipEvent (enterFrame) {
if (_root.count0 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count0 == 15) {
_root.count0 = _root.count0 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp0 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp0 = _root.cpuhp0 - 5;
} else if ((_root.cpuhp0 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp0 <= 0) {
_root.dead0 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead0, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu3, _root.cpu2, _root.cpu);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 387 MovieClip "go" in Frame 33
onClipEvent (enterFrame) {
if ((_root.dead0 == true) && (((_root.dead2 == true) && (_root.dead1 == true)) && (this._currentframe == 1))) {
this.gotoAndPlay("go");
}
}
Instance of Symbol 137 MovieClip in Frame 33
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 38
stopAllSounds();
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
Frame 44
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
stop();
Instance of Symbol 55 MovieClip "advanceto" in Frame 44
onClipEvent (enterFrame) {
if ((_root.dead5 == true) && (((_root.dead6 == true) && (_root.dead7 == true)) && (_root.dead8 == true))) {
_root.getOn();
}
}
Instance of Symbol 351 MovieClip "user" in Frame 44
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 201.9) {
this._y = 201.9;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
Instance of Symbol 435 MovieClip "cpu5" in Frame 44
onClipEvent (enterFrame) {
_root.findUser(this, 6, 50, _root.dead5);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu6, _root.cpu7);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count5 < 16)) {
_root.count5++;
}
}
onClipEvent (enterFrame) {
if (_root.count5 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count5 == 15) {
_root.count5 = _root.count5 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp5 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp5 = _root.cpuhp5 - 5;
} else if ((_root.cpuhp5 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp5 <= 0) {
_root.dead5 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead5, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 435 MovieClip "cpu6" in Frame 44
onClipEvent (enterFrame) {
_root.findUser(this, 8, 50, _root.dead6);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu5, _root.cpu7);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count6 < 16)) {
_root.count6++;
}
}
onClipEvent (enterFrame) {
if (_root.count6 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count6 == 15) {
_root.count6 = _root.count6 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp6 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp6 = _root.cpuhp6 - 5;
} else if ((_root.cpuhp6 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp6 <= 0) {
_root.dead6 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead6, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 381 MovieClip "cpu7" in Frame 44
onClipEvent (enterFrame) {
if ((_root.dead6 == true) && (_root.dead5 == true)) {
_root.findUser(this, 4, 85, _root.dead7);
}
}
onClipEvent (enterFrame) {
_root.cpuTurn(this, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -10);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu6, _root.cpu5, _root.cpu8);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count7 < 16)) {
_root.count7++;
}
}
onClipEvent (enterFrame) {
if (_root.count7 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count7 == 15) {
_root.count7 = _root.count7 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp7 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp7 = _root.cpuhp7 - 5;
} else if ((_root.cpuhp7 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp7 <= 0) {
_root.dead7 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead7, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
Instance of Symbol 381 MovieClip "cpu8" in Frame 44
onClipEvent (enterFrame) {
if ((_root.dead6 == true) && (_root.dead5 == true)) {
_root.findUser(this, 6, 85, _root.dead8);
}
}
onClipEvent (enterFrame) {
_root.cpuTurn(this, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -10);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu6, _root.cpu5, _root.cpu7);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count8 < 16)) {
_root.count8++;
}
}
onClipEvent (enterFrame) {
if (_root.count8 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count8 == 15) {
_root.count8 = _root.count8 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp8 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp8 = _root.cpuhp8 - 5;
} else if ((_root.cpuhp8 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp8 <= 0) {
_root.dead8 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead8, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 137 MovieClip in Frame 44
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 48
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
stop();
Frame 53
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
stop();
Instance of Symbol 464 MovieClip "switch1" in Frame 53
onClipEvent (enterFrame) {
if (_root.table.leg.hitTest(this)) {
this.gotoAndPlay(1);
} else if (!_root.table.leg.hitTest(this)) {
this.gotoAndPlay(2);
}
}
Instance of Symbol 466 MovieClip "table" in Frame 53
onClipEvent (enterFrame) {
if (((_root.user.hitTest(this) && (_root.user._y == 201.9)) && (_root.user._x < this._x)) && (this._x < 450)) {
this._x = this._x + 15;
} else if (((_root.user.hitTest(this) && (_root.user._y == 201.9)) && (_root.user._x > this._x)) && (this._x > 50)) {
this._x = this._x - 15;
}
}
Instance of Symbol 468 MovieClip "stair" in Frame 53
onClipEvent (enterFrame) {
if (_root.switched == true) {
this._visible = true;
} else {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if ((_root.switched == true) && (_root.user.hitTest(this))) {
_root.getOn();
}
}
Instance of Symbol 351 MovieClip "user" in Frame 53
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 201.9) {
this._y = 201.9;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
trace(_root.switched);
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
Instance of Symbol 137 MovieClip in Frame 53
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 58
stopAllSounds();
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
Frame 63
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
stop();
Instance of Symbol 470 MovieClip "ground1" in Frame 63
onClipEvent (enterFrame) {
if ((_root.dead10 == true) && (this._x > 261.4)) {
this._x = this._x - 5;
}
}
Instance of Symbol 55 MovieClip "advanceto" in Frame 63
onClipEvent (enterFrame) {
if ((_root.dead13 == true) && (((_root.dead11 == true) && (_root.dead12 == true)) && (Key.isDown(39) && (_root.user.hitTest(this))))) {
_root.getOn();
}
}
Instance of Symbol 351 MovieClip "user" in Frame 63
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
if ((this._x > 202) && (!_root.ground2.hitTest(_root.ground1))) {
this._x = 202;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 201.9) {
this._y = 201.9;
} else if (this._y > 300) {
this._y = 300;
} else if ((this._x > 500) && (_root.ground2.hitTest(_root.ground1))) {
this._x = 500;
}
}
onClipEvent (enterFrame) {
trace(_root.moveLaser);
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
Instance of Symbol 491 MovieClip "cpu10" in Frame 63
onClipEvent (enterFrame) {
_root.count10++;
}
onClipEvent (enterFrame) {
if ((_root.count10 == 25) && ((_root.moveLaserLeft == false) && (_root.moveLaser == false))) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count10 == 25) {
_root.count10 = _root.count10 - 25;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.laser.hitTest(this)) {
_root.cpuhp10 = 0;
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp10 <= 0) {
_root.dead10 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead10, 34);
}
Instance of Symbol 492 MovieClip "laser" in Frame 63
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this)) {
_root.moveLaser = true;
_root.moveLaserLeft = false;
} else if (this._x < -70) {
_root.moveLaserLeft = false;
}
}
onClipEvent (enterFrame) {
if ((_root.moveLaser == true) && (_root.moveLaserLeft == false)) {
this._x = this._x + 35;
} else if ((_root.moveLaserLeft == true) && (_root.moveLaser == false)) {
this._x = this._x - 35;
}
}
onClipEvent (enterFrame) {
if ((_root.cpu10._currentframe > 11) && ((_root.cpu10._currentframe < 23) && (_root.moveLaser == false))) {
_root.moveLaserLeft = true;
}
}
onClipEvent (enterFrame) {
if ((this._x < -70) && ((_root.cpu10._currentframe < 11) && (_root.cpu10._currentframe < 23))) {
this._x = 359.6;
}
}
onClipEvent (enterFrame) {
if (((_root.moveLaser == true) && (_root.moveLaserLeft == false)) && (this._y < 250)) {
this._y = this._y + 10;
}
}
onClipEvent (enterFrame) {
if ((_root.moveLaserLeft == true) || (_root.moveLaser == true)) {
this._visible = true;
} else if ((_root.moveLaserLeft == false) || (_root.moveLaser == false)) {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.user) && (!this.hitTest(_root.user.me.hit))) && (_root.gettingHurt == false)) {
_root.user.me.gotoAndPlay("damage");
} else if (this.hitTest(_root.user) && (!this.hitTest(_root.user.me.hit))) {
_root.hp = _root.hp - 10;
}
}
Instance of Symbol 435 MovieClip "cpu12" in Frame 63
onClipEvent (enterFrame) {
if (_root.dead10 == true) {
_root.findUser(this, 6, 50, _root.dead12);
}
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu13, _root.cpu11);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count12 < 16)) {
_root.count12++;
}
}
onClipEvent (enterFrame) {
if (_root.count12 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count12 == 15) {
_root.count12 = _root.count12 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp12 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp12 = _root.cpuhp12 - 5;
} else if ((_root.cpuhp12 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp12 <= 0) {
_root.dead12 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead12, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 435 MovieClip "cpu11" in Frame 63
onClipEvent (enterFrame) {
if (_root.dead10 == true) {
_root.findUser(this, 8, 50, _root.dead11);
}
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu13, _root.cpu12);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count11 < 16)) {
_root.count11++;
}
}
onClipEvent (enterFrame) {
if (_root.count11 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count11 == 15) {
_root.count11 = _root.count11 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp11 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp11 = _root.cpuhp11 - 5;
} else if ((_root.cpuhp11 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp11 <= 0) {
_root.dead11 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead11, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 381 MovieClip "cpu13" in Frame 63
onClipEvent (enterFrame) {
if (_root.dead10 == true) {
_root.findUser(this, 4, 85, _root.dead13);
}
}
onClipEvent (enterFrame) {
_root.cpuTurn(this, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -10);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu12, _root.cpu11);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count13 < 16)) {
_root.count13++;
}
}
onClipEvent (enterFrame) {
if (_root.count13 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count13 == 15) {
_root.count13 = _root.count13 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp13 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp13 = _root.cpuhp13 - 5;
} else if ((_root.cpuhp13 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp13 <= 0) {
_root.dead13 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead13, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 387 MovieClip "go" in Frame 63
onClipEvent (enterFrame) {
if ((_root.dead13 == true) && (((_root.dead11 == true) && (_root.dead12 == true)) && (this._currentframe == 1))) {
this.gotoAndPlay("go");
}
}
Instance of Symbol 137 MovieClip in Frame 63
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 68
stopAllSounds();
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
Frame 72
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
e = 0;
if (e < 10) {
_root.attachMovie("carpet1", "carpetAttached", 5);
setProperty(_root.carpetAttached, _y , 255.8);
setProperty(_root.carpetAttached, _x , -30);
}
i = 0;
if (i < 10) {
_root.attachMovie("rykis", "rykisAttached", 10);
setProperty(_root.rykisAttached, _y , 201);
setProperty(_root.rykisAttached, _x , 42);
setProperty(_root.rykisAttached, _height , 90.7);
setProperty(_root.rykisAttached, _width , 35.6);
}
b = 0;
if (b < 10) {
_root.attachMovie("doors", "doorsAttached", 4);
setProperty(_root.doorsAttached, _y , 125);
setProperty(_root.doorsAttached, _x , 300);
setProperty(_root.doorsAttached, _height , 200);
setProperty(_root.doorsAttached, _width , 650);
}
c = 0;
if (c < 10) {
_root.attachMovie("fade", "fadeAttached", 11);
setProperty(_root.fadeAttached, _y , 0);
setProperty(_root.fadeAttached, _x , 0);
setProperty(_root.fadeAttached, _height , 1400);
setProperty(_root.fadeAttached, _width , 1550);
}
stop();
Instance of Symbol 144 MovieClip "control" in Frame 72
onClipEvent (enterFrame) {
if (_root.rykisAttached.me.hitTest(_root.doorsAttached.door1) && (Key.isDown(Key.up) && (_root.rykisAttached.me._y == -201.9))) {
_root.attachMovie("brownwalls", "brownAttached", 6);
_root.attachMovie("saveSpot", "saveSpotAttached", 7);
_root.fadeAttached.gotoAndPlay("fader");
_root.doorsAttached.removeMovieClip();
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
setProperty(_root.brownAttached, _y , 125);
setProperty(_root.brownAttached, _x , 300);
setProperty(_root.brownAttached, _height , 200);
setProperty(_root.brownAttached, _width , 650);
setProperty(_root.saveSpotAttached, _y , 200);
setProperty(_root.saveSpotAttached, _x , 387);
setProperty(_root.saveSpotAttached, _height , 100);
setProperty(_root.saveSpotAttached, _width , 50);
_root.attachMovie("bridge", "bridgeAttached", 5);
setProperty(_root.bridgeAttached, _y , 110);
setProperty(_root.bridgeAttached, _x , 364);
_root.attachMovie("rykis", "rykisAttached", 10);
setProperty(_root.rykisAttached, _y , 201);
setProperty(_root.rykisAttached, _x , 121);
setProperty(_root.rykisAttached, _height , 90.7);
setProperty(_root.rykisAttached, _width , 35.6);
}
}
onClipEvent (enterFrame) {
if (_root.rykisAttached.hitTest(_root.saveSpotAttached) && (_root.heartfill1 == false)) {
_root.hp = 100;
_root.heartfill1 = true;
_root.saveSpotAttached._visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.rykisAttached.me.hitTest(_root.brownAttached.door1) && (Key.isDown(Key.up) && (_root.rykisAttached.me._y == -201.9))) {
_root.fadeAttached.gotoAndPlay("fader");
_root.brownAttached.removeMovieClip();
_root.bridgeAttached.removeMovieClip();
_root.saveSpotAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.attachMovie("carpet1", "carpetAttached", 5);
setProperty(_root.carpetAttached, _y , 255.8);
setProperty(_root.carpetAttached, _x , -30);
_root.attachMovie("doors", "doorsAttached", 4);
setProperty(_root.doorsAttached, _y , 125);
setProperty(_root.doorsAttached, _x , 300);
setProperty(_root.doorsAttached, _height , 200);
setProperty(_root.doorsAttached, _width , 650);
_root.attachMovie("rykis", "rykisAttached", 10);
setProperty(_root.rykisAttached, _y , 201);
setProperty(_root.rykisAttached, _x , 121);
setProperty(_root.rykisAttached, _height , 90.7);
setProperty(_root.rykisAttached, _width , 35.6);
} else if (_root.rykisAttached.me.hitTest(_root.doorsAttached.door2) && (Key.isDown(Key.up) && (_root.rykisAttached.me._y == -201.9))) {
_root.play();
}
}
onClipEvent (enterFrame) {
if (_root.heartfill1 == true) {
_root.saveSpotAttached._visible = false;
}
}
Instance of Symbol 137 MovieClip "back" in Frame 72
onClipEvent (enterFrame) {
this.swapDepths(13);
}
Instance of Symbol 137 MovieClip "lifeBar" in Frame 72
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
onClipEvent (enterFrame) {
this.swapDepths(14);
}
Instance of Symbol 235 MovieClip "ryFace" in Frame 72
onClipEvent (enterFrame) {
this.swapDepths(12);
}
Instance of Symbol 496 MovieClip "ryText" in Frame 72
onClipEvent (enterFrame) {
this.swapDepths(15);
}
Frame 77
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
walking = "";
counter0 = 0;
counter1 = 0;
counter2 = 0;
counter3 = 0;
counter4 = 0;
counter5 = 0;
counter6 = 0;
counter7 = 0;
counter8 = 0;
counter9 = 0;
counter10 = 0;
counter11 = 0;
counter12 = 0;
counter13 = 0;
counter14 = 0;
counter15 = 0;
gettingHurt = false;
cpuhp0 = 30;
cpuhp1 = 25;
cpuhp2 = 25;
cpuhp3 = 25;
cpuhp4 = 25;
cpuhp5 = 25;
cpuhp6 = 30;
cpuhp7 = 30;
cpuhp8 = 30;
cpuhp9 = 25;
cpuhp10 = 50;
cpuhp11 = 50;
cpuhp12 = 35;
cpuhp13 = 45;
cpuhp14 = 30;
cpuhp15 = 45;
cpuhp16 = 45;
cpuhp17 = 45;
cpuhp18 = 45;
cpuhp19 = 45;
cpuhp20 = 45;
cpuhp21 = 45;
cpuhp22 = 45;
cpuhp23 = 45;
cpuhp24 = 45;
cpuhp25 = 45;
dead0 = false;
dead1 = false;
dead2 = false;
dead3 = false;
dead4 = false;
dead5 = false;
dead6 = false;
dead7 = false;
dead8 = false;
dead9 = false;
dead10 = false;
dead11 = false;
dead12 = false;
dead13 = false;
dead14 = false;
dead15 = false;
dead16 = false;
dead17 = false;
dead18 = false;
dead19 = false;
dead20 = false;
dead21 = false;
dead22 = false;
dead23 = false;
dead24 = false;
dead25 = false;
_root.carpetAttached.removeMovieClip();
_root.rykisAttached.removeMovieClip();
_root.ryFace.removeMovieClip();
_root.lifeBar.removeMovieClip();
_root.back.removeMovieClip();
_root.ryText.removeMovieClip();
_root.doorsAttached.removeMovieClip();
stop();
Instance of Symbol 55 MovieClip "advanceto" in Frame 77
onClipEvent (enterFrame) {
if ((_root.dead1 == true) && ((((_root.dead0 == true) && (_root.dead6 == true)) && (_root.dead5 == true)) && (Key.isDown(39) && (_root.user.hitTest(this))))) {
_root.gotoAndPlay("wind");
}
}
Instance of Symbol 515 MovieClip "bot" in Frame 77
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (this._currentframe < 9)) {
this.nextFrame();
} else if (this._currentframe == 9) {
_root.destroyed = true;
this.gotoAndPlay("destroyed");
}
}
Instance of Symbol 351 MovieClip "user" in Frame 77
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 201.9) {
this._y = 201.9;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
trace(_root.count15);
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
Instance of Symbol 381 MovieClip "cpu" in Frame 77
onClipEvent (enterFrame) {
if (_root.ready == true) {
_root.findUser(_root.cpu, 7.5, 85, _root.dead1);
}
}
onClipEvent (enterFrame) {
_root.cpuTurn(_root.cpu, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(_root.cpu, 7.5, -10);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count2 < 16)) {
_root.count2++;
}
}
onClipEvent (enterFrame) {
if (_root.count2 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count2 == 15) {
_root.count2 = _root.count2 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp1 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp1 = _root.cpuhp1 - 5;
} else if ((_root.cpuhp1 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp1 <= 0) {
_root.dead1 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead1, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu0, _root.cpu6, _root.cpu2, _root.cpu5);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 381 MovieClip "cpu0" in Frame 77
onClipEvent (enterFrame) {
if (_root.ready == true) {
_root.findUser(_root.cpu0, 4, 85, _root.dead0);
}
}
onClipEvent (enterFrame) {
_root.cpuTurn(_root.cpu0, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(_root.cpu0, 7.5, -10);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count0 < 16)) {
_root.count0++;
}
}
onClipEvent (enterFrame) {
if (_root.count0 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count0 == 15) {
_root.count0 = _root.count0 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp0 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp0 = _root.cpuhp0 - 5;
} else if ((_root.cpuhp0 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp0 <= 0) {
_root.dead0 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead0, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu, _root.cpu6, _root.cpu2, _root.cpu5);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 435 MovieClip "cpu5" in Frame 77
onClipEvent (enterFrame) {
if (_root.ready == true) {
_root.findUser(this, 6, 50, _root.dead5);
}
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu, _root.cpu6, _root.cpu2, _root.cpu0);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count5 < 16)) {
_root.count5++;
}
}
onClipEvent (enterFrame) {
if (_root.count5 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count5 == 15) {
_root.count5 = _root.count5 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp5 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp5 = _root.cpuhp5 - 5;
} else if ((_root.cpuhp5 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp5 <= 0) {
_root.dead5 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead5, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 435 MovieClip "cpu6" in Frame 77
onClipEvent (enterFrame) {
if (_root.ready == true) {
_root.findUser(this, 8, 50, _root.dead6);
}
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu, _root.cpu0, _root.cpu2, _root.cpu5);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count6 < 16)) {
_root.count6++;
}
}
onClipEvent (enterFrame) {
if (_root.count6 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count6 == 15) {
_root.count6 = _root.count6 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp6 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp6 = _root.cpuhp6 - 5;
} else if ((_root.cpuhp6 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp6 <= 0) {
_root.dead6 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead6, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 517 MovieClip "blade5" in Frame 77
onClipEvent (enterFrame) {
if (_root.goAttack == true) {
this._y = this._y + 20;
}
}
onClipEvent (enterFrame) {
if ((_root.goAttack == true) && (this._y < 1)) {
this._x = int(Math.random() * 450);
}
}
onClipEvent (enterFrame) {
if (this._y > 410) {
this._y = -65.7;
}
}
onClipEvent (enterFrame) {
_root.count11++;
}
onClipEvent (enterFrame) {
if ((_root.count11 > 140) && (_root.count11 < 165)) {
_root.goAttack = true;
} else {
_root.goAttack = false;
}
}
onClipEvent (enterFrame) {
if (_root.count11 == 165) {
_root.count11 = _root.count11 - 165;
}
}
onClipEvent (enterFrame) {
if (_root.destroyed == true) {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.user) && (_root.gettingHurt == false)) && (_root.destroyed == false)) {
_root.user.me.gotoAndPlay("damage");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user) && (_root.destroyed == false)) {
_root.hp = _root.hp - 2;
}
}
Instance of Symbol 517 MovieClip "blade3" in Frame 77
onClipEvent (enterFrame) {
if (_root.goAttack == true) {
this._y = this._y + 20;
}
}
onClipEvent (enterFrame) {
if ((_root.goAttack == true) && (this._y < 1)) {
this._x = int(Math.random() * 450);
}
}
onClipEvent (enterFrame) {
if (this._y > 410) {
this._y = -65.7;
}
}
onClipEvent (enterFrame) {
_root.count13++;
}
onClipEvent (enterFrame) {
if ((_root.count13 > 140) && (_root.count13 < 165)) {
_root.goAttack = true;
} else {
_root.goAttack = false;
}
}
onClipEvent (enterFrame) {
if (_root.count13 == 165) {
_root.count13 = _root.count13 - 165;
}
}
onClipEvent (enterFrame) {
if (_root.destroyed == true) {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.user) && (_root.gettingHurt == false)) && (_root.destroyed == false)) {
_root.user.me.gotoAndPlay("damage");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user) && (_root.destroyed == false)) {
_root.hp = _root.hp - 2;
}
}
Instance of Symbol 517 MovieClip "blade1" in Frame 77
onClipEvent (enterFrame) {
if (_root.goAttack == true) {
this._y = this._y + 20;
}
}
onClipEvent (enterFrame) {
if ((_root.goAttack == true) && (this._y < 1)) {
this._x = int(Math.random() * 450);
}
}
onClipEvent (enterFrame) {
if (this._y > 410) {
this._y = -65.7;
}
}
onClipEvent (enterFrame) {
_root.count15++;
}
onClipEvent (enterFrame) {
if ((_root.count15 > 140) && (_root.count15 < 165)) {
_root.goAttack = true;
} else {
_root.goAttack = false;
}
}
onClipEvent (enterFrame) {
if (_root.count15 == 165) {
_root.count15 = _root.count15 - 165;
}
}
onClipEvent (enterFrame) {
if (_root.destroyed == true) {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.user) && (_root.gettingHurt == false)) && (_root.destroyed == false)) {
_root.user.me.gotoAndPlay("damage");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user) && (_root.destroyed == false)) {
_root.hp = _root.hp - 2;
}
}
Instance of Symbol 517 MovieClip "blade2" in Frame 77
onClipEvent (enterFrame) {
if (_root.goAttack == true) {
this._y = this._y + 20;
}
}
onClipEvent (enterFrame) {
if ((_root.goAttack == true) && (this._y < 1)) {
this._x = int(Math.random() * 450);
}
}
onClipEvent (enterFrame) {
if (this._y > 410) {
this._y = -65.7;
}
}
onClipEvent (enterFrame) {
_root.count14++;
}
onClipEvent (enterFrame) {
if ((_root.count14 > 140) && (_root.count14 < 165)) {
_root.goAttack = true;
} else {
_root.goAttack = false;
}
}
onClipEvent (enterFrame) {
if (_root.count14 == 165) {
_root.count14 = _root.count14 - 165;
}
}
onClipEvent (enterFrame) {
if (_root.destroyed == true) {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.user) && (_root.gettingHurt == false)) && (_root.destroyed == false)) {
_root.user.me.gotoAndPlay("damage");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user) && (_root.destroyed == false)) {
_root.hp = _root.hp - 2;
}
}
Instance of Symbol 517 MovieClip "blade4" in Frame 77
onClipEvent (enterFrame) {
if (_root.goAttack == true) {
this._y = this._y + 20;
}
}
onClipEvent (enterFrame) {
if ((_root.goAttack == true) && (this._y < 1)) {
this._x = int(Math.random() * 450);
}
}
onClipEvent (enterFrame) {
if (this._y > 410) {
this._y = -65.7;
}
}
onClipEvent (enterFrame) {
_root.count12++;
}
onClipEvent (enterFrame) {
if ((_root.count12 > 140) && (_root.count12 < 165)) {
_root.goAttack = true;
} else {
_root.goAttack = false;
}
}
onClipEvent (enterFrame) {
if (_root.count12 == 165) {
_root.count12 = _root.count12 - 165;
}
}
onClipEvent (enterFrame) {
if (_root.destroyed == true) {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if ((this.hitTest(_root.user) && (_root.gettingHurt == false)) && (_root.destroyed == false)) {
_root.user.me.gotoAndPlay("damage");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user) && (_root.destroyed == false)) {
_root.hp = _root.hp - 2;
}
}
Instance of Symbol 387 MovieClip "go" in Frame 77
onClipEvent (enterFrame) {
if ((_root.dead1 == true) && (((((_root.dead0 == true) && (_root.dead6 == true)) && (_root.dead5 == true)) && (this._currentframe == 1)) && (_root.bot._currentframe == 15))) {
this.gotoAndPlay("go");
}
}
Instance of Symbol 137 MovieClip in Frame 77
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 81
stopAllSounds();
Frame 82
Frame 86
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
walking = "";
counter0 = 0;
counter1 = 0;
counter2 = 0;
counter3 = 0;
counter4 = 0;
counter5 = 0;
counter6 = 0;
counter7 = 0;
counter8 = 0;
counter9 = 0;
counter10 = 0;
counter11 = 0;
counter12 = 0;
counter13 = 0;
counter14 = 0;
counter15 = 0;
gettingHurt = false;
cpuhp0 = 30;
cpuhp1 = 25;
cpuhp2 = 25;
cpuhp3 = 25;
cpuhp4 = 25;
cpuhp5 = 25;
cpuhp6 = 30;
cpuhp7 = 30;
cpuhp8 = 30;
cpuhp9 = 25;
cpuhp10 = 25;
cpuhp11 = 50;
cpuhp12 = 35;
cpuhp13 = 45;
cpuhp14 = 30;
cpuhp15 = 45;
cpuhp16 = 45;
cpuhp17 = 45;
cpuhp18 = 45;
cpuhp19 = 45;
cpuhp20 = 45;
cpuhp21 = 45;
cpuhp22 = 45;
cpuhp23 = 45;
cpuhp24 = 45;
cpuhp25 = 45;
dead0 = false;
dead1 = false;
dead2 = false;
dead3 = false;
dead4 = false;
dead5 = false;
dead6 = false;
dead7 = false;
dead8 = false;
dead9 = false;
dead10 = false;
dead11 = false;
dead12 = false;
dead13 = false;
dead14 = false;
dead15 = false;
dead16 = false;
dead17 = false;
dead18 = false;
dead19 = false;
dead20 = false;
dead21 = false;
dead22 = false;
dead23 = false;
dead24 = false;
dead25 = false;
lightUp = false;
stop();
Instance of Symbol 519 MovieClip "light" in Frame 86
onClipEvent (enterFrame) {
if (_root.user.hitTest(this.hit)) {
_root.lightUp = true;
} else if (_root.user.hitTest(_root.light2.hit)) {
_root.lightUp = true;
} else {
_root.lightUp = false;
}
}
Instance of Symbol 55 MovieClip "advanceto" in Frame 86
onClipEvent (enterFrame) {
if ((_root.dead10 == true) && (Key.isDown(39) && (_root.user.hitTest(this)))) {
_root.getOn();
}
}
Instance of Symbol 351 MovieClip "user" in Frame 86
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 201.9) {
this._y = 201.9;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
trace(_root.count10);
}
onClipEvent (enterFrame) {
if (_root.Hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
Instance of Symbol 528 MovieClip "cpu10" in Frame 86
onClipEvent (enterFrame) {
_root.findUser(this, 10, 75, _root.dead10);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
if (_root.lightUp == false) {
_root.attackUser(this);
}
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu, _root.cpu6, _root.cpu2, _root.cpu0);
}
onClipEvent (enterFrame) {
if ((_root.user.hitTest(this) && (_root.count10 < 16)) && (_root.lightUp == false)) {
_root.count10++;
}
}
onClipEvent (enterFrame) {
if ((_root.count10 == 15) && (_root.lightUp == false)) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count10 >= 15) {
_root.count10 = _root.count10 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if ((_root.user.me.hit.hitTest(this) && (_root.cpuhp10 > 0)) && (_root.lightUp == true)) {
this.gotoAndPlay("damage");
_root.cpuhp10 = _root.cpuhp10 - 5;
} else if ((_root.cpuhp10 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp10 <= 0) {
_root.dead10 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead10, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 387 MovieClip "go" in Frame 86
onClipEvent (enterFrame) {
if ((_root.dead10 == true) && (this._currentframe == 1)) {
this.gotoAndPlay("go");
}
}
Instance of Symbol 137 MovieClip in Frame 86
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 90
stopAllSounds();
Frame 92
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
walking = "";
counter0 = 0;
counter1 = 0;
counter2 = 0;
counter3 = 0;
counter4 = 0;
counter5 = 0;
counter6 = 0;
counter7 = 0;
counter8 = 0;
counter9 = 0;
counter10 = 0;
counter11 = 0;
counter12 = 0;
counter13 = 0;
counter14 = 0;
counter15 = 0;
gettingHurt = false;
cpuhp0 = 30;
cpuhp1 = 25;
cpuhp2 = 25;
cpuhp3 = 25;
cpuhp4 = 25;
cpuhp5 = 25;
cpuhp6 = 30;
cpuhp7 = 30;
cpuhp8 = 30;
cpuhp9 = 25;
cpuhp10 = 25;
cpuhp11 = 50;
cpuhp12 = 35;
cpuhp13 = 45;
cpuhp14 = 30;
cpuhp15 = 45;
cpuhp16 = 45;
cpuhp17 = 45;
cpuhp18 = 45;
cpuhp19 = 45;
cpuhp20 = 45;
cpuhp21 = 45;
cpuhp22 = 45;
cpuhp23 = 45;
cpuhp24 = 45;
cpuhp25 = 45;
dead0 = false;
dead1 = false;
dead2 = false;
dead3 = false;
dead4 = false;
dead5 = false;
dead6 = false;
dead7 = false;
dead8 = false;
dead9 = false;
dead10 = false;
dead11 = false;
dead12 = false;
dead13 = false;
dead14 = false;
dead15 = false;
dead16 = false;
dead17 = false;
dead18 = false;
dead19 = false;
dead20 = false;
dead21 = false;
dead22 = false;
dead23 = false;
dead24 = false;
dead25 = false;
lightUp = false;
stop();
Instance of Symbol 55 MovieClip "advanceto" in Frame 92
onClipEvent (enterFrame) {
if ((_root.dead1 == true) && ((((_root.dead0 == true) && (_root.dead6 == true)) && (_root.dead5 == true)) && (Key.isDown(39) && (_root.user.hitTest(this))))) {
_root.getOn();
}
}
Instance of Symbol 351 MovieClip "user" in Frame 92
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 201.9) {
this._y = 201.9;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
trace(_root.count10);
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
Instance of Symbol 435 MovieClip "cpu5" in Frame 92
onClipEvent (enterFrame) {
_root.findUser(this, 6, 50, _root.dead5);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu, _root.cpu6, _root.cpu2, _root.cpu0);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count5 < 16)) {
_root.count5++;
}
}
onClipEvent (enterFrame) {
if (_root.count5 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count5 == 15) {
_root.count5 = _root.count5 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp5 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp5 = _root.cpuhp5 - 5;
} else if ((_root.cpuhp5 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp5 <= 0) {
_root.dead5 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead5, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 435 MovieClip "cpu6" in Frame 92
onClipEvent (enterFrame) {
_root.findUser(this, 8, 50, _root.dead6);
}
onClipEvent (enterFrame) {
_root.findUserY(this, 5, -15);
}
onClipEvent (enterFrame) {
_root.attackUser(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu, _root.cpu0, _root.cpu2, _root.cpu5);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count6 < 16)) {
_root.count6++;
}
}
onClipEvent (enterFrame) {
if (_root.count6 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count6 == 15) {
_root.count6 = _root.count6 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp6 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp6 = _root.cpuhp6 - 5;
} else if ((_root.cpuhp6 <= 0) && (this._currentframe < 13)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp6 <= 0) {
_root.dead6 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead6, 15);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
if (_root.user._x < this._x) {
this._xscale = 50;
} else if (_root.user._x > this._x) {
this._xscale = -50;
}
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 381 MovieClip "cpu" in Frame 92
onClipEvent (enterFrame) {
if (_root.dead5 && (_root.dead6 == true)) {
_root.findUser(_root.cpu, 7.5, 85, _root.dead1);
}
}
onClipEvent (enterFrame) {
_root.cpuTurn(_root.cpu, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(_root.cpu, 7.5, -10);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count2 < 16)) {
_root.count2++;
}
}
onClipEvent (enterFrame) {
if (_root.count2 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count2 == 15) {
_root.count2 = _root.count2 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp1 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp1 = _root.cpuhp1 - 5;
} else if ((_root.cpuhp1 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp1 <= 0) {
_root.dead1 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead1, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu13, _root.cpu0);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 381 MovieClip "cpu0" in Frame 92
onClipEvent (enterFrame) {
if (_root.dead5 && (_root.dead6 == true)) {
_root.findUser(_root.cpu0, 4, 85, _root.dead0);
}
}
onClipEvent (enterFrame) {
_root.cpuTurn(_root.cpu0, 20);
}
onClipEvent (enterFrame) {
_root.findUserY(_root.cpu0, 7.5, -10);
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.count0 < 16)) {
_root.count0++;
}
}
onClipEvent (enterFrame) {
if (_root.count0 == 15) {
this.gotoAndPlay("attack1");
}
}
onClipEvent (enterFrame) {
if (_root.count0 == 15) {
_root.count0 = _root.count0 - 15;
}
}
onClipEvent (enterFrame) {
_root.userHurt(this);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(this) && (_root.cpuhp0 > 0)) {
this.gotoAndPlay("damage");
_root.cpuhp0 = _root.cpuhp0 - 5;
} else if ((_root.cpuhp0 <= 0) && (this._currentframe < 26)) {
this.gotoAndPlay("death");
}
}
onClipEvent (enterFrame) {
if (_root.cpuhp0 <= 0) {
_root.dead0 = true;
}
}
onClipEvent (enterFrame) {
_root.removeCpu(this, _root.dead0, 35);
}
onClipEvent (enterFrame) {
_root.getLife(this);
}
onClipEvent (enterFrame) {
_root.touchTeam(this, _root.cpu13, _root.cpu);
}
onClipEvent (enterFrame) {
_root.getBack(this);
}
Instance of Symbol 387 MovieClip "go" in Frame 92
onClipEvent (enterFrame) {
if ((_root.dead1 == true) && ((((_root.dead0 == true) && (_root.dead6 == true)) && (_root.dead5 == true)) && (this._currentframe == 1))) {
this.gotoAndPlay("go");
}
}
Instance of Symbol 137 MovieClip in Frame 92
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 95
stopAllSounds();
Frame 96
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("gossamir");
themeSong.start(0.1, 9999);
stop();
Instance of Symbol 593 MovieClip "chat" in Frame 96
onClipEvent (enterFrame) {
if (_root.gossAndRyk.gossamir._currentframe > 14) {
this._alpha = 100;
}
}
Frame 101
stopAllSounds();
Frame 105
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("boss");
themeSong.start(0.1, 9999);
_quality = "low";
walking = "";
counter0 = 0;
counter1 = 0;
counter2 = 0;
counter3 = 0;
counter4 = 0;
counter5 = 0;
counter6 = 0;
counter7 = 0;
counter8 = 0;
counter9 = 0;
counter10 = 0;
counter11 = 0;
counter12 = 0;
counter13 = 0;
counter14 = 0;
counter15 = 0;
gettingHurt = false;
cpuhp0 = 30;
cpuhp1 = 25;
cpuhp2 = 25;
cpuhp3 = 25;
cpuhp4 = 25;
cpuhp5 = 25;
cpuhp6 = 30;
cpuhp7 = 30;
cpuhp8 = 30;
cpuhp9 = 25;
cpuhp10 = 25;
cpuhp11 = 50;
cpuhp12 = 35;
cpuhp13 = 45;
cpuhp14 = 30;
cpuhp15 = 45;
cpuhp16 = 45;
cpuhp17 = 45;
cpuhp18 = 45;
cpuhp19 = 45;
cpuhp20 = 45;
cpuhp21 = 45;
cpuhp22 = 45;
cpuhp23 = 45;
cpuhp24 = 45;
cpuhp25 = 45;
dead0 = false;
dead1 = false;
dead2 = false;
dead3 = false;
dead4 = false;
dead5 = false;
dead6 = false;
dead7 = false;
dead8 = false;
dead9 = false;
dead10 = false;
dead11 = false;
dead12 = false;
dead13 = false;
dead14 = false;
dead15 = false;
dead16 = false;
dead17 = false;
dead18 = false;
dead19 = false;
dead20 = false;
dead21 = false;
dead22 = false;
dead23 = false;
dead24 = false;
dead25 = false;
lightUp = false;
cpuAttacking = false;
dragonHurt = false;
bossHp = 250;
hp = 100;
stop();
Instance of Symbol 658 MovieClip "dragon" in Frame 105
onClipEvent (enterFrame) {
var rando = int(Math.random() * 2500);
var burnOn = false;
trace(rando);
if ((((rando > 400) && (rando < 500)) && (_root.dragon._currentframe == 1)) && (_root.dragonHurt == false)) {
_root.dragon.gotoAndPlay("fireBreath");
_root.burn.gotoAndPlay("flame");
} else if ((((rando > 100) && (rando < 200)) && (_root.dragon._currentframe == 1)) && (_root.dragonHurt == false)) {
_root.dragon.gotoAndPlay("hurtMe");
} else if ((((rando > 800) && (rando < 900)) && (_root.dragon._currentframe == 1)) && (_root.dragonHurt == false)) {
_root.dragon.gotoAndPlay("skyFlame");
}
}
onClipEvent (enterFrame) {
if (_root.cpuAttacking == false) {
_root.findUser(this, 5, 85, _root.dead25);
}
}
onClipEvent (enterFrame) {
if (_root.bossHp <= 0) {
_root.gotoAndPlay("end");
}
}
Instance of Symbol 668 MovieClip "burn" in Frame 105
onClipEvent (enterFrame) {
if (_root.cpuAttacking == false) {
_root.findUser(this, 5, 85, _root.dead25);
}
}
onClipEvent (enterFrame) {
if ((_root.dragon._currentframe > 2) && (_root.dragon._currentframe < 23)) {
this._visible = true;
} else {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if (_root.burn.hit.hitTest(_root.user)) {
_root.user.me.gotoAndPlay("damage");
}
}
onClipEvent (enterFrame) {
if (_root.burn.hit.hitTest(_root.user)) {
_root.hp = _root.hp - 3;
} else if (_root.burn2.hit.hitTest(_root.user)) {
_root.hp = _root.hp - 3;
}
}
Instance of Symbol 351 MovieClip "user" in Frame 105
onClipEvent (enterFrame) {
if (Key.isDown(39) && (_root.walking == true)) {
this._x = this._x + 15;
} else if (Key.isDown(37) && (_root.walking == true)) {
this._x = this._x - 15;
} else if (Key.isDown(38) && (_root.walking == true)) {
this._y = this._y - 15;
} else if (Key.isDown(40) && (_root.walking == true)) {
this._y = this._y + 15;
}
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 217.9) {
this._y = 217.9;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
trace(_root.user._currentframe);
}
onClipEvent (enterFrame) {
if (_root.user.me.hit.hitTest(_root.dragon.hitMe)) {
_root.dragon.gotoAndPlay("damage");
_root.bossHp = _root.bossHp - 20;
}
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
Instance of Symbol 672 MovieClip "flame1" in Frame 105
onClipEvent (enterFrame) {
if ((_root.dragon._currentframe > 61) && ((_root.dragon._currentframe < 90) && (this._currentframe == 1))) {
this.gotoAndPlay("flameOn");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user) && (_root.gettingHurt == false)) {
_root.user.me.gotoAndPlay("damage");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user)) {
_root.hp = _root.hp - 3;
}
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = int(Math.random() * 450);
}
}
Instance of Symbol 672 MovieClip "flame2" in Frame 105
onClipEvent (enterFrame) {
var mat = int(Math.random() * 3500);
if ((_root.dragon._currentframe > 61) && (((_root.dragon._currentframe < 90) && (this._currentframe == 1)) && (mat < 100))) {
this.gotoAndPlay("flameOn");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user) && (_root.gettingHurt == false)) {
_root.user.me.gotoAndPlay("damage");
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.user) && (_root.gettingHurt == false)) {
_root.hp = _root.hp - 3;
}
}
onClipEvent (enterFrame) {
if (this._currentframe == 1) {
this._x = int(Math.random() * 450);
}
}
Instance of Symbol 137 MovieClip in Frame 105
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Instance of Symbol 137 MovieClip in Frame 105
onClipEvent (enterFrame) {
this._width = _root.bossHp;
}
onClipEvent (enterFrame) {
if (this._width >= 250) {
this._width = 250;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 107
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
stop();
Frame 108
stopAllSounds();
stop();
Frame 109
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
_quality = "low";
walking = "";
counter0 = 0;
counter1 = 0;
counter2 = 0;
counter3 = 0;
counter4 = 0;
counter5 = 0;
counter6 = 0;
counter7 = 0;
counter8 = 0;
counter9 = 0;
counter10 = 0;
counter11 = 0;
counter12 = 0;
counter13 = 0;
counter14 = 0;
counter15 = 0;
gettingHurt = false;
cpuhp0 = 30;
cpuhp1 = 25;
cpuhp2 = 25;
cpuhp3 = 25;
cpuhp4 = 25;
cpuhp5 = 25;
cpuhp6 = 30;
cpuhp7 = 30;
cpuhp8 = 30;
cpuhp9 = 25;
cpuhp10 = 25;
cpuhp11 = 50;
cpuhp12 = 35;
cpuhp13 = 45;
cpuhp14 = 30;
cpuhp15 = 45;
cpuhp16 = 45;
cpuhp17 = 45;
cpuhp18 = 45;
cpuhp19 = 45;
cpuhp20 = 45;
cpuhp21 = 45;
cpuhp22 = 45;
cpuhp23 = 45;
cpuhp24 = 45;
cpuhp25 = 45;
dead0 = false;
dead1 = false;
dead2 = false;
dead3 = false;
dead4 = false;
dead5 = false;
dead6 = false;
dead7 = false;
dead8 = false;
dead9 = false;
dead10 = false;
dead11 = false;
dead12 = false;
dead13 = false;
dead14 = false;
dead15 = false;
dead16 = false;
dead17 = false;
dead18 = false;
dead19 = false;
dead20 = false;
dead21 = false;
dead22 = false;
dead23 = false;
dead24 = false;
dead25 = false;
lightUp = false;
cpuAttacking = false;
dragonHurt = false;
bossHp = 250;
stop();
Instance of Symbol 137 MovieClip in Frame 109
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Instance of Symbol 351 MovieClip "user" in Frame 109
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 182) {
this._y = 182;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
Instance of Symbol 55 MovieClip "advanceto" in Frame 109
onClipEvent (enterFrame) {
if (_root.user.hitTest(this)) {
_root.getOn();
}
}
Instance of Symbol 137 MovieClip in Frame 109
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Frame 110
stopAllSounds();
Frame 113
stopAllSounds();
i = 0;
while (i < 5) {
i++;
}
themeSong = new sound();
themeSong.attachSound("introMusic");
themeSong.start(0.1, 9999);
_quality = "low";
walking = "";
onit = false;
onit2 = false;
onit3 = false;
onit4 = false;
onit5 = false;
counter0 = 0;
counter1 = 0;
counter2 = 0;
counter3 = 0;
counter4 = 0;
counter5 = 0;
counter6 = 0;
counter7 = 0;
counter8 = 0;
counter9 = 0;
counter10 = 0;
counter11 = 0;
counter12 = 0;
counter13 = 0;
counter14 = 0;
counter15 = 0;
gettingHurt = false;
cpuhp0 = 30;
cpuhp1 = 25;
cpuhp2 = 25;
cpuhp3 = 25;
cpuhp4 = 25;
cpuhp5 = 25;
cpuhp6 = 30;
cpuhp7 = 30;
cpuhp8 = 30;
cpuhp9 = 25;
cpuhp10 = 25;
cpuhp11 = 50;
cpuhp12 = 35;
cpuhp13 = 45;
cpuhp14 = 30;
cpuhp15 = 45;
cpuhp16 = 45;
cpuhp17 = 45;
cpuhp18 = 45;
cpuhp19 = 45;
cpuhp20 = 45;
cpuhp21 = 45;
cpuhp22 = 45;
cpuhp23 = 45;
cpuhp24 = 45;
cpuhp25 = 45;
dead0 = false;
dead1 = false;
dead2 = false;
dead3 = false;
dead4 = false;
dead5 = false;
dead6 = false;
dead7 = false;
dead8 = false;
dead9 = false;
dead10 = false;
dead11 = false;
dead12 = false;
dead13 = false;
dead14 = false;
dead15 = false;
dead16 = false;
dead17 = false;
dead18 = false;
dead19 = false;
dead20 = false;
dead21 = false;
dead22 = false;
dead23 = false;
dead24 = false;
dead25 = false;
lightUp = false;
cpuAttacking = false;
dragonHurt = false;
bossHp = 250;
stop();
Instance of Symbol 137 MovieClip in Frame 113
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Instance of Symbol 464 MovieClip "switch1" in Frame 113
onClipEvent (load) {
this._currentframe = 2;
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.onit == false)) {
this.gotoAndStop(1);
_root.opendoor.gotoAndStop(2);
_root.onit = true;
}
}
Instance of Symbol 464 MovieClip "switch2" in Frame 113
onClipEvent (load) {
this._currentframe = 2;
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.onit2 == false)) {
this.gotoAndStop(1);
_root.opendoor2.gotoAndStop(2);
_root.onit2 = true;
}
}
Instance of Symbol 464 MovieClip "switch3" in Frame 113
onClipEvent (load) {
this._currentframe = 2;
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.onit3 == false)) {
this.gotoAndStop(1);
_root.opendoor3.gotoAndStop(2);
_root.onit3 = true;
}
}
Instance of Symbol 464 MovieClip "switch4" in Frame 113
onClipEvent (load) {
this._currentframe = 2;
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.onit4 == false)) {
this.gotoAndStop(1);
_root.opendoor4.gotoAndStop(2);
onit4 = true;
}
}
Instance of Symbol 464 MovieClip "switch5" in Frame 113
onClipEvent (load) {
this._currentframe = 2;
}
onClipEvent (enterFrame) {
if (_root.user.hitTest(this) && (_root.onit5 == false)) {
this.gotoAndStop(1);
_root.opendoor5.gotoAndStop(2);
_root.onit5 = true;
}
}
Instance of Symbol 464 MovieClip "reset" in Frame 113
onClipEvent (enterFrame) {
if (_root.user.hitTest(this)) {
this.gotoAndPlay(1);
_root.switch1.gotoAndStop(2);
_root.opendoor.gotoAndStop(1);
_root.onit = false;
_root.switch2.gotoAndStop(2);
_root.opendoor2.gotoAndStop(1);
_root.onit2 = false;
_root.switch3.gotoAndStop(2);
_root.onit3 = false;
_root.opendoor3.gotoAndStop(1);
_root.switch4.gotoAndStop(2);
_root.opendoor4.gotoAndStop(1);
_root.onit4 = false;
_root.switch5.gotoAndStop(2);
_root.opendoor5.gotoAndStop(1);
_root.onit5 = false;
} else if (!_root.user.hitTest(this)) {
this.gotoAndStop(2);
}
}
Instance of Symbol 468 MovieClip "stair" in Frame 113
onClipEvent (enterFrame) {
if (((((_root.opendoor._currentframe == 1) && (_root.opendoor2._currentframe == 2)) && (_root.opendoor3._currentframe == 2)) && (_root.opendoor4._currentframe == 1)) && (_root.opendoor5._currentframe == 2)) {
this._visible = true;
} else {
this._visible = false;
}
}
onClipEvent (enterFrame) {
if ((((((_root.opendoor._currentframe == 1) && (_root.opendoor2._currentframe == 2)) && (_root.opendoor3._currentframe == 2)) && (_root.opendoor4._currentframe == 1)) && (_root.opendoor5._currentframe == 2)) && (_root.user.hitTest(this))) {
_root.gotoAndPlay("ghost");
}
}
Instance of Symbol 351 MovieClip "user" in Frame 113
onClipEvent (enterFrame) {
_root.userWalk(_root.user, 15);
}
onClipEvent (enterFrame) {
Stage.scaleMode = "noScale";
Stage.showMenu = false;
}
onClipEvent (enterFrame) {
if (this._x > 500) {
this._x = 500;
} else if (this._x < 10) {
this._x = 10;
} else if (this._y < 182) {
this._y = 182;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
if (_root.hp <= 0) {
_root.gotoAndPlay("gameOver");
}
}
Instance of Symbol 137 MovieClip in Frame 113
onClipEvent (enterFrame) {
this._width = _root.hp;
}
onClipEvent (enterFrame) {
if (this._width >= 100) {
this._width = 100;
} else if (this._width <= 0) {
this._width = 0;
}
}
Symbol 39 Button
on (keyPress "<Left>") {
gotoAndPlay (2);
}
on (keyPress "<Right>") {
gotoAndPlay (2);
}
on (keyPress "z") {
gotoAndPlay (8);
}
on (keyPress "x") {
gotoAndPlay (18);
}
on (keyPress "c") {
gotoAndPlay (45);
}
on (keyPress "<Up>") {
gotoAndPlay (2);
}
on (keyPress "<Down>") {
gotoAndPlay (2);
}
Symbol 99 MovieClip Frame 1
stop();
_root.walking = false;
_root.gettingHurt = false;
Symbol 99 MovieClip Frame 2
_root.walking = true;
Symbol 99 MovieClip Frame 7
gotoAndPlay (1);
Symbol 99 MovieClip Frame 8
_root.walking = false;
Symbol 99 MovieClip Frame 17
gotoAndPlay (1);
Symbol 99 MovieClip Frame 18
_root.walking = false;
Symbol 99 MovieClip Frame 31
gotoAndPlay (1);
Symbol 99 MovieClip Frame 32
_root.walking = false;
Symbol 99 MovieClip Frame 39
gotoAndPlay (1);
Symbol 99 MovieClip Frame 40
_root.gettingHurt = true;
Symbol 99 MovieClip Frame 44
gotoAndPlay (1);
Symbol 99 MovieClip Frame 59
gotoAndPlay (1);
Instance of Symbol 99 MovieClip "me" in Symbol 100 MovieClip [rykis] Frame 1
onClipEvent (enterFrame) {
if (_root.fadeAttached._currentframe == 5) {
_root.userWalk(this, 30);
}
}
onClipEvent (enterFrame) {
if (this._x > 1414) {
this._x = 1414;
} else if (this._x < -46.1) {
this._x = -46.1;
} else if (this._y < -201.9) {
this._y = -201.9;
} else if (this._y > 300) {
this._y = 300;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this._xscale = 100;
} else if (Key.isDown(39)) {
this._xscale = -100;
}
}
Symbol 128 MovieClip [fade] Frame 5
stop();
Symbol 128 MovieClip [fade] Frame 6
gotoAndPlay (1);
Symbol 175 Button
on (press) {
_root.gotoAndPlay("title");
}
Symbol 178 MovieClip Frame 35
stop();
Symbol 214 MovieClip Frame 41
stop();
Symbol 222 Button
on (press) {
_root.gotoAndPlay("act1");
}
Symbol 226 Button
on (press) {
_root.gotoAndPlay("howto");
}
Symbol 245 Button
on (press) {
gotoAndPlay (33);
}
Symbol 277 Button
on (keyPress "<Left>") {
gotoAndPlay (2);
}
on (keyPress "<Right>") {
gotoAndPlay (2);
}
on (keyPress "z") {
gotoAndPlay (8);
}
on (keyPress "x") {
gotoAndPlay (18);
}
on (keyPress "c") {
gotoAndPlay (45);
}
on (keyPress "<Up>") {
gotoAndPlay (2);
}
on (keyPress "<Down>") {
gotoAndPlay (2);
}
Symbol 350 MovieClip Frame 1
stop();
_root.walking = false;
_root.gettingHurt = false;
Symbol 350 MovieClip Frame 2
_root.walking = true;
Symbol 350 MovieClip Frame 7
gotoAndPlay (1);
Symbol 350 MovieClip Frame 8
_root.walking = false;
Symbol 350 MovieClip Frame 17
gotoAndPlay (1);
Symbol 350 MovieClip Frame 18
_root.walking = false;
Symbol 350 MovieClip Frame 31
gotoAndPlay (1);
Symbol 350 MovieClip Frame 32
_root.walking = false;
Symbol 350 MovieClip Frame 39
gotoAndPlay (1);
Symbol 350 MovieClip Frame 40
_root.gettingHurt = true;
Symbol 350 MovieClip Frame 44
gotoAndPlay (1);
Symbol 350 MovieClip Frame 59
gotoAndPlay (1);
Symbol 350 MovieClip Frame 72
gotoAndPlay (1);
Instance of Symbol 350 MovieClip "me" in Symbol 351 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this._xscale = -100;
} else if (Key.isDown(39)) {
this._xscale = 100;
}
}
Symbol 381 MovieClip Frame 1
Symbol 381 MovieClip Frame 8
gotoAndPlay (1);
Symbol 381 MovieClip Frame 21
gotoAndPlay (2);
Symbol 381 MovieClip Frame 26
gotoAndPlay (2);
Symbol 381 MovieClip Frame 37
stop();
Symbol 387 MovieClip Frame 1
stop();
Symbol 387 MovieClip Frame 43
stop();
Symbol 410 MovieClip Frame 1
stop();
Symbol 410 MovieClip Frame 11
stop();
Symbol 435 MovieClip Frame 2
Symbol 435 MovieClip Frame 5
gotoAndPlay (1);
Symbol 435 MovieClip Frame 6
Symbol 435 MovieClip Frame 9
gotoAndPlay (1);
Symbol 435 MovieClip Frame 10
Symbol 435 MovieClip Frame 12
gotoAndPlay (1);
Symbol 435 MovieClip Frame 20
stop();
Symbol 452 MovieClip Frame 16
stop();
Symbol 453 MovieClip Frame 25
stop();
_root.getOn();
Symbol 464 MovieClip Frame 1
_root.switched = false;
stop();
Symbol 464 MovieClip Frame 2
_root.switched = true;
stop();
Symbol 491 MovieClip Frame 1
stop();
Symbol 491 MovieClip Frame 30
gotoAndPlay (1);
Symbol 491 MovieClip Frame 40
stop();
Symbol 494 MovieClip Frame 69
stop();
Symbol 515 MovieClip Frame 1
stop();
Symbol 515 MovieClip Frame 15
stop();
Symbol 528 MovieClip Frame 8
gotoAndPlay (1);
Symbol 528 MovieClip Frame 13
gotoAndPlay (1);
Symbol 528 MovieClip Frame 20
gotoAndPlay (1);
Symbol 528 MovieClip Frame 27
stop();
Symbol 537 MovieClip Frame 5
stop();
Symbol 553 MovieClip Frame 2
Symbol 553 MovieClip Frame 15
stop();
Symbol 555 MovieClip Frame 10
gotoAndPlay (1);
Symbol 555 MovieClip Frame 15
stop();
Symbol 558 MovieClip Frame 1
stop();
Symbol 558 MovieClip Frame 15
stop();
_root.getOn();
Symbol 571 Button
on (press) {
nextFrame();
}
Symbol 592 Button
on (press) {
_root.gossAndRyk.baby.gotoAndPlay("rise");
nextFrame();
}
Symbol 593 MovieClip Frame 1
stop();
Symbol 593 MovieClip Frame 2
stop();
Symbol 593 MovieClip Frame 3
stop();
Symbol 593 MovieClip Frame 4
stop();
Symbol 593 MovieClip Frame 5
stop();
Symbol 593 MovieClip Frame 6
stop();
Symbol 593 MovieClip Frame 7
stop();
Symbol 593 MovieClip Frame 8
stop();
Symbol 593 MovieClip Frame 9
stop();
Symbol 593 MovieClip Frame 10
stop();
Symbol 593 MovieClip Frame 11
stop();
Symbol 593 MovieClip Frame 12
stop();
Symbol 593 MovieClip Frame 13
stop();
Symbol 593 MovieClip Frame 14
stop();
Symbol 593 MovieClip Frame 15
stop();
Symbol 593 MovieClip Frame 16
stop();
Symbol 593 MovieClip Frame 17
stop();
Symbol 593 MovieClip Frame 18
stop();
Symbol 593 MovieClip Frame 19
stop();
Symbol 593 MovieClip Frame 20
stop();
Symbol 593 MovieClip Frame 21
stop();
Symbol 593 MovieClip Frame 22
stop();
Symbol 658 MovieClip Frame 1
stop();
_root.cpuAttacking = false;
Symbol 658 MovieClip Frame 2
_root.cpuAttacking = true;
Symbol 658 MovieClip Frame 21
gotoAndPlay (1);
Symbol 658 MovieClip Frame 22
_root.cpuAttacking = false;
Symbol 658 MovieClip Frame 39
gotoAndPlay (1);
Symbol 658 MovieClip Frame 55
_root.cpuAttacking = false;
Symbol 658 MovieClip Frame 60
gotoAndPlay (1);
Symbol 658 MovieClip Frame 61
_root.cpuAttacking = true;
Symbol 658 MovieClip Frame 90
gotoAndPlay (1);
Symbol 668 MovieClip Frame 1
stop();
Symbol 668 MovieClip Frame 21
gotoAndPlay (1);
Symbol 672 MovieClip Frame 1
stop();
Symbol 672 MovieClip Frame 15
gotoAndPlay (1);
Symbol 690 MovieClip Frame 17
stop();
Symbol 698 Button
on (press) {
nextFrame();
}
Symbol 723 MovieClip Frame 1
stop();
Symbol 723 MovieClip Frame 2
stop();
Symbol 723 MovieClip Frame 3
stop();
Symbol 723 MovieClip Frame 4
stop();
Symbol 723 MovieClip Frame 5
stop();
Symbol 723 MovieClip Frame 6
stop();
Symbol 723 MovieClip Frame 7
stop();
Symbol 723 MovieClip Frame 8
stop();
Symbol 723 MovieClip Frame 9
stop();
Symbol 723 MovieClip Frame 10
stop();
Symbol 723 MovieClip Frame 11
stop();
Symbol 723 MovieClip Frame 12
stop();
Symbol 723 MovieClip Frame 13
stop();
Symbol 723 MovieClip Frame 14
stop();
Symbol 723 MovieClip Frame 15
stop();
Symbol 723 MovieClip Frame 16
stop();
Symbol 723 MovieClip Frame 17
stop();
Symbol 723 MovieClip Frame 18
stop();
Symbol 723 MovieClip Frame 19
stop();
Symbol 723 MovieClip Frame 20
stop();
Symbol 730 Button
on (press) {
gotoAndPlay (20);
}
Symbol 742 MovieClip Frame 1
stop();
Symbol 742 MovieClip Frame 2
stop();