Frame 1
function doSomething() {
getURL ("http://www.thegameblazer.com/jcforums/index.php?sid=e036eb06bdd12c98af8ff331aa9d276a", _blank);
}
function doSomething2() {
getURL ("http://www.thegameblazer.com/ ", _blank);
}
function doSomething3() {
getURL ("http://www.gamesgamesgames.co.uk/ ", _blank);
}
MENU.customItems.push(Functioned2);
MENU = new ContextMenu();
MENU.hideBuiltInItems();
Functioned = new ContextMenuItem("JC Forums", doSomething);
Functioned2 = new ContextMenuItem("TheGameBlazer", doSomething2);
Functioned3 = new ContextMenuItem("GamesGamesGames", doSomething3);
MENU.customItems.push(Functioned);
MENU.customItems.push(Functioned2);
MENU.customItems.push(Functioned3);
_root.menu = MENU;
Instance of Symbol 247 MovieClip in Frame 1
onClipEvent (enterFrame) {
Mouse.hide();
}
onClipEvent (load) {
_x = _root._xmouse;
_y = _root._ymouse;
}
onClipEvent (mouseMove) {
_x = _root._xmouse;
_y = _root._ymouse;
}
Frame 2
stop();
Frame 3
stop();
Frame 4
stop();
Frame 5
score = 0;
health = 100;
_root.livesswich.lives = 20;
stopAllSounds();
stop();
_root.weapons._visible = false;
_root.cheats._visible = false;
Instance of Symbol 613 MovieClip "weapons" in Frame 5
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Frame 6
_root.weapons.arrowammo = 0;
_root.weapons.plasmaammo = 0;
_root.weapons.plasmareload = 0;
_root.weapons.shotgunammo = 0;
_root.weapons.shotguncartridge = 0;
_root.weapons.machine = 0;
_root.weapons.machinecartridge = 0;
_root.weapons.rocketammo = 0;
_root.weapons.rockets = 0;
_root.weapons.redeemerammo = 0;
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.health = health;
_root.score = score;
_root.weapons._visible = true;
stop();
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
_root.livesswich.lives = livesswich.lives;
if (_root.health <= 0) {
gotoAndStop (7);
}
_root.weapons.arroh = 0;
_root.weapons.plasmah = 0;
_root.weapons.shoth = 0;
_root.weapons.machineh = 0;
_root.weapons.rocketh = 0;
_root.weapons.redeemh = 0;
Instance of Symbol 700 MovieClip "floor" in Frame 6
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
removeMovieClip(_root.enemy);
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 6
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 40;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(7);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 970 MovieClip "enemy" in Frame 6
onClipEvent (load) {
randx = Math.random() * 1000;
randy = Math.random() * 1000;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(7);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 4;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 5;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 10;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 10;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 50;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (5);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.grounda.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Instance of Symbol 993 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndStop(61);
stopAllSounds();
}
}
Frame 7
_root.weapons.arrowammo = weapons.arrowammo;
_root.weapons.plasmaammo = weapons.plasmaammo;
_root.weapons.plasmareload = weapons.plasmareload;
_root.weapons.shotgunammo = weapons.shotgunammo;
_root.weapons.shotguncartridge = weapons.shotguncartridge;
_root.weapons.machine = weapons.machine;
_root.weapons.machinecartridge = weapons.machinecartridge;
_root.weapons.rocketammo = weapons.rocketammo;
_root.weapons.rockets = weapons.rockets;
_root.weapons.redeemerammo = weapons.redeemerammo;
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
stop();
_root.livesswich.lives = livesswich.lives;
Frame 8
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 9
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 10
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 10
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 10
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
gotoAndStop ("right");
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
gotoAndStop ("left");
this._x = this._x - moveSpeed;
} else {
gotoAndStop ("stand");
if (undefined) {
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
gotoAndStop ("up");
_root.gotoAndPlay("sounds.jump");
vel_y = 35;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
gotoAndStop ("stand");
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(11);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 1210 MovieClip "enemy" in Frame 10
onClipEvent (load) {
randx = Math.random() * 1000;
randy = Math.random() * 1000;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(11);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 10;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 5;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 10;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 10;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 10;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (18);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.grounda.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Instance of Symbol 993 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Frame 11
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 12
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 13
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.weapons._visible = false;
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
Frame 14
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 14
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 14
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
gotoAndStop ("right");
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
gotoAndStop ("left");
this._x = this._x - moveSpeed;
} else {
gotoAndStop ("stand");
if (undefined) {
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
gotoAndStop ("up");
_root.gotoAndPlay("sounds.jump");
vel_y = 40;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
gotoAndStop ("stand");
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(15);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 1271 MovieClip "enemy" in Frame 14
onClipEvent (load) {
randx = Math.random() * 500;
randy = Math.random() * 400;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.health = _root.health - 0.5;
}
}
onClipEvent (load) {
HP = 12;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 15;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 15;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 15;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 15;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 15;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (33);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.grounda.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Instance of Symbol 993 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Frame 15
stop();
_root.weapons._visible = false;
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
Frame 16
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 17
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 18
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 18
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 18
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
gotoAndStop ("right");
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
gotoAndStop ("left");
this._x = this._x - moveSpeed;
} else {
gotoAndStop ("stand");
if (undefined) {
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
gotoAndStop ("up");
_root.gotoAndPlay("sounds.jump");
vel_y = 40;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
gotoAndStop ("stand");
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(19);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 993 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Instance of Symbol 1337 MovieClip "enemy" in Frame 18
onClipEvent (load) {
randx = Math.random() * 1000;
randy = Math.random() * 1000;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(19);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 15;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 3;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 8;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 5;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 15;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 15;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (37);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.ground2.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Frame 19
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 20
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 21
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 22
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 22
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 22
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
gotoAndStop ("right");
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
gotoAndStop ("left");
this._x = this._x - moveSpeed;
} else {
gotoAndStop ("stand");
if (undefined) {
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
gotoAndStop ("up");
_root.gotoAndPlay("sounds.jump");
vel_y = 36;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
gotoAndStop ("stand");
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(23);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 993 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Instance of Symbol 1394 MovieClip "enemy" in Frame 22
onClipEvent (load) {
randx = Math.random() * 500;
randy = Math.random() * 400;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(23);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 20;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 3;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 7;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 5;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 20;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 50;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (31);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.grounda.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Frame 23
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 24
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 25
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 26
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 26
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 26
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
gotoAndStop ("right");
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
gotoAndStop ("left");
this._x = this._x - moveSpeed;
} else {
gotoAndStop ("stand");
if (undefined) {
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
gotoAndStop ("up");
_root.gotoAndPlay("sounds.jump");
vel_y = 36;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
gotoAndStop ("stand");
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(27);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 993 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Instance of Symbol 1451 MovieClip "enemy" in Frame 26
onClipEvent (load) {
randx = Math.random() * 1000;
randy = Math.random() * 1000;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(27);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 23;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 4;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 6;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 5;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 25;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 25;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (35);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.grounda.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Frame 27
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 28
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 29
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 30
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 30
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 30
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
gotoAndStop ("right");
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
gotoAndStop ("left");
this._x = this._x - moveSpeed;
} else {
gotoAndStop ("stand");
if (undefined) {
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
gotoAndStop ("up");
_root.gotoAndPlay("sounds.jump");
vel_y = 36;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
gotoAndStop ("stand");
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(31);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 993 MovieClip in Frame 30
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Instance of Symbol 1502 MovieClip "enemy" in Frame 30
onClipEvent (load) {
randx = Math.random() * 1000;
randy = Math.random() * 1000;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(31);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 26;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 4;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 6;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 5;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 30;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 35;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (36);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.grounda.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Frame 31
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 32
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 33
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 34
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 34
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 34
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 40;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(35);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 993 MovieClip in Frame 34
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Instance of Symbol 1554 MovieClip "enemy" in Frame 34
onClipEvent (load) {
randx = Math.random() * 1000;
randy = Math.random() * 1000;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(35);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 30;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 5;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 5;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 30;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 30;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (34);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.grounda.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Frame 35
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 36
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 37
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 38
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 38
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 38
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 35;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(39);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 993 MovieClip in Frame 38
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Instance of Symbol 1623 MovieClip "enemy" in Frame 38
onClipEvent (load) {
randx = Math.random() * 1000;
randy = Math.random() * 1000;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(39);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 35;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 7;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 5;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 20;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 35;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (48);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.grounda.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Frame 39
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 40
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 41
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 42
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 42
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 1660 MovieClip "enemy" in Frame 42
onClipEvent (load) {
randx = Math.random() * 1000;
randy = Math.random() * 1000;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
removeMovieClip(this);
_root.gotoAndStop(43);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 0.4;
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
removeMovieClip(this);
_root.gotoAndStop(61);
}
}
onClipEvent (load) {
HP = 40;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 3;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 7;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 20;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 5;
} else if (hitTest(_root.character.launcher.rocks)) {
HP = HP - 20;
} else if (hitTest(_root.character.redeem.ket)) {
HP = HP - 50;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (8);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.ground2.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Instance of Symbol 958 MovieClip "character" in Frame 42
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 34;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -10) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(43);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 993 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Frame 43
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 44
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 45
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 46
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 1727 MovieClip in Frame 46
onClipEvent (load) {
gotoAndStop(random(5));
}
onClipEvent (load) {
minFrame = 1;
maxFrame = _totalframes;
gotoAndStop(random((maxFrame - minFrame) + 1) + minFrame);
}
onClipEvent (enterFrame) {
if (_root.character.hitTest(_root.ground.ground2.plat)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(_root.floor)) {
removeMovieClip(this);
}
}
onClipEvent (enterFrame) {
if (_root.livesswich.lives <= 0) {
stopAllSounds();
_root.gotoAndStop(61);
}
}
Instance of Symbol 700 MovieClip "floor" in Frame 46
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 46
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 34;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(47);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 993 MovieClip in Frame 46
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Frame 47
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 48
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 49
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = false;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
Frame 50
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
bossh = 500;
stop();
_root.health = health;
_root.score = score;
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 500;
_root.gotoAndStop(52);
}
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 700 MovieClip "floor" in Frame 50
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 958 MovieClip "character" in Frame 50
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 43;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -15) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(51);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 1839 MovieClip "boss" in Frame 50
onClipEvent (load) {
gotoAndStop(random(4));
}
onClipEvent (load) {
minFrame = 1;
maxFrame = _totalframes;
gotoAndStop(random((maxFrame - minFrame) + 1) + minFrame);
}
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.gotoAndStop(52);
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
_root.gotoAndStop(51);
}
}
Instance of Symbol 993 MovieClip in Frame 50
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Frame 51
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 52
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 53
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
if (_root.fires == 1) {
_root.bshop._visible = false;
}
if (_root.light == 1) {
_root.bshop._visible = false;
}
if (_root.gor == 1) {
_root.bshop._visible = false;
}
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = false;
stop();
_root.health = health;
_root.score = score;
_root.livesswich.lives = livesswich.lives;
Frame 54
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.weapons._visible = true;
bossh = 700;
stop();
_root.health = health;
_root.score = score;
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 700;
_root.gotoAndStop(56);
}
_root.livesswich.lives = livesswich.lives;
_root.weapons.gotoAndStop(1);
_root.character.gotoAndStop(1);
Instance of Symbol 2004 MovieClip "floor" in Frame 54
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
if (_root.livesswich.lives <= 0) {
_root.gotoAndPlay(61);
}
}
}
Instance of Symbol 2040 MovieClip in Frame 54
onClipEvent (load) {
gotoAndStop(random(3));
}
onClipEvent (load) {
minFrame = 1;
maxFrame = _totalframes;
gotoAndStop(random((maxFrame - minFrame) + 1) + minFrame);
}
Instance of Symbol 958 MovieClip "character" in Frame 54
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 28;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -15) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.floor.hitTest(this._x, this._y + 1, true)) {
_root.score = _root.score - 25;
_root.livesswich.lives = _root.livesswich.lives - 1;
stopAllSounds();
_root.gotoAndPlay(55);
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
nextFrame();
}
}
Instance of Symbol 2108 MovieClip in Frame 54
onClipEvent (load) {
gotoAndStop(random(5));
}
onClipEvent (load) {
minFrame = 1;
maxFrame = _totalframes;
gotoAndStop(random((maxFrame - minFrame) + 1) + minFrame);
}
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.gotoAndStop(56);
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
stopAllSounds();
_root.livesswich.lives = _root.livesswich.lives - 1;
_root.gotoAndStop(55);
}
}
Instance of Symbol 993 MovieClip in Frame 54
onClipEvent (enterFrame) {
if (Key.isDown(76)) {
stopAllSounds();
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndPlay(2);
}
}
Frame 55
stop();
_root.health = health;
_root.score = score;
_root.weapons._visible = false;
_root.livesswich.lives = livesswich.lives;
Frame 56
stop();
Frame 57
stop();
Frame 58
stop();
Frame 59
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.health = 100;
_root.score = score;
if (_root.health <= 0) {
_root.gotoAndStop(60);
stopAllSounds();
}
stop();
Instance of Symbol 2301 MovieClip "player" in Frame 59
/* no clip actions */
Instance of Symbol 2302 MovieClip "green" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("good.good");
_root.gotoAndPlay("green.good1.star");
_root.score = _root.score + 5;
}
}
Instance of Symbol 2316 MovieClip "bad" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("sound.bad");
_root.gotoAndPlay("bad.bad.bad");
_root.health = _root.health - 2;
}
}
Instance of Symbol 2318 MovieClip "bad2" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("sound.bad");
_root.gotoAndPlay("bad2.bad2.bad2");
_root.health = _root.health - 2;
}
}
Instance of Symbol 2320 MovieClip "bad3" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("sound.bad");
_root.gotoAndPlay("bad3.bad3.bad3");
_root.health = _root.health - 2;
}
}
Instance of Symbol 2322 MovieClip "good2" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("good.good");
_root.gotoAndPlay("good2.good2.star");
_root.score = _root.score + 5;
}
}
Instance of Symbol 2324 MovieClip "good3" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("good.good");
_root.gotoAndPlay("good3.good3.star");
_root.score = _root.score + 5;
}
}
Instance of Symbol 2326 MovieClip "bad5" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("sound.bad");
_root.gotoAndPlay("bad5.bad5.bad5");
_root.health = _root.health - 2;
}
}
Instance of Symbol 2328 MovieClip "green2" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("good.good");
_root.gotoAndPlay("green2.good2.star");
_root.score = _root.score + 5;
}
}
Instance of Symbol 2330 MovieClip "bad4" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("sound.bad");
_root.gotoAndPlay("bad4.bad4.bad4");
_root.health = _root.health - 2;
}
}
Instance of Symbol 2332 MovieClip "good5" in Frame 59
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.gotoAndPlay("good.good");
_root.gotoAndPlay("good5.good5.star");
_root.score = _root.score + 5;
}
}
Instance of Symbol 2337 MovieClip "walls" in Frame 59
onClipEvent (enterFrame) {
with (_root.player) {
mySpeed = 22;
myBounce = 22;
if (Key.isDown(83)) {
_y = _y + mySpeed;
}
if (Key.isDown(87)) {
_y = _y - mySpeed;
}
if (Key.isDown(65)) {
_x = _x - mySpeed;
}
if (Key.isDown(68)) {
_x = _x + mySpeed;
}
if (walls.hitTest(getBounds(_root).xMax, _y, true)) {
_x = _x - myBounce;
}
if (walls.hitTest(getBounds(_root).xMin, _y, true)) {
_x = _x + myBounce;
}
if (walls.hitTest(_x, getBounds(_root).yMax, true)) {
_y = _y - myBounce;
}
if (walls.hitTest(_x, getBounds(_root).yMin, true)) {
_y = _y + myBounce;
}
}
}
Frame 60
serverURL = "http://www.thegameblazer.com/hiscore/";
gameID = "MYFLASHGAME";
generate_btn.onRelease = function () {
randomscore.text = random(100000);
};
submit_btn.onRelease = function () {
lv = new LoadVars();
lv.onLoad = function (state) {
if (this.result == "success") {
result_txt.text = "Score Added";
} else if ((this.result = "fail")) {
result_txt.text = this.reason;
}
};
lv.gameID = Jumpingcircle3;
lv.userID = username.text;
lv.score = randomscore.text;
lv.action = "addNew";
lv.sendAndLoad(serverURL + "hiscore.php", lv, "POST");
result_txt.text = "Submitting...";
};
getTopScores_btn.onRelease = function () {
lv = new LoadVars();
lv.onLoad = function (state) {
grid_top.removeAll();
var _local2 = 0;
while (this["s" + _local2] != undefined) {
grid_top.addItem({rank:_local2 + 1, Player:this["n" + _local2], Score:this["s" + _local2]});
_local2++;
}
};
lv.gameID = Jumpingcircle3;
lv.limit = 10;
lv.action = "getTop";
lv.viewmode = "flash";
lv.dupes = "false";
lv.sendAndLoad(serverURL + "hiscore.php", lv, "POST");
};
getBottomScores_btn.onRelease = function () {
lv = new LoadVars();
lv.onLoad = function (state) {
grid_bottom.removeAll();
var _local2 = 0;
while (this["s" + _local2] != undefined) {
grid_bottom.addItem({rank:_local2 + 1, Player:this["n" + _local2], Score:this["s" + _local2]});
_local2++;
}
};
lv.gameID = Jumpingcircle3;
lv.limit = 10;
lv.action = "getBottom";
lv.viewmode = "flash";
lv.dupes = "false";
lv.sendAndLoad(serverURL + "hiscore.php", lv, "POST");
};
_root.scoremc.score = scoremc.score;
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
stop();
if (_root.livesc == 1) {
_root.username._visible = false;
_root.submit_btn._visible = false;
}
if (_root.levels == 1) {
_root.username._visible = false;
_root.submit_btn._visible = false;
}
if (_root.light == 1) {
_root.username._visible = false;
_root.submit_btn._visible = false;
}
if (_root.gor == 1) {
_root.username._visible = false;
_root.submit_btn._visible = false;
}
if (_root.fires == 1) {
_root.username._visible = false;
_root.submit_btn._visible = false;
}
Frame 61
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
stop();
Frame 62
stop();
_root.p1 = 0;
_root.p2 = 0;
Frame 63
stop();
_root.p1 = p1;
_root.p2 = p2;
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
Instance of Symbol 700 MovieClip "floor" in Frame 63
onClipEvent (enterFrame) {
if (hitTest(_root.player)) {
_root.p2 = _root.p2 + 1;
removeMovieClip(player);
removeMovieClip(player2);
stopAllSounds();
_root.gotoAndStop(64);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.player2)) {
_root.p1 = _root.p1 + 1;
removeMovieClip(player);
removeMovieClip(player2);
stopAllSounds();
_root.gotoAndStop(64);
}
}
Instance of Symbol 2457 MovieClip "player2" in Frame 63
onClipEvent (load) {
moveSpeed = 20;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(37)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 40;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.floor)) {
removeMovieClip(this);
}
}
Instance of Symbol 2458 MovieClip "player" in Frame 63
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 40;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.floor)) {
removeMovieClip(this);
}
}
Instance of Symbol 2468 MovieClip "walls" in Frame 63
onClipEvent (enterFrame) {
with (_root.player) {
mySpeed = 22;
myBounce = 22;
_y = _y + mySpeed;
_y = _y - mySpeed;
_x = _x - mySpeed;
_x = _x + mySpeed;
if (walls.hitTest(getBounds(_root).xMax, _y, true)) {
_x = _x - myBounce;
}
if (walls.hitTest(getBounds(_root).xMin, _y, true)) {
_x = _x + myBounce;
}
if (walls.hitTest(_x, getBounds(_root).yMax, true)) {
_y = _y - myBounce;
}
if (walls.hitTest(_x, getBounds(_root).yMin, true)) {
_y = _y + myBounce;
}
}
}
onClipEvent (enterFrame) {
with (_root.player2) {
mySpeed = 22;
myBounce = 22;
_y = _y + mySpeed;
_y = _y - mySpeed;
_x = _x - mySpeed;
_x = _x + mySpeed;
if (walls.hitTest(getBounds(_root).xMax, _y, true)) {
_x = _x - myBounce;
}
if (walls.hitTest(getBounds(_root).xMin, _y, true)) {
_x = _x + myBounce;
}
if (walls.hitTest(_x, getBounds(_root).yMax, true)) {
_y = _y - myBounce;
}
if (walls.hitTest(_x, getBounds(_root).yMin, true)) {
_y = _y + myBounce;
}
}
}
Frame 64
stop();
_root.p1 = p1;
_root.p2 = p2;
Frame 65
stop();
_root.p1 = p1;
_root.p2 = p2;
Frame 66
stop();
_root.p1 = p1;
_root.p2 = p2;
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
Instance of Symbol 700 MovieClip "floor" in Frame 66
onClipEvent (enterFrame) {
if (hitTest(_root.player)) {
_root.p2 = _root.p2 + 1;
removeMovieClip(player);
removeMovieClip(player2);
stopAllSounds();
_root.gotoAndStop(67);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.player2)) {
_root.p1 = _root.p1 + 1;
removeMovieClip(player);
removeMovieClip(player2);
stopAllSounds();
_root.gotoAndStop(67);
}
}
Instance of Symbol 2457 MovieClip "player2" in Frame 66
onClipEvent (load) {
moveSpeed = 20;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(37)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 40;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.floor)) {
removeMovieClip(this);
}
}
Instance of Symbol 2458 MovieClip "player" in Frame 66
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 40;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.floor)) {
removeMovieClip(this);
}
}
Frame 67
stop();
_root.p1 = p1;
_root.p2 = p2;
Frame 68
stop();
_root.p1 = p1;
_root.p2 = p2;
Frame 69
stop();
_root.p1 = p1;
_root.p2 = p2;
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
Instance of Symbol 700 MovieClip "floor" in Frame 69
onClipEvent (enterFrame) {
if (hitTest(_root.player)) {
_root.p2 = _root.p2 + 1;
removeMovieClip(player);
removeMovieClip(player2);
stopAllSounds();
_root.gotoAndStop(70);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.player2)) {
_root.p1 = _root.p1 + 1;
removeMovieClip(player);
removeMovieClip(player2);
stopAllSounds();
_root.gotoAndStop(70);
}
}
Instance of Symbol 2457 MovieClip "player2" in Frame 69
onClipEvent (load) {
moveSpeed = 20;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(37)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(38) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 39;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.floor)) {
removeMovieClip(this);
}
}
Instance of Symbol 2458 MovieClip "player" in Frame 69
onClipEvent (load) {
moveSpeed = 15;
}
onClipEvent (enterFrame) {
if (Key.isDown(68)) {
this._x = this._x + moveSpeed;
} else if (Key.isDown(65)) {
this._x = this._x - moveSpeed;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(87) && (!jumping)) {
_root.gotoAndPlay("sounds.jump");
vel_y = 39;
jumping = true;
}
if (jumping == true) {
vel_y = vel_y - 2;
if (vel_y <= -2) {
vel_y = -16;
}
this._y = this._y - vel_y;
}
if (_root.ground.hitTest(this._x, this._y + 35, true)) {
vel_y = 0;
jumping = false;
}
}
onClipEvent (enterFrame) {
this._y = this._y + 13;
if (_root.ground.hitTest(this._x, this._y + 1, true)) {
this._y = this._y - 16;
}
}
onClipEvent (enterFrame) {
if (_root.top.hitTest(this._x, this._y + 1, true)) {
vel_y = vel_y - 10;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.floor)) {
removeMovieClip(this);
}
}
Frame 70
stop();
_root.p1 = p1;
_root.p2 = p2;
if (_root.p1 == 3) {
_root.p12 = "Player 1";
}
if (_root.p2 == 3) {
_root.p12 = "Player 2";
}
if (_root.p1 == 2) {
if (_root.p2 == 1) {
_root.p12 = "Player 1";
}
}
if (_root.p2 == 2) {
if (_root.p1 == 1) {
_root.p12 = "Player 2";
}
}
Symbol 17 MovieClip Frame 9
stop();
Symbol 18 MovieClip [flake] Frame 4
gotoAndPlay (1);
Symbol 18 MovieClip [flake] Frame 13
gotoAndPlay (1);
Symbol 33 Button
on (release) {
stopAllSounds();
_root.movie.play();
}
Symbol 34 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 34 MovieClip Frame 2
gotoAndPlay (1);
Symbol 41 Button
on (release) {
stopAllSounds();
_root.gotoAndPlay(2);
}
Symbol 131 MovieClip Frame 15
stop();
Symbol 132 MovieClip Frame 3
gotoAndPlay (1);
Symbol 244 MovieClip Frame 1
stop();
Symbol 244 MovieClip Frame 895
_root.gotoAndPlay(2);
Symbol 254 Button
on (release) {
gotoAndPlay (3);
}
Symbol 256 Button
on (release) {
gotoAndPlay (4);
}
Symbol 258 Button
on (release) {
gotoAndPlay (5);
stopAllSounds();
}
Symbol 265 Button
on (release) {
gotoAndPlay (62);
stopAllSounds();
}
Symbol 271 Button
on (release) {
gotoAndPlay (2);
}
Symbol 274 Button
on (release) {
gotoAndPlay (3);
}
Symbol 277 Button
on (release) {
gotoAndPlay (4);
}
Symbol 280 Button
on (release) {
_root.gotoAndPlay(2);
}
Symbol 283 Button
on (release) {
gotoAndPlay (22);
}
Symbol 286 Button
on (release) {
gotoAndPlay (31);
}
Symbol 290 Button
on (release) {
gotoAndPlay (1);
}
Symbol 296 Button
on (release) {
gotoAndPlay (13);
}
Symbol 298 Button
on (release) {
gotoAndPlay (14);
}
Symbol 300 Button
on (release) {
gotoAndPlay (16);
}
Symbol 302 Button
on (release) {
gotoAndPlay (15);
}
Symbol 304 Button
on (release) {
gotoAndPlay (18);
}
Symbol 306 Button
on (release) {
gotoAndPlay (17);
}
Symbol 308 Button
on (release) {
gotoAndPlay (19);
}
Symbol 310 Button
on (release) {
gotoAndPlay (12);
}
Symbol 312 Button
on (release) {
gotoAndPlay (20);
}
Symbol 314 Button
on (release) {
gotoAndPlay (21);
}
Symbol 316 Button
on (release) {
gotoAndPlay (30);
}
Symbol 318 Button
on (release) {
gotoAndPlay (32);
}
Symbol 322 Button
on (release) {
gotoAndPlay (5);
}
Symbol 325 Button
on (release) {
gotoAndPlay (6);
}
Symbol 328 Button
on (release) {
gotoAndPlay (7);
}
Symbol 331 Button
on (release) {
gotoAndPlay (8);
}
Symbol 334 Button
on (release) {
gotoAndPlay (9);
}
Symbol 337 Button
on (release) {
gotoAndPlay (10);
}
Symbol 340 Button
on (release) {
gotoAndPlay (11);
}
Symbol 345 Button
on (release) {
gotoAndPlay (4);
}
Symbol 357 MovieClip Frame 17
Symbol 368 MovieClip Frame 5
gotoAndPlay (1);
Symbol 379 MovieClip Frame 8
gotoAndPlay (1);
Instance of Symbol 389 MovieClip in Symbol 390 MovieClip Frame 11
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 389 MovieClip in Symbol 390 MovieClip Frame 12
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Symbol 396 Button
on (release) {
gotoAndPlay (3);
}
Symbol 430 Button
on (release) {
gotoAndPlay (28);
}
Symbol 433 Button
on (release) {
gotoAndPlay (29);
}
Symbol 436 Button
on (release) {
gotoAndPlay (24);
}
Symbol 441 Button
on (release) {
gotoAndPlay (23);
}
Symbol 444 Button
on (release) {
gotoAndPlay (27);
}
Symbol 447 Button
on (release) {
gotoAndPlay (26);
}
Symbol 450 Button
on (release) {
gotoAndPlay (25);
}
Symbol 453 Button
on (release) {
gotoAndPlay (22);
}
Symbol 459 MovieClip Frame 2
gotoAndPlay (1);
Symbol 472 MovieClip Frame 1
Symbol 472 MovieClip Frame 2
Symbol 486 MovieClip Frame 4
Instance of Symbol 428 MovieClip "arro" in Symbol 502 MovieClip Frame 2
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.a)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
HP = HP - 7;
}
}
Instance of Symbol 428 MovieClip "arro" in Symbol 502 MovieClip Frame 7
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.a)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
HP = HP - 7;
}
}
Symbol 526 Button
on (release) {
gotoAndPlay (33);
}
Symbol 536 Button
on (release) {
gotoAndPlay (31);
}
Symbol 541 MovieClip Frame 1
stop();
Symbol 541 MovieClip Frame 2
stop();
Symbol 541 MovieClip Frame 3
stop();
Symbol 541 MovieClip Frame 4
stop();
Symbol 541 MovieClip Frame 5
stop();
Symbol 541 MovieClip Frame 6
stop();
Symbol 541 MovieClip Frame 7
stop();
Symbol 541 MovieClip Frame 8
stop();
Symbol 541 MovieClip Frame 9
stop();
Symbol 541 MovieClip Frame 10
stop();
Symbol 541 MovieClip Frame 11
stop();
Symbol 541 MovieClip Frame 12
stop();
Symbol 541 MovieClip Frame 13
stop();
Symbol 541 MovieClip Frame 14
stop();
Symbol 541 MovieClip Frame 15
stop();
Symbol 541 MovieClip Frame 16
stop();
Symbol 541 MovieClip Frame 17
stop();
Symbol 541 MovieClip Frame 18
stop();
Symbol 541 MovieClip Frame 19
stop();
Symbol 541 MovieClip Frame 20
stop();
Symbol 541 MovieClip Frame 21
stop();
Symbol 541 MovieClip Frame 22
stop();
Symbol 541 MovieClip Frame 23
stop();
Symbol 541 MovieClip Frame 24
stop();
Symbol 541 MovieClip Frame 25
stop();
Symbol 541 MovieClip Frame 26
stop();
Symbol 541 MovieClip Frame 27
stop();
Symbol 541 MovieClip Frame 28
stop();
Symbol 541 MovieClip Frame 29
stop();
Symbol 541 MovieClip Frame 30
stop();
Symbol 541 MovieClip Frame 31
stop();
Symbol 541 MovieClip Frame 32
stop();
Symbol 541 MovieClip Frame 33
stop();
Symbol 558 MovieClip Frame 407
_root.gotoAndPlay(2);
Symbol 563 Button
on (release) {
stopAllSounds();
gotoAndPlay (6);
}
Symbol 566 Button
on (release) {
_root.cheats._visible = true;
}
Symbol 572 MovieClip Frame 1
stop();
Symbol 572 MovieClip Frame 2
stop();
Symbol 572 MovieClip Frame 3
gotoAndPlay (1);
Symbol 613 MovieClip Frame 1
stop();
Symbol 613 MovieClip Frame 2
stop();
if (_root.weapons.arroh <= 0) {
_root.weapons.gotoAndStop(3);
_root.character.gotoAndStop(3);
}
Symbol 613 MovieClip Frame 3
stop();
if (_root.weapons.plasmah <= 0) {
_root.weapons.gotoAndStop(4);
_root.character.gotoAndStop(4);
}
Symbol 613 MovieClip Frame 4
stop();
if (_root.weapons.shoth <= 0) {
_root.weapons.gotoAndStop(5);
_root.character.gotoAndStop(5);
}
Symbol 613 MovieClip Frame 5
stop();
if (_root.weapons.machineh <= 0) {
_root.weapons.gotoAndStop(6);
_root.character.gotoAndStop(6);
}
Symbol 613 MovieClip Frame 6
stop();
if (_root.weapons.rocketh <= 0) {
_root.weapons.gotoAndStop(7);
_root.character.gotoAndStop(7);
}
Symbol 613 MovieClip Frame 7
stop();
if (_root.weapons.redeemh <= 0) {
_root.weapons.gotoAndStop(8);
_root.character.gotoAndStop(8);
}
Symbol 613 MovieClip Frame 8
gotoAndStop (1);
Symbol 613 MovieClip Frame 9
stop();
Symbol 613 MovieClip Frame 10
stop();
Symbol 613 MovieClip Frame 11
stop();
Symbol 613 MovieClip Frame 12
stop();
Symbol 613 MovieClip Frame 13
stop();
Symbol 613 MovieClip Frame 14
stop();
Symbol 613 MovieClip Frame 15
stop();
Symbol 613 MovieClip Frame 16
gotoAndStop (9);
Symbol 613 MovieClip Frame 17
stop();
Symbol 613 MovieClip Frame 18
gotoAndStop (17);
Symbol 613 MovieClip Frame 19
stop();
Symbol 613 MovieClip Frame 20
gotoAndStop (19);
Symbol 624 Button
on (release) {
gotoAndStop (2);
}
Symbol 627 Button
on (release) {
gotoAndStop (3);
}
Symbol 628 Button
on (release) {
_root.cheats._visible = false;
}
Symbol 646 Button
on (release) {
if (passwords1 eq "ilovechicken") {
_root.levels = 1;
_root.gotoAndStop(6);
} else {
passwords1 = "Incorrect Pass";
}
}
Symbol 648 Button
on (release) {
if (passwords2 eq "leveler") {
_root.levels = 1;
_root.gotoAndStop(9);
} else {
passwords2 = "Incorrect Pass";
}
}
Symbol 650 Button
on (release) {
if (passwords3 eq "eggsaregood") {
_root.levels = 1;
_root.gotoAndStop(13);
} else {
passwords3 = "Incorrect Pass";
}
}
Symbol 652 Button
on (release) {
if (passwords4 eq "rooster") {
_root.levels = 1;
_root.gotoAndStop(17);
} else {
passwords4 = "Incorrect Pass";
}
}
Symbol 654 Button
on (release) {
if (passwords5 eq "marbles") {
_root.levels = 1;
_root.gotoAndStop(21);
} else {
passwords5 = "Incorrect Pass";
}
}
Symbol 656 Button
on (release) {
if (passwords6 eq "flashrules") {
_root.levels = 1;
_root.gotoAndStop(25);
} else {
passwords6 = "Incorrect Pass";
}
}
Symbol 658 Button
on (release) {
if (passwords7 eq "gonewgrounds") {
_root.levels = 1;
_root.gotoAndStop(29);
} else {
passwords7 = "Incorrect Pass";
}
}
Symbol 660 Button
on (release) {
if (passwords8 eq "tummy") {
_root.levels = 1;
_root.gotoAndStop(33);
} else {
passwords8 = "Incorrect Pass";
}
}
Symbol 662 Button
on (release) {
if (passwords9 eq "ciabatta") {
_root.levels = 1;
_root.gotoAndStop(37);
} else {
passwords9 = "Incorrect Pass";
}
}
Symbol 664 Button
on (release) {
if (passwords0 eq "blood") {
_root.levels = 1;
_root.gotoAndStop(41);
} else {
passwords0 = "Incorrect Pass";
}
}
Symbol 666 Button
on (release) {
if (passwords eq "split") {
_root.levels = 1;
_root.gotoAndStop(45);
} else {
passwords = "Incorrect Pass";
}
}
Symbol 667 Button
on (release) {
gotoAndPlay (1);
}
Symbol 671 Button
on (release) {
if (passwordaaz eq "imagod") {
_root.light = 1;
_root.fires = 0;
_root.gor = 0;
passwordaaz = "Correct";
passwordtf = "N/A";
passwordhag = "N/A";
} else {
passwordaaz = "Incorrect Pass";
}
}
Symbol 674 Button
on (release) {
if (passwordhag eq "armory") {
_root.gor = 1;
_root.fires = 0;
_root.light = 0;
passwordhag = "Correct";
passwordtf = "N/A";
passwordaaz = "N/A";
} else {
passwordhag = "Incorrect Pass";
}
}
Symbol 678 Button
on (release) {
_root.livesswich.lives = 999;
_root.livesswich.gotoAndStop(2);
_root.livesc = 1;
_parent.cool.gotoAndStop(2);
}
Symbol 680 Button
on (release) {
_root.livesswich.lives = 20;
_root.livesswich.gotoAndStop(1);
_root.livesc = 0;
_parent.cool.gotoAndStop(1);
}
Symbol 681 MovieClip Frame 1
stop();
Symbol 681 MovieClip Frame 2
stop();
Symbol 683 Button
on (release) {
if (passwordtf eq "allfiredup") {
_root.fires = 1;
_root.light = 0;
_root.gor = 0;
passwordtf = "Correct";
passwordaaz = "N/A";
passwordhag = "N/A";
} else {
passwordtf = "Incorrect Pass";
}
}
Symbol 685 MovieClip Frame 1
stop();
Symbol 685 MovieClip Frame 2
stop();
Symbol 685 MovieClip Frame 3
stop();
Symbol 687 MovieClip Frame 1
stop();
Symbol 689 MovieClip Frame 1
stop();
Symbol 689 MovieClip Frame 14
gotoAndPlay (1);
Symbol 705 MovieClip Frame 31
_root.ground.gotoAndPlay("go");
stop();
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Symbol 710 MovieClip Frame 1
stop();
Instance of Symbol 709 MovieClip "finish" in Symbol 710 MovieClip Frame 570
on (release) {
if (_root.health == 100) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(8);
}
Symbol 710 MovieClip Frame 601
stop();
Instance of Symbol 709 MovieClip in Symbol 710 MovieClip Frame 601
on (release) {
if (_root.health == 100) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(8);
}
Symbol 717 MovieClip Frame 1
stop();
Symbol 744 MovieClip Frame 1
stop();
Symbol 744 MovieClip Frame 2
stop();
Symbol 744 MovieClip Frame 3
stop();
Symbol 744 MovieClip Frame 4
stop();
Symbol 744 MovieClip Frame 5
stop();
Symbol 744 MovieClip Frame 6
stop();
Symbol 744 MovieClip Frame 7
stop();
Symbol 744 MovieClip Frame 8
stop();
Symbol 744 MovieClip Frame 9
stop();
Symbol 744 MovieClip Frame 10
stop();
Symbol 744 MovieClip Frame 11
stop();
Symbol 744 MovieClip Frame 12
stop();
Symbol 744 MovieClip Frame 13
stop();
Symbol 744 MovieClip Frame 14
gotoAndPlay (1);
Symbol 748 MovieClip Frame 1
if (_root.weapons.arrowammo <= 0) {
gotoAndStop (11);
}
stop();
Symbol 748 MovieClip Frame 2
_root.weapons.arrowammo = _root.weapons.arrowammo - 1;
Instance of Symbol 428 MovieClip "arro" in Symbol 748 MovieClip Frame 2
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.a)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
HP = HP - 7;
}
}
Instance of Symbol 428 MovieClip "arro" in Symbol 748 MovieClip Frame 7
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.a)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
HP = HP - 7;
}
}
Symbol 748 MovieClip Frame 10
gotoAndPlay (1);
Symbol 748 MovieClip Frame 11
if (_root.weapons.arrowammo >= 1) {
gotoAndStop (1);
}
stop();
Symbol 748 MovieClip Frame 12
gotoAndStop (11);
Symbol 818 MovieClip Frame 1
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 2
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 6
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 7
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 11
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 12
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 16
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 17
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 21
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 22
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 26
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 27
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 31
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 32
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 36
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 37
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 41
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 42
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 46
if (_root.weapons.plasmaammo <= 0) {
gotoAndStop (51);
}
stop();
Symbol 818 MovieClip Frame 47
_root.weapons.plasmaammo = _root.weapons.plasmaammo - 1;
Symbol 818 MovieClip Frame 51
stop();
Symbol 818 MovieClip Frame 52
gotoAndPlay (51);
Symbol 818 MovieClip Frame 53
if (_root.weapons.plasmaammo <= 0) {
if (_root.weapons.plasmareload <= 0) {
gotoAndStop (51);
}
}
if (_root.weapons.plasmaammo == 10) {
gotoAndStop (1);
}
if (_root.weapons.plasmaammo == 9) {
gotoAndStop (6);
}
if (_root.weapons.plasmaammo == 8) {
gotoAndStop (11);
}
if (_root.weapons.plasmaammo == 7) {
gotoAndStop (16);
}
if (_root.weapons.plasmaammo == 6) {
gotoAndStop (21);
}
if (_root.weapons.plasmaammo == 5) {
gotoAndStop (26);
}
if (_root.weapons.plasmaammo == 4) {
gotoAndStop (31);
}
if (_root.weapons.plasmaammo == 3) {
gotoAndStop (36);
}
if (_root.weapons.plasmaammo == 2) {
gotoAndStop (41);
}
if (_root.weapons.plasmaammo == 1) {
gotoAndStop (46);
}
Symbol 818 MovieClip Frame 72
if (_root.weapons.plasmaammo <= 0) {
_root.weapons.plasmaammo = 10;
_root.weapons.plasmareload = _root.weapons.plasmareload - 1;
}
Symbol 854 MovieClip Frame 1
stop();
if (_root.weapons.shotgunammo <= 0) {
gotoAndStop (19);
}
Symbol 854 MovieClip Frame 2
_root.weapons.shotgunammo = _root.weapons.shotgunammo - 1;
Symbol 854 MovieClip Frame 4
stop();
if (_root.weapons.shotgunammo <= 0) {
gotoAndStop (19);
}
Symbol 854 MovieClip Frame 5
_root.weapons.shotgunammo = _root.weapons.shotgunammo - 1;
Symbol 854 MovieClip Frame 7
stop();
if (_root.weapons.shotgunammo <= 0) {
gotoAndStop (19);
}
Symbol 854 MovieClip Frame 8
_root.weapons.shotgunammo = _root.weapons.shotgunammo - 1;
Symbol 854 MovieClip Frame 10
stop();
if (_root.weapons.shotgunammo <= 0) {
gotoAndStop (19);
}
Symbol 854 MovieClip Frame 11
_root.weapons.shotgunammo = _root.weapons.shotgunammo - 1;
Symbol 854 MovieClip Frame 13
stop();
if (_root.weapons.shotgunammo <= 0) {
gotoAndStop (19);
}
Symbol 854 MovieClip Frame 14
_root.weapons.shotgunammo = _root.weapons.shotgunammo - 1;
Symbol 854 MovieClip Frame 16
stop();
if (_root.weapons.shotgunammo <= 0) {
gotoAndStop (19);
}
Symbol 854 MovieClip Frame 17
_root.weapons.shotgunammo = _root.weapons.shotgunammo - 1;
Symbol 854 MovieClip Frame 19
stop();
Symbol 854 MovieClip Frame 20
gotoAndPlay (19);
Symbol 854 MovieClip Frame 21
if (_root.weapons.shotguncartridge <= 0) {
if (_root.weapons.shotgunammo <= 0) {
gotoAndStop (19);
}
}
if (_root.weapons.shotgunammo == 6) {
gotoAndStop (1);
}
if (_root.weapons.shotgunammo == 5) {
gotoAndStop (4);
}
if (_root.weapons.shotgunammo == 4) {
gotoAndStop (7);
}
if (_root.weapons.shotgunammo == 3) {
gotoAndStop (10);
}
if (_root.weapons.shotgunammo == 2) {
gotoAndStop (13);
}
if (_root.weapons.shotgunammo == 1) {
gotoAndStop (16);
}
Symbol 854 MovieClip Frame 55
if (_root.weapons.shotgunammo <= 0) {
_root.weapons.shotgunammo = _root.weapons.shotgunammo + 6;
_root.weapons.shotguncartridge = _root.weapons.shotguncartridge - 1;
}
Symbol 854 MovieClip Frame 56
gotoAndPlay (1);
Symbol 897 MovieClip Frame 1
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
stop();
Symbol 897 MovieClip Frame 2
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 3
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 4
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 5
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 6
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 7
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 8
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 9
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 10
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 11
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 12
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 13
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 14
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 15
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 16
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 17
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 18
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 19
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 20
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 21
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 22
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 23
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 24
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 25
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 26
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 27
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 28
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 29
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 30
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 31
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 32
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 33
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 34
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 35
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 36
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 37
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 38
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 39
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 40
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 41
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 42
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 43
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 44
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 45
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 46
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 47
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 48
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 49
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 50
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 51
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 52
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 53
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 54
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 55
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 56
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 57
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 58
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 59
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 60
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 61
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 62
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 63
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 64
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 65
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 66
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 67
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 68
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 69
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 70
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 71
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 72
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 73
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 74
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 75
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 76
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 77
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 78
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 79
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 80
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 81
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 82
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 83
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 84
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 85
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 86
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 87
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 88
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 89
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 90
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 91
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 92
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 93
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 94
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 95
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 96
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 97
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 98
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 99
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
_root.weapons.machine = _root.weapons.machine - 1;
Symbol 897 MovieClip Frame 100
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 0;
gotoAndStop (101);
}
Symbol 897 MovieClip Frame 101
stop();
Symbol 897 MovieClip Frame 102
gotoAndPlay (101);
Symbol 897 MovieClip Frame 103
if (_root.weapons.machine >= 1) {
gotoAndStop (1);
}
if (_root.weapons.machine <= 0) {
if (_root.weapons.machinecartridge <= 0) {
gotoAndStop (101);
}
}
Symbol 897 MovieClip Frame 117
if (_root.weapons.machine <= 0) {
_root.weapons.machine = 100;
_root.weapons.machinecartridge = _root.weapons.machinecartridge - 1;
}
Symbol 912 MovieClip Frame 1
stop();
if (_root.weapons.rocketammo <= 0) {
gotoAndStop (56);
}
Symbol 912 MovieClip Frame 2
_root.weapons.rocketammo = _root.weapons.rocketammo - 1;
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 2
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 9
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 9
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 12
stop();
if (_root.weapons.rocketammo <= 0) {
gotoAndStop (56);
}
Symbol 912 MovieClip Frame 13
_root.weapons.rocketammo = _root.weapons.rocketammo - 1;
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 13
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 20
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 20
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 23
stop();
if (_root.weapons.rocketammo <= 0) {
gotoAndStop (56);
}
Symbol 912 MovieClip Frame 24
_root.weapons.rocketammo = _root.weapons.rocketammo - 1;
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 24
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 31
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 31
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 34
stop();
if (_root.weapons.rocketammo <= 0) {
gotoAndStop (56);
}
Symbol 912 MovieClip Frame 35
_root.weapons.rocketammo = _root.weapons.rocketammo - 1;
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 35
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 42
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 42
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 45
stop();
if (_root.weapons.rocketammo <= 0) {
gotoAndStop (56);
}
Symbol 912 MovieClip Frame 46
_root.weapons.rocketammo = _root.weapons.rocketammo - 1;
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 46
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 53
Instance of Symbol 132 MovieClip "rocks" in Symbol 912 MovieClip Frame 53
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
gotoAndStop (4);
}
}
Symbol 912 MovieClip Frame 56
stop();
Symbol 912 MovieClip Frame 57
gotoAndPlay (56);
Symbol 912 MovieClip Frame 58
if (_root.weapons.rocketammo <= 0) {
if (_root.weapons.rockets <= 0) {
gotoAndStop (56);
}
}
if (_root.weapons.rocketammo == 5) {
gotoAndStop (1);
}
if (_root.weapons.rocketammo == 4) {
gotoAndStop (12);
}
if (_root.weapons.rocketammo == 3) {
gotoAndStop (23);
}
if (_root.weapons.rocketammo == 2) {
gotoAndStop (34);
}
if (_root.weapons.rocketammo == 1) {
gotoAndStop (45);
}
Symbol 912 MovieClip Frame 95
if (_root.weapons.rocketammo <= 0) {
_root.weapons.rocketammo = 5;
_root.weapons.rockets = _root.weapons.rockets - 5;
}
Symbol 915 MovieClip Frame 1
if (_root.weapons.redeemerammo <= 0) {
gotoAndStop (12);
}
stop();
Symbol 915 MovieClip Frame 2
_root.weapons.redeemerammo = _root.weapons.redeemerammo - 1;
Symbol 915 MovieClip Frame 12
if (_root.weapons.redeemerammo <= 0) {
gotoAndStop (12);
}
stop();
Symbol 916 MovieClip Frame 1
stop();
Instance of Symbol 428 MovieClip "arro" in Symbol 916 MovieClip Frame 2
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.a)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
HP = HP - 7;
}
}
Instance of Symbol 428 MovieClip "arro" in Symbol 916 MovieClip Frame 7
onClipEvent (enterFrame) {
if (hitTest(_root.boss.c)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.b)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.boss.a)) {
_root.bossh = _root.bossh - 7;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
HP = HP - 7;
}
}
Symbol 922 MovieClip Frame 1
stop();
Symbol 925 MovieClip Frame 1
stop();
Symbol 927 MovieClip Frame 1
stop();
Symbol 927 MovieClip Frame 6
gotoAndPlay (2);
Symbol 928 MovieClip Frame 1
stop();
Symbol 928 MovieClip Frame 2
_root.weapons.rocketammo = _root.weapons.rocketammo - 1;
Symbol 931 MovieClip Frame 1
stop();
Symbol 943 MovieClip Frame 1
stop();
Symbol 957 MovieClip Frame 1
stop();
Symbol 957 MovieClip Frame 2
stop();
Instance of Symbol 952 MovieClip "fireball" in Symbol 957 MovieClip Frame 2
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
_root.character.fhands.gotoAndStop(1);
}
}
Symbol 957 MovieClip Frame 15
gotoAndStop (1);
Instance of Symbol 952 MovieClip "fireball" in Symbol 957 MovieClip Frame 15
onClipEvent (enterFrame) {
if (hitTest(_root.enemy)) {
_root.character.fhands.gotoAndStop(1);
}
}
Symbol 958 MovieClip Frame 1
if (_root.light == 1) {
_root.character.gotoAndStop(17);
_root.weapons.gotoAndStop(17);
}
if (_root.gor == 1) {
_root.character.gotoAndStop(9);
_root.weapons.gotoAndStop(9);
}
if (_root.fires == 1) {
_root.character.gotoAndStop(19);
_root.weapons.gotoAndStop(19);
}
stop();
Instance of Symbol 717 MovieClip "gun" in Symbol 958 MovieClip Frame 1
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 2
if (_root.weapons.arrowammo <= 0) {
_root.character.bow.gotoAndStop(11);
}
stop();
Instance of Symbol 748 MovieClip "bow" in Symbol 958 MovieClip Frame 2
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 3
stop();
Instance of Symbol 818 MovieClip "plasma" in Symbol 958 MovieClip Frame 3
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
this.gotoAndPlay(53);
}
}
Symbol 958 MovieClip Frame 4
stop();
Instance of Symbol 854 MovieClip "shot" in Symbol 958 MovieClip Frame 4
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
gotoAndPlay (21);
}
}
Symbol 958 MovieClip Frame 5
stop();
if (_root.weapons.machine == 0) {
if (_root.weapons.machinecartridge == 0) {
_root.character.auto.gotoAndStop(101);
}
}
Instance of Symbol 897 MovieClip "auto" in Symbol 958 MovieClip Frame 5
onClipEvent (mouseDown) {
play();
}
onClipEvent (mouseUp) {
gotoAndPlay (1);
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
this.gotoAndPlay(103);
}
}
Symbol 958 MovieClip Frame 6
stop();
Instance of Symbol 912 MovieClip "launcher" in Symbol 958 MovieClip Frame 6
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
this.gotoAndPlay(58);
}
}
Symbol 958 MovieClip Frame 7
stop();
Instance of Symbol 915 MovieClip "redeem" in Symbol 958 MovieClip Frame 7
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 8
gotoAndPlay (1);
Symbol 958 MovieClip Frame 9
stop();
Instance of Symbol 717 MovieClip "gun" in Symbol 958 MovieClip Frame 9
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 10
stop();
Instance of Symbol 916 MovieClip "bow" in Symbol 958 MovieClip Frame 10
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 11
stop();
Instance of Symbol 922 MovieClip "plasma" in Symbol 958 MovieClip Frame 11
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 12
stop();
Instance of Symbol 925 MovieClip "shot" in Symbol 958 MovieClip Frame 12
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 13
stop();
Instance of Symbol 927 MovieClip "auto" in Symbol 958 MovieClip Frame 13
onClipEvent (mouseDown) {
play();
}
onClipEvent (mouseUp) {
gotoAndPlay (1);
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 14
stop();
Instance of Symbol 928 MovieClip "launcher" in Symbol 958 MovieClip Frame 14
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 15
stop();
Instance of Symbol 931 MovieClip "redeem" in Symbol 958 MovieClip Frame 15
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 16
gotoAndStop (9);
Symbol 958 MovieClip Frame 17
stop();
Instance of Symbol 943 MovieClip "hands" in Symbol 958 MovieClip Frame 17
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 18
gotoAndStop (17);
Symbol 958 MovieClip Frame 19
stop();
Instance of Symbol 957 MovieClip "fhands" in Symbol 958 MovieClip Frame 19
onClipEvent (mouseDown) {
play();
}
onClipEvent (enterFrame) {
targx = _root._xmouse;
targy = _root._ymouse;
}
onClipEvent (enterFrame) {
_rotation = ((-Math.atan2(_x - _parent._xmouse, _y - _parent._ymouse)) / 0.017);
}
Symbol 958 MovieClip Frame 20
gotoAndStop (19);
Symbol 970 MovieClip Frame 1
z = 0;
Symbol 970 MovieClip Frame 4
gotoAndPlay (1);
Symbol 970 MovieClip Frame 5
_root.score = _root.score + 2;
Symbol 970 MovieClip Frame 13
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 975 Button
on (release) {
_root.testsnd.stop();
}
Symbol 977 Button
on (release) {
_root.soundmc.gotoAndPlay("start");
}
Instance of Symbol 988 MovieClip in Symbol 993 MovieClip Frame 1
on (release) {
_root.character.color.nextFrame();
}
Instance of Symbol 988 MovieClip in Symbol 993 MovieClip Frame 1
on (release) {
_root.character.color.prevFrame();
}
Instance of Symbol 991 MovieClip in Symbol 993 MovieClip Frame 1
on (release) {
toggleHighQuality();
}
Symbol 1000 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (6);
}
Symbol 1019 MovieClip Frame 19
stop();
Symbol 1029 Button
on (release) {
stopAllSounds();
nextFrame();
}
Symbol 1032 MovieClip Frame 1
stop();
Symbol 1037 Button
on (release) {
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.shop._visible = true;
_root.health2._visible = true;
_root.score2._visible = true;
_root.bshop._visible = false;
_root.ccontinue._visible = false;
}
Symbol 1039 Button
on (release) {
stopAllSounds();
nextFrame();
}
Symbol 1116 Button
on (release) {
stopAllSounds();
_root.shop._visible = false;
_root.health2._visible = false;
_root.score2._visible = false;
_root.bshop._visible = true;
_root.ccontinue._visible = true;
}
Symbol 1122 Button
on (release) {
_root.score = _root.score - 100;
_root.weapons.arrowammo = _root.weapons.arrowammo + 20;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
_root.weapons.arroh = _root.weapons.arroh + 1;
if (_root.weapons.arroh >= 1) {
if (_root.score >= 20) {
a._visible = true;
}
}
if (_root.weapons.arroh >= 1) {
c._visible = false;
}
}
Symbol 1124 Button
on (release) {
_root.score = _root.score - 300;
_root.weapons.plasmaammo = _root.weapons.plasmaammo + 10;
_root.weapons.plasmareload = _root.weapons.plasmareload + 3;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
_root.weapons.plasmah = _root.weapons.plasmah + 1;
if (_root.weapons.plasmah == 1) {
if (_root.score >= 30) {
pc._visible = true;
}
}
if (_root.weapons.plasmah == 1) {
pg._visible = false;
}
}
Symbol 1126 Button
on (release) {
_root.score = _root.score - 400;
_root.weapons.shotgunammo = _root.weapons.shotgunammo + 6;
_root.weapons.shotguncartridge = _root.weapons.shotguncartridge + 2;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
_root.weapons.shoth = _root.weapons.shoth + 1;
if (_root.weapons.shoth == 1) {
if (_root.score >= 50) {
sgs._visible = true;
}
}
if (_root.weapons.shoth == 1) {
s._visible = false;
}
}
Symbol 1128 Button
on (release) {
_root.score = _root.score - 500;
_root.weapons.machine = _root.weapons.machine + 100;
_root.weapons.machinecartridge = _root.weapons.machinecartridge + 1;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
_root.weapons.machineh = _root.weapons.machineh + 1;
if (_root.weapons.machineh >= 1) {
if (_root.score >= 80) {
mgc._visible = true;
}
}
if (_root.weapons.machineh >= 1) {
mg._visible = false;
}
}
Symbol 1130 Button
on (release) {
_root.score = _root.score - 700;
_root.weapons.rocketammo = _root.weapons.rocketammo + 5;
_root.weapons.rockets = _root.weapons.rockets + 5;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
_root.weapons.rocketh = _root.weapons.rocketh + 1;
if (_root.weapons.rocketh == 1) {
if (_root.score >= 150) {
r._visible = true;
}
}
if (_root.weapons.rocketh == 1) {
rl._visible = false;
}
}
Symbol 1132 Button
on (release) {
_root.health = 100;
_root.score = _root.score - 30;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
}
Symbol 1134 Button
on (release) {
_root.score = _root.score - 20;
_root.weapons.arrowammo = _root.weapons.arrowammo + 20;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
}
Symbol 1141 Button
on (release) {
_root.score = _root.score - 50;
_root.weapons.shotguncartridge = _root.weapons.shotguncartridge + 1;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
}
Symbol 1143 Button
on (release) {
_root.score = _root.score - 80;
_root.weapons.machinecartridge = _root.weapons.machinecartridge + 1;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health == 100) {
rfh._visible = false;
}
}
Symbol 1148 Button
on (release) {
_root.score = _root.score - 150;
_root.weapons.rockets = _root.weapons.rockets + 5;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
}
Symbol 1149 Button
on (release) {
_root.score = _root.score - 30;
_root.weapons.plasmareload = _root.weapons.plasmareload + 1;
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 999) {
rb._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
}
Symbol 1154 Button
on (release) {
_root.weapons.redeemerammo = 1;
_root.weapons.redeemh = 1;
if (_root.weapons.redeemh >= 1) {
_root.shop.rb.rbb._visible = false;
}
_root.shop.rb._visible = false;
}
Symbol 1159 MovieClip Frame 1
if (_root.weapons.arroh == 1) {
a._visible = true;
}
if (_root.weapons.arroh == 1) {
c._visible = false;
}
if (_root.weapons.plasmah == 1) {
pc._visible = true;
}
if (_root.weapons.plasmah == 1) {
pg._visible = false;
}
if (_root.weapons.shoth == 1) {
sgs._visible = true;
}
if (_root.weapons.shoth == 1) {
s._visible = false;
}
if (_root.weapons.machineh == 1) {
mgc._visible = true;
}
if (_root.weapons.machineh == 1) {
mg._visible = false;
}
if (_root.weapons.rocketh == 1) {
r._visible = true;
}
if (_root.weapons.rocketh == 1) {
rl._visible = false;
}
if (_root.score <= 99) {
c._visible = false;
}
if (_root.score <= 299) {
pg._visible = false;
}
if (_root.score <= 399) {
s._visible = false;
}
if (_root.score <= 499) {
mg._visible = false;
}
if (_root.score <= 699) {
rl._visible = false;
}
if (_root.score <= 29) {
rfh._visible = false;
}
if (_root.score <= 19) {
a._visible = false;
}
if (_root.score <= 29) {
pc._visible = false;
}
if (_root.score <= 49) {
sgs._visible = false;
}
if (_root.score <= 79) {
mgc._visible = false;
}
if (_root.score <= 149) {
r._visible = false;
}
if (_root.health >= 100) {
rfh._visible = false;
}
if (_root.weapons.arroh <= 0) {
a._visible = false;
}
if (_root.weapons.plasmah <= 0) {
pc._visible = false;
}
if (_root.weapons.shoth <= 0) {
sgs._visible = false;
}
if (_root.weapons.machineh <= 0) {
mgc._visible = false;
}
if (_root.weapons.rocketh <= 0) {
r._visible = false;
}
_root.shop.rb._visible = false;
Symbol 1163 MovieClip Frame 1
stop();
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1171 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 709 MovieClip in Symbol 1171 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(12);
}
Symbol 1172 MovieClip Frame 1
stop();
Symbol 1172 MovieClip Frame 650
stop();
Symbol 1191 MovieClip Frame 6
stop();
Symbol 1210 MovieClip Frame 1
z = 0;
Instance of Symbol 1191 MovieClip in Symbol 1210 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Symbol 1210 MovieClip Frame 17
gotoAndPlay (1);
Symbol 1210 MovieClip Frame 18
_root.score = _root.score + 4;
Symbol 1210 MovieClip Frame 31
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 1214 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (10);
}
Symbol 1219 Button
on (release) {
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.shop._visible = true;
_root.health2._visible = true;
_root.score2._visible = true;
}
Symbol 1224 MovieClip Frame 1
stop();
Instance of Symbol 709 MovieClip in Symbol 1236 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(16);
}
Instance of Symbol 709 MovieClip in Symbol 1236 MovieClip Frame 15
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.gotoAndPlay(16);
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1237 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Symbol 1238 MovieClip Frame 1
stop();
Symbol 1238 MovieClip Frame 562
stop();
Symbol 1271 MovieClip Frame 1
z = 0;
Instance of Symbol 1260 MovieClip in Symbol 1271 MovieClip Frame 27
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.health = _root.health - 4;
}
}
Instance of Symbol 1263 MovieClip in Symbol 1271 MovieClip Frame 28
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.health = _root.health - 4;
}
}
Instance of Symbol 1265 MovieClip in Symbol 1271 MovieClip Frame 29
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.health = _root.health - 4;
}
}
Instance of Symbol 1268 MovieClip in Symbol 1271 MovieClip Frame 30
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.health = _root.health - 4;
}
}
Symbol 1271 MovieClip Frame 32
stop();
duplicateMovieClip (_root.enemy, enemy, 20);
Symbol 1271 MovieClip Frame 33
_root.score = _root.score + 6;
Symbol 1271 MovieClip Frame 47
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 1275 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (14);
}
Symbol 1281 MovieClip Frame 1
stop();
Symbol 1291 MovieClip Frame 1
stop();
Symbol 1291 MovieClip Frame 21
stop();
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange" in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange2" in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange2.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange3" in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange3.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange4" in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange4.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange5" in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange5.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange6" in Symbol 1292 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange6.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 709 MovieClip in Symbol 1292 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(20);
}
Symbol 1293 MovieClip Frame 1
stop();
Symbol 1293 MovieClip Frame 620
stop();
Symbol 1337 MovieClip Frame 1
z = 0;
Instance of Symbol 1328 MovieClip in Symbol 1337 MovieClip Frame 27
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 3;
}
}
Symbol 1337 MovieClip Frame 36
gotoAndPlay (1);
Symbol 1337 MovieClip Frame 37
_root.score = _root.score + 8;
Symbol 1337 MovieClip Frame 43
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 1339 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (18);
}
Symbol 1348 MovieClip Frame 1
stop();
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange2" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange2.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip "bla" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange3" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange3.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange4" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange4.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange5" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange5.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange6" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange6.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange7" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange7.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange8" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange8.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange9" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange9.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip "plat" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
Instance of Symbol 709 MovieClip in Symbol 1360 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(24);
}
Instance of Symbol 365 MovieClip "plat" in Symbol 1360 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
Symbol 1361 MovieClip Frame 1
stop();
Symbol 1361 MovieClip Frame 720
stop();
Symbol 1394 MovieClip Frame 1
z = 0;
Instance of Symbol 1387 MovieClip in Symbol 1394 MovieClip Frame 20
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Symbol 1394 MovieClip Frame 30
gotoAndPlay (1);
Symbol 1394 MovieClip Frame 31
_root.score = _root.score + 10;
Symbol 1394 MovieClip Frame 45
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 1395 MovieClip Frame 1
stop();
Symbol 1397 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (22);
}
Symbol 1400 Button
on (release) {
soundmc.gotoAndPlay("start");
testsnd = new Sound(soundmc);
volvalue = testsnd.getVolume();
panvalue = testsnd.getPan();
_root.shop._visible = true;
_root.health2._visible = true;
_root.score2._visible = true;
}
Symbol 1406 MovieClip Frame 1
stop();
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange" in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange2" in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange2.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange3" in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange3.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange4" in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange4.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange5" in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange5.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange6" in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange6.play();
}
}
Instance of Symbol 709 MovieClip in Symbol 1416 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(28);
}
Instance of Symbol 342 MovieClip in Symbol 1416 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Symbol 1417 MovieClip Frame 1
stop();
Symbol 1417 MovieClip Frame 775
stop();
Symbol 1451 MovieClip Frame 1
z = 0;
Instance of Symbol 1432 MovieClip in Symbol 1451 MovieClip Frame 22
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 4;
}
}
Symbol 1451 MovieClip Frame 34
gotoAndPlay (1);
Symbol 1451 MovieClip Frame 35
_root.score = _root.score + 12;
Symbol 1451 MovieClip Frame 51
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 1453 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (26);
}
Symbol 1460 MovieClip Frame 1
stop();
Instance of Symbol 709 MovieClip in Symbol 1474 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(32);
}
Instance of Symbol 709 MovieClip in Symbol 1474 MovieClip Frame 5
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(32);
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1475 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Symbol 1476 MovieClip Frame 1
stop();
Symbol 1476 MovieClip Frame 810
stop();
Symbol 1502 MovieClip Frame 1
z = 0;
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 3
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 4
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 5
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 6
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 8
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 10
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 3;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 11
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 14
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 3;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 16
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 2;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 17
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 19
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 22
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 23
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 3;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 28
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 29
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 30
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 1;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 31
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 32
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 33
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 1480 MovieClip in Symbol 1502 MovieClip Frame 34
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 4;
}
}
Symbol 1502 MovieClip Frame 35
gotoAndPlay (1);
Symbol 1502 MovieClip Frame 36
_root.score = _root.score + 14;
Symbol 1502 MovieClip Frame 42
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 1504 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (30);
}
Symbol 1512 MovieClip Frame 1
stop();
Symbol 1524 MovieClip Frame 1
stop();
Instance of Symbol 1524 MovieClip in Symbol 1525 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 2;
gotoAndPlay ("again");
}
}
Instance of Symbol 1524 MovieClip in Symbol 1525 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 2;
gotoAndPlay ("again");
}
}
Instance of Symbol 709 MovieClip in Symbol 1525 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(36);
}
Symbol 1526 MovieClip Frame 1
stop();
Symbol 1526 MovieClip Frame 700
stop();
Symbol 1554 MovieClip Frame 1
z = 0;
Instance of Symbol 1538 MovieClip in Symbol 1554 MovieClip Frame 17
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.health = _root.health - 3;
}
}
Symbol 1554 MovieClip Frame 33
gotoAndPlay (1);
Symbol 1554 MovieClip Frame 34
_root.score = _root.score + 16;
Symbol 1554 MovieClip Frame 44
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 1556 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (34);
}
Symbol 1564 MovieClip Frame 1
stop();
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1524 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 2;
gotoAndPlay ("again");
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange2" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange2.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange3" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange3.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange4" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange4.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange5" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange5.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange6" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange6.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange7" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange7.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange8" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange8.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1524 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 2;
gotoAndPlay ("again");
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange9" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange9.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange10" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange10.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange11" in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange11.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1524 MovieClip in Symbol 1576 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 2;
gotoAndPlay ("again");
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 709 MovieClip in Symbol 1576 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(40);
}
Symbol 1577 MovieClip Frame 1
stop();
Symbol 1577 MovieClip Frame 920
stop();
Symbol 1623 MovieClip Frame 1
z = 0;
Instance of Symbol 1606 MovieClip in Symbol 1623 MovieClip Frame 28
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.health = _root.health - 1;
}
}
Symbol 1623 MovieClip Frame 47
gotoAndPlay (1);
Symbol 1623 MovieClip Frame 48
_root.score = _root.score + 18;
Symbol 1623 MovieClip Frame 55
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 1625 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (38);
}
Symbol 1633 MovieClip Frame 1
stop();
Symbol 1660 MovieClip Frame 1
z = 0;
Symbol 1660 MovieClip Frame 7
gotoAndPlay (1);
Symbol 1660 MovieClip Frame 18
stop();
_root.enemy.duplicateMovieClip("enemy" + _root.z, _root.z++);
removeMovieClip(this);
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange2" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange2.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange3" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange3.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange4" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange4.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange5" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange5.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1524 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 2;
gotoAndPlay ("again");
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1524 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 2;
gotoAndPlay ("again");
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange6" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange6.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange8" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange8.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange9" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange9.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange10" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange10.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange11" in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange11.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1524 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 2;
gotoAndPlay ("again");
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1661 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 709 MovieClip in Symbol 1661 MovieClip Frame 1
on (release) {
if ((_root.health = 100)) {
_root.score = _root.score + 100;
}
}
on (release) {
stopAllSounds();
_root.score = _root.score + 15;
_root.gotoAndPlay(44);
}
Symbol 1662 MovieClip Frame 1
stop();
Symbol 1662 MovieClip Frame 815
stop();
Symbol 1666 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (42);
}
Symbol 1680 MovieClip Frame 1
stop();
Symbol 1701 MovieClip Frame 26
_parent.gotoAndStop(random(5));
Symbol 1701 MovieClip Frame 32
_root.score = _root.score + 5;
_parent.gotoAndStop(random(5));
Symbol 1711 MovieClip Frame 50
_parent.gotoAndStop(random(5));
Symbol 1711 MovieClip Frame 58
_root.score = _root.score + 5;
_parent.gotoAndStop(random(5));
Symbol 1717 MovieClip Frame 18
_parent.gotoAndStop(random(5));
Symbol 1717 MovieClip Frame 22
_root.score = _root.score + 5;
_parent.gotoAndStop(random(5));
Symbol 1726 MovieClip Frame 25
_parent.gotoAndStop(random(5));
Symbol 1726 MovieClip Frame 32
_root.score = _root.score + 5;
_parent.gotoAndStop(random(5));
Symbol 1727 MovieClip Frame 1
stop();
Instance of Symbol 1701 MovieClip in Symbol 1727 MovieClip Frame 1
onClipEvent (load) {
randx = Math.random() * 500;
randy = Math.random() * 400;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (load) {
HP = 2;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 5;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (27);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 1727 MovieClip Frame 2
stop();
Instance of Symbol 1711 MovieClip in Symbol 1727 MovieClip Frame 2
onClipEvent (load) {
randx = Math.random() * 500;
randy = Math.random() * 400;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (load) {
HP = 2;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 5;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (51);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 1727 MovieClip Frame 3
stop();
Instance of Symbol 1717 MovieClip in Symbol 1727 MovieClip Frame 3
onClipEvent (load) {
randx = Math.random() * 500;
randy = Math.random() * 400;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (load) {
HP = 2;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 5;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (19);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 1727 MovieClip Frame 4
stop();
Instance of Symbol 1726 MovieClip in Symbol 1727 MovieClip Frame 4
onClipEvent (load) {
randx = Math.random() * 500;
randy = Math.random() * 400;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
rad = 1.01745329251994;
speed = 10;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
} else {
_x = followed._x;
_y = followed._y;
}
}
onClipEvent (load) {
HP = 2;
dead = false;
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
HP = HP - 2;
} else if (hitTest(_root.character.bow.arro)) {
HP = HP - 7;
} else if (hitTest(_root.character.plasma.pray)) {
HP = HP - 5;
} else if (hitTest(_root.character.shot.sray)) {
HP = HP - 10;
} else if (hitTest(_root.character.auto.mray)) {
HP = HP - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
HP = HP - 60;
} else if (hitTest(_root.character.fhands.fireball)) {
HP = HP - 50;
}
if (HP <= 0) {
if (!dead) {
gotoAndPlay (26);
}
dead = true;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 390 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange2" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange2.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 390 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange3" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange3.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange4" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange4.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 390 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange5" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange5.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1524 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 1;
gotoAndPlay ("again");
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 390 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange6" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange6.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1524 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.health = _root.health + 1;
gotoAndPlay ("again");
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 347 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange7" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange7.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 1291 MovieClip "orange8" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_parent.orange8.play();
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 351 MovieClip in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 365 MovieClip "plat" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
_root.black.gotoAndPlay(2);
}
}
Instance of Symbol 390 MovieClip "plat" in Symbol 1728 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.character.hitTest(this)) {
stopAllSounds();
_root.score = _root.score + 200;
_root.gotoAndPlay(48);
}
}
Symbol 1729 MovieClip Frame 1
stop();
Symbol 1729 MovieClip Frame 1045
stop();
Symbol 1733 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (46);
}
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 338
/* no clip actions */
Symbol 1782 MovieClip Frame 342
stop();
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 342
on (release) {
_parent.gotoAndPlay(343);
}
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 346
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 350
/* no clip actions */
Symbol 1782 MovieClip Frame 354
stop();
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 354
on (release) {
_parent.gotoAndPlay(355);
}
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 358
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 359
/* no clip actions */
Symbol 1782 MovieClip Frame 363
stop();
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 363
on (release) {
_parent.gotoAndPlay(364);
}
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 367
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 371
/* no clip actions */
Symbol 1782 MovieClip Frame 375
stop();
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 375
on (release) {
_parent.gotoAndPlay(376);
}
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 379
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 383
/* no clip actions */
Symbol 1782 MovieClip Frame 387
stop();
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 387
on (release) {
_parent.gotoAndPlay(388);
}
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 391
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 395
/* no clip actions */
Symbol 1782 MovieClip Frame 399
stop();
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 399
on (release) {
_parent.gotoAndPlay(399);
}
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 403
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 404
/* no clip actions */
Symbol 1782 MovieClip Frame 408
stop();
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 408
on (release) {
_parent.gotoAndPlay(408);
}
Instance of Symbol 1773 MovieClip in Symbol 1782 MovieClip Frame 412
/* no clip actions */
Symbol 1782 MovieClip Frame 430
stopAllSounds();
_root.gotoAndStop(49);
Symbol 1784 MovieClip Frame 1
stop();
Symbol 1785 Button
on (release) {
if (_root.weapons.redeemh >= 1) {
_root.shop.rb.rbb_visible = false;
}
_root.shop._visible = true;
_root.health2._visible = true;
_root.score2._visible = true;
_root.shop.rb._visible = true;
}
Symbol 1790 MovieClip Frame 1
stop();
Symbol 1799 MovieClip Frame 30
_parent.gotoAndStop(random(4));
Symbol 1807 MovieClip Frame 32
_parent.gotoAndStop(random(4));
Instance of Symbol 132 MovieClip in Symbol 1823 MovieClip Frame 7
onClipEvent (load) {
randy = Math.random() * -400;
randy = Math.random() * 400;
this._y = randx;
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
this.gotoAndStop(4);
_root.health = _root.health - 2;
}
}
Instance of Symbol 132 MovieClip in Symbol 1823 MovieClip Frame 9
onClipEvent (load) {
randx = Math.random() * -550;
randx = Math.random() * 550;
this._x = randx;
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
this.gotoAndStop(4);
_root.health = _root.health - 2;
}
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(this)) {
this.gotoAndStop(4);
}
}
Symbol 1823 MovieClip Frame 25
_parent.gotoAndStop(random(4));
Symbol 1838 MovieClip Frame 14
_parent.gotoAndStop(random(4));
Symbol 1839 MovieClip Frame 1
stop();
Instance of Symbol 1799 MovieClip "a" in Symbol 1839 MovieClip Frame 1
onClipEvent (load) {
randx = Math.random() * 600;
randy = Math.random() * 400;
this._x = randx;
this._y = randy;
}
onClipEvent (load) {
speed = 60;
moving = false;
followed = _root.character;
}
onClipEvent (enterFrame) {
mcx = _x - followed._x;
mcy = _y - followed._y;
_rotation = ((-Math.atan2(mcx, mcy)) / rad);
mr = _rotation * rad;
if (Math.sqrt((mcx * mcx) + (mcy * mcy)) > speed) {
_y = (_y - (speed * Math.cos(mr)));
_x = (_x - (-(speed * Math.sin(mr))));
}
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 2;
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
_root.bossh = _root.bossh - 2;
} else if (hitTest(_root.character.bow.arro)) {
_root.bossh = _root.bossh - 7;
} else if (hitTest(_root.character.plasma.pray)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.shot.sray)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.auto.mray)) {
_root.bossh = _root.bossh - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
_root.bossh = _root.bossh - 20;
} else if (hitTest(_root.character.fhands.fireball)) {
_root.bossh = _root.bossh - 50;
}
}
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 500;
_root.gotoAndStop(52);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 1839 MovieClip Frame 2
stop();
Instance of Symbol 1807 MovieClip in Symbol 1839 MovieClip Frame 2
onClipEvent (enterFrame) {
if (bossh == 0) {
stopAllSounds();
_root.score = _root.score + 500;
_root.gotoAndStop(52);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 1839 MovieClip Frame 3
stop();
Instance of Symbol 1823 MovieClip "b" in Symbol 1839 MovieClip Frame 3
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
_root.bossh = _root.bossh - 2;
} else if (hitTest(_root.character.bow.arro)) {
_root.bossh = _root.bossh - 7;
} else if (hitTest(_root.character.plasma.pray)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.shot.sray)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.auto.mray)) {
_root.bossh = _root.bossh - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
_root.bossh = _root.bossh - 20;
} else if (hitTest(_root.character.fhands.fireball)) {
_root.bossh = _root.bossh - 50;
}
}
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 500;
_root.gotoAndStop(52);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 1839 MovieClip Frame 4
stop();
Instance of Symbol 1838 MovieClip "c" in Symbol 1839 MovieClip Frame 4
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
_root.bossh = _root.bossh - 2;
} else if (hitTest(_root.character.bow.arro)) {
_root.bossh = _root.bossh - 7;
} else if (hitTest(_root.character.plasma.pray)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.shot.sray)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.auto.mray)) {
_root.bossh = _root.bossh - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
_root.bossh = _root.bossh - 20;
} else if (hitTest(_root.character.fhands.fireball)) {
_root.bossh = _root.bossh - 50;
}
}
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 500;
_root.gotoAndStop(52);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 1846 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (50);
}
Symbol 1950 MovieClip Frame 145
_parent.gotoAndPlay(12);
Symbol 1995 MovieClip Frame 11
stop();
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 68
/* no clip actions */
Symbol 1995 MovieClip Frame 72
stop();
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 72
on (release) {
_parent.gotoAndPlay(73);
}
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 76
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 80
/* no clip actions */
Symbol 1995 MovieClip Frame 84
stop();
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 84
on (release) {
_parent.gotoAndPlay(85);
}
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 88
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 92
/* no clip actions */
Symbol 1995 MovieClip Frame 96
stop();
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 96
on (release) {
_parent.gotoAndPlay(97);
}
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 100
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 104
/* no clip actions */
Symbol 1995 MovieClip Frame 108
stop();
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 108
on (release) {
_parent.gotoAndPlay(109);
}
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 112
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 150
/* no clip actions */
Symbol 1995 MovieClip Frame 154
stop();
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 154
on (release) {
_parent.gotoAndPlay(155);
}
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 158
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 162
/* no clip actions */
Symbol 1995 MovieClip Frame 166
stop();
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 166
on (release) {
_parent.gotoAndPlay(167);
}
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 170
/* no clip actions */
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 174
/* no clip actions */
Symbol 1995 MovieClip Frame 178
stop();
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 178
on (release) {
_parent.gotoAndPlay(179);
}
Instance of Symbol 1773 MovieClip in Symbol 1995 MovieClip Frame 182
/* no clip actions */
Symbol 1995 MovieClip Frame 215
stopAllSounds();
_root.gotoAndStop(53);
Symbol 1997 MovieClip Frame 1
stop();
Symbol 1999 Button
on (release) {
_root.shop._visible = true;
_root.health2._visible = true;
_root.score2._visible = true;
_root.shop.rb._visible = true;
}
Symbol 2003 MovieClip Frame 1
stop();
Instance of Symbol 2038 MovieClip in Symbol 2039 MovieClip Frame 62
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.health = _root.health - 2;
}
}
Symbol 2039 MovieClip Frame 71
_parent.gotoAndStop(random(3));
Symbol 2040 MovieClip Frame 1
stop();
Symbol 2040 MovieClip Frame 2
stop();
Symbol 2040 MovieClip Frame 3
stop();
Symbol 2055 MovieClip Frame 14
_parent.gotoAndStop(random(5));
Symbol 2075 MovieClip Frame 16
_parent.gotoAndStop(random(5));
Symbol 2081 MovieClip Frame 2
gotoAndPlay (1);
Symbol 2081 MovieClip Frame 3
stop();
Instance of Symbol 2081 MovieClip in Symbol 2085 MovieClip Frame 6
onClipEvent (load) {
randy = Math.random() * -400;
randy = Math.random() * 400;
this._y = randx;
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
this.gotoAndStop(4);
_root.health = _root.health - 0.5;
}
}
onClipEvent (enterFrame) {
if (_root.rock.hitTest(this)) {
this.gotoAndStop(3);
}
}
Instance of Symbol 2081 MovieClip in Symbol 2085 MovieClip Frame 8
onClipEvent (load) {
randx = Math.random() * -550;
randx = Math.random() * 550;
this._x = randx;
}
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
this.gotoAndStop(4);
_root.health = _root.health - 0.5;
}
}
onClipEvent (enterFrame) {
this.gotoAndStop(3);
}
Symbol 2085 MovieClip Frame 23
_parent.gotoAndStop(random(5));
Instance of Symbol 2105 MovieClip in Symbol 2107 MovieClip Frame 10
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 10;
}
}
Instance of Symbol 2105 MovieClip in Symbol 2107 MovieClip Frame 13
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 10;
}
}
Instance of Symbol 2105 MovieClip in Symbol 2107 MovieClip Frame 16
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 2105 MovieClip in Symbol 2107 MovieClip Frame 23
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 2105 MovieClip in Symbol 2107 MovieClip Frame 30
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 2105 MovieClip in Symbol 2107 MovieClip Frame 37
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Instance of Symbol 2105 MovieClip in Symbol 2107 MovieClip Frame 43
onClipEvent (enterFrame) {
if (_root.character.color.hitTest(this)) {
_root.health = _root.health - 5;
}
}
Symbol 2107 MovieClip Frame 80
_parent.gotoAndStop(random(5));
Symbol 2108 MovieClip Frame 1
stop();
Instance of Symbol 2055 MovieClip in Symbol 2108 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
_root.bossh = _root.bossh - 2;
} else if (hitTest(_root.character.plasma.pray)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.shot.sray)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.auto.mray)) {
_root.bossh = _root.bossh - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
_root.bossh = _root.bossh - 20;
} else if (hitTest(_root.character.fhands.fireball)) {
_root.bossh = _root.bossh - 50;
}
}
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 700;
_root.gotoAndStop(56);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 2108 MovieClip Frame 2
stop();
Instance of Symbol 2075 MovieClip in Symbol 2108 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 700;
_root.gotoAndStop(56);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 2108 MovieClip Frame 3
stop();
Instance of Symbol 2085 MovieClip in Symbol 2108 MovieClip Frame 3
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
_root.bossh = _root.bossh - 2;
} else if (hitTest(_root.character.plasma.pray)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.shot.sray)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.auto.mray)) {
_root.bossh = _root.bossh - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
_root.bossh = _root.bossh - 20;
} else if (hitTest(_root.character.fhands.fireball)) {
_root.bossh = _root.bossh - 50;
}
}
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 700;
_root.gotoAndStop(56);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 2108 MovieClip Frame 4
stop();
Instance of Symbol 2107 MovieClip in Symbol 2108 MovieClip Frame 4
onClipEvent (enterFrame) {
if (hitTest(_root.character.gun.ray)) {
_root.bossh = _root.bossh - 2;
} else if (hitTest(_root.character.plasma.pray)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.shot.sray)) {
_root.bossh = _root.bossh - 10;
} else if (hitTest(_root.character.auto.mray)) {
_root.bossh = _root.bossh - 1;
} else if (hitTest(_root.character.launcher.rocks)) {
_root.bossh = _root.bossh - 5;
} else if (hitTest(_root.character.redeem.ket)) {
_root.bossh = _root.bossh - 50;
} else if (hitTest(_root.character.hands.lightning)) {
_root.bossh = _root.bossh - 20;
} else if (hitTest(_root.character.fhands.fireball)) {
_root.bossh = _root.bossh - 50;
}
}
onClipEvent (enterFrame) {
if (_root.bossh <= 0) {
stopAllSounds();
_root.score = _root.score + 700;
_root.gotoAndStop(56);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.launcher.rocks)) {
_root.character.launcher.rocks.gotoAndStop(4);
}
}
onClipEvent (enterFrame) {
if (hitTest(_root.character.redeem.ket)) {
_root.character.redeem.ket.gotoAndStop(3);
}
}
Symbol 2112 Button
on (release) {
stopAllSounds();
_root.health = 100;
gotoAndPlay (54);
}
Symbol 2156 MovieClip Frame 1
stop();
Symbol 2156 MovieClip Frame 71
gotoAndStop (1);
Symbol 2271 MovieClip Frame 545
_root.gotoAndPlay(57);
Symbol 2280 Button
on (release) {
stopAllSounds();
_root.gotoAndStop(58);
}
Symbol 2281 MovieClip Frame 395
_root.gotoAndPlay(58);
Symbol 2286 MovieClip Frame 1
stop();
Symbol 2302 MovieClip Frame 1
z = 0;
Symbol 2302 MovieClip Frame 21
_root.green.duplicateMovieClip("green" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2315 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2315 MovieClip Frame 8
stop();
Symbol 2316 MovieClip Frame 1
z = 0;
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2316 MovieClip Frame 25
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2316 MovieClip Frame 26
_root.bad.duplicateMovieClip("bad" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2317 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2317 MovieClip Frame 8
stop();
Symbol 2318 MovieClip Frame 1
z = 0;
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2318 MovieClip Frame 25
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2318 MovieClip Frame 26
_root.bad2.duplicateMovieClip("bad2" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2319 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2319 MovieClip Frame 8
stop();
Symbol 2320 MovieClip Frame 1
z = 0;
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2320 MovieClip Frame 20
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2320 MovieClip Frame 21
_root.bad3.duplicateMovieClip("bad3" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2321 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2321 MovieClip Frame 13
gotoAndPlay (1);
Symbol 2322 MovieClip Frame 1
z = 0;
Symbol 2322 MovieClip Frame 21
_root.good2.duplicateMovieClip("good2" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2323 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2323 MovieClip Frame 13
gotoAndPlay (1);
Symbol 2324 MovieClip Frame 1
z = 0;
Symbol 2324 MovieClip Frame 21
_root.good3.duplicateMovieClip("good3" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2325 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2325 MovieClip Frame 8
stop();
Symbol 2326 MovieClip Frame 1
z = 0;
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2326 MovieClip Frame 17
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2326 MovieClip Frame 18
_root.bad5.duplicateMovieClip("bad5" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2327 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2327 MovieClip Frame 13
gotoAndPlay (1);
Symbol 2328 MovieClip Frame 1
z = 0;
Symbol 2328 MovieClip Frame 18
_root.green2.duplicateMovieClip("green2" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2329 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2329 MovieClip Frame 8
stop();
Symbol 2330 MovieClip Frame 1
z = 0;
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2330 MovieClip Frame 25
if (_root.health <= 0) {
_root.gotoAndStop("loose");
removeMovieClip(this);
stopAllSounds();
}
Symbol 2330 MovieClip Frame 26
_root.bad4.duplicateMovieClip("bad4" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2331 MovieClip Frame 4
gotoAndPlay (1);
Symbol 2331 MovieClip Frame 13
gotoAndPlay (1);
Symbol 2332 MovieClip Frame 1
z = 0;
Symbol 2332 MovieClip Frame 21
_root.good5.duplicateMovieClip("good5" + _root.z, _root.z++);
removeMovieClip(this);
Symbol 2333 MovieClip Frame 1
stop();
Symbol 2334 MovieClip Frame 1
stop();
Symbol 2377 MovieClip Frame 359
stopAllSounds();
_root.gotoAndPlay("loose");
Symbol 2380 MovieClip Frame 1
stop();
Symbol 2388 Button
on (release) {
_root.submit_btn._visible = false;
_root.username._visible = false;
}
Symbol 2390 Button
on (release) {
_root.livesc = 0;
_root.levels = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
stopAllSounds();
gotoAndStop (2);
}
Symbol 2392 MovieClip Frame 1
stop();
Symbol 2421 MovieClip Frame 30
stop();
Symbol 2425 Button
on (release) {
stopAllSounds();
_root.livesc = 0;
_root.light = 0;
_root.gor = 0;
_root.fires = 0;
_root.gotoAndStop(1);
}
Symbol 2443 MovieClip Frame 1
stop();
Symbol 2455 MovieClip Frame 1
Instance of Symbol 709 MovieClip in Symbol 2455 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.player)) {
_root.p1 = _root.p1 + 1;
stopAllSounds();
_root.gotoAndStop(64);
}
}
Instance of Symbol 342 MovieClip in Symbol 2455 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 2455 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 2455 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 342 MovieClip in Symbol 2455 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.character.color)) {
_root.score = _root.score + 1;
}
}
Instance of Symbol 709 MovieClip in Symbol 2455 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.player2)) {
_root.p2 = _root.p2 + 1;
stopAllSounds();
_root.gotoAndStop(64);
}
}
Symbol 2456 MovieClip Frame 1
stop();
Symbol 2456 MovieClip Frame 517
stop();
Symbol 2475 MovieClip Frame 1
stop();
Instance of Symbol 1291 MovieClip "orange" in Symbol 2487 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player2.hitTest(this)) {
_parent.orange.play();
}
}
Instance of Symbol 1291 MovieClip "orange2" in Symbol 2487 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player2.hitTest(this)) {
_parent.orange2.play();
}
}
Instance of Symbol 709 MovieClip in Symbol 2487 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.player)) {
_root.p1 = _root.p1 + 1;
stopAllSounds();
_root.gotoAndStop(67);
}
}
Instance of Symbol 709 MovieClip in Symbol 2487 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.player2)) {
_root.p2 = _root.p2 + 1;
stopAllSounds();
_root.gotoAndStop(67);
}
}
Symbol 2488 MovieClip Frame 1
stop();
Symbol 2488 MovieClip Frame 461
stop();
Symbol 2498 MovieClip Frame 1
stop();
Instance of Symbol 1291 MovieClip "orange2" in Symbol 2512 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player2.hitTest(this)) {
_parent.orange2.play();
}
}
Instance of Symbol 1291 MovieClip "orange" in Symbol 2512 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player2.hitTest(this)) {
_parent.orange.play();
}
}
Instance of Symbol 1291 MovieClip "orange3" in Symbol 2512 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player2.hitTest(this)) {
_parent.orange3.play();
}
}
Instance of Symbol 1291 MovieClip "orange4" in Symbol 2512 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player2.hitTest(this)) {
_parent.orange4.play();
}
}
Instance of Symbol 1291 MovieClip "orange5" in Symbol 2512 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player2.hitTest(this)) {
_parent.orange5.play();
}
}
Instance of Symbol 1291 MovieClip "orange6" in Symbol 2512 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.player2.hitTest(this)) {
_parent.orange6.play();
}
}
Instance of Symbol 709 MovieClip in Symbol 2512 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.player)) {
_root.p1 = _root.p1 + 1;
stopAllSounds();
_root.gotoAndStop(70);
}
}
Instance of Symbol 709 MovieClip in Symbol 2512 MovieClip Frame 1
onClipEvent (enterFrame) {
if (hitTest(_root.player2)) {
_root.p2 = _root.p2 + 1;
stopAllSounds();
_root.gotoAndStop(70);
}
}
Symbol 2513 MovieClip Frame 1
stop();
Symbol 2513 MovieClip Frame 605
stop();
Symbol 2520 Button
on (release) {
_root.gotoAndStop(2);
}