Frame 1
function itemHandler5(obj, item) {
_quality = "high";
}
function itemHandler6(obj, item) {
_quality = "medium";
}
function itemHandler7(obj, item) {
_quality = "low";
}
stop();
root_cm = new ContextMenu();
root_cm.hideBuiltInItems();
eee_cmi = new ContextMenuItem("High Quality", itemHandler5);
fff_cmi = new ContextMenuItem("Mid Quality", itemHandler6);
ggg_cmi = new ContextMenuItem("Low Quality", itemHandler7);
ccc_cmi.separatorBefore = true;
eee_cmi.separatorBefore = true;
root_cm.customItems.push(aaa_cmi, bbb_cmi, ccc_cmi, ddd_cmi, eee_cmi, fff_cmi, ggg_cmi);
_root.menu = root_cm;
Instance of Symbol 15 MovieClip in Frame 1
onClipEvent (enterFrame) {
this._rotation = this._rotation + poospeed;
}
onClipEvent (enterFrame) {
if (Key.isDown(48)) {
poospeed = 0;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(49)) {
poospeed = 1.5;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(50)) {
poospeed = 3;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(51)) {
poospeed = 4.5;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(52)) {
poospeed = 6;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(53)) {
poospeed = 7.5;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(54)) {
poospeed = 9;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(55)) {
poospeed = 10.5;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(56)) {
poospeed = 12;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(57)) {
poospeed = 13.5;
}
}
Frame 2
stop();
score = 0;
lives = 3;
Frame 3
stop();
Instance of Symbol 57 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.nextFrame();
}
}
Frame 4
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 5
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 91 MovieClip "guy" in Frame 5
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 5
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 136 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 279 MovieClip "clear" in Frame 5
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 6
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 7
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 91 MovieClip "guy" in Frame 7
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 7
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 279 MovieClip "clear" in Frame 7
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 8
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 9
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 91 MovieClip "guy" in Frame 9
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 9
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 279 MovieClip "clear" in Frame 9
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 10
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 11
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 91 MovieClip "guy" in Frame 11
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 11
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 279 MovieClip "clear" in Frame 11
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 12
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 13
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 13
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 91 MovieClip "guy" in Frame 13
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 279 MovieClip "clear" in Frame 13
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 14
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 15
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 15
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 91 MovieClip "guy" in Frame 15
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 279 MovieClip "clear" in Frame 15
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 16
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 16
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 17
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 17
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 17
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 91 MovieClip "guy" in Frame 17
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 279 MovieClip "clear" in Frame 17
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 18
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 18
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 19
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 19
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 19
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 91 MovieClip "guy" in Frame 19
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 279 MovieClip "clear" in Frame 19
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 20
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 20
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 21
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 21
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 21
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 91 MovieClip "guy" in Frame 21
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 279 MovieClip "clear" in Frame 21
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 22
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 22
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 23
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 23
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 23
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 91 MovieClip "guy" in Frame 23
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 279 MovieClip "clear" in Frame 23
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 24
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 24
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 25
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 91 MovieClip "guy" in Frame 25
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 25
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 279 MovieClip "clear" in Frame 25
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 26
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 26
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 27
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 136 MovieClip in Frame 27
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 91 MovieClip "guy" in Frame 27
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 27
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 279 MovieClip "clear" in Frame 27
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 28
stopAllSounds();
stop();
if (lives == 0) {
_root.gotoAndStop(31);
}
Instance of Symbol 106 MovieClip in Frame 28
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 29
stop();
stop();
if (lives == 0) {
_root.gotoAndStop(2);
}
Instance of Symbol 91 MovieClip "guy" in Frame 29
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
this._x = this._x + 6;
}
}
}
onClipEvent (enterFrame) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(37)) {
this._x = this._x - 6;
}
}
}
onClipEvent (enterFrame) {
if (!_root.ground.hitTest(_x, _y, true)) {
this._y = this._y + 8;
}
}
onClipEvent (load) {
jump = 0;
PR = 0;
}
onClipEvent (enterFrame) {
if (_root.ground.hitTest(_x, _y, true)) {
if ((_currentframe == 1) or (_currentframe == 18)) {
if (Key.isDown(38)) {
this.jump = 1;
_root.jump.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.jump == 1) {
this.PR = 30;
this.jump = 0;
}
}
onClipEvent (enterFrame) {
this._y = this._y - this.PR;
}
onClipEvent (enterFrame) {
if (this.PR >= 0.1) {
if (this.jump == 0) {
this.PR = this.PR - 2;
}
}
}
onClipEvent (enterFrame) {
_root.gun._y = _root.guy._y - 14;
_root.gun._x = _root.guy._x - 0;
}
onClipEvent (enterFrame) {
if (Key.isDown(39)) {
_root.guy.marble._rotation = _root.guy.marble._rotation + 45;
}
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
_root.guy.marble._rotation = _root.guy.marble._rotation - 45;
}
}
Instance of Symbol 269 MovieClip "gun" in Frame 29
onClipEvent (mouseMove) {
Xd = _root._xmouse - _x;
Yd = _root._ymouse - _y;
radAngle = Math.atan2(Yd, Xd);
_rotation = int(((radAngle * 360) / (Math.PI*2)) + 90);
}
Instance of Symbol 136 MovieClip in Frame 29
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 767 MovieClip in Frame 29
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
nextFrame();
}
}
Instance of Symbol 279 MovieClip "clear" in Frame 29
on (press) {
if (_root.gun._currentframe == 1) {
_root.gun.play();
}
}
Frame 30
stopAllSounds();
Frame 31
stopAllSounds();
Frame 32
stop();
Frame 33
stop();
Instance of Symbol 136 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 322 MovieClip in Frame 33
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Frame 34
stop();
Instance of Symbol 298 MovieClip in Frame 34
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Frame 35
stop();
Instance of Symbol 665 MovieClip in Frame 35
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y + 250;
_root.ground._x = _root.ground._x - 350;
_root.item._x = _root.item._x - 350;
_root.snd.gotoAndPlay(2);
}
}
Instance of Symbol 665 MovieClip in Frame 35
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y + 250;
_root.ground._x = _root.ground._x - 350;
_root.item._x = _root.item._x - 350;
_root.snd.gotoAndPlay(2);
}
}
Frame 36
stop();
Instance of Symbol 883 MovieClip in Frame 36
onClipEvent (load) {
_root.code = 0;
}
onClipEvent (enterFrame) {
if (_root.code == 223895) {
_root.gotoAndPlay(37);
}
}
onClipEvent (enterFrame) {
if (_root.code == 772627) {
_root.gotoAndPlay(38);
}
}
onClipEvent (enterFrame) {
if (_root.code == 584485) {
_root.gotoAndPlay(39);
}
}
onClipEvent (enterFrame) {
if (_root.code == 626828) {
_root.gotoAndPlay(40);
}
}
onClipEvent (enterFrame) {
if (_root.code == 1337) {
_root.gotoAndPlay(41);
}
}
Frame 37
stop();
Frame 38
stop();
Frame 39
stop();
Frame 40
stop();
Frame 41
stop();
Symbol 8 Button
on (release) {
_root.play();
}
Symbol 11 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 11 MovieClip Frame 2
gotoAndPlay (1);
Symbol 21 Button
on (release) {
_root.nextFrame();
}
Symbol 26 Button
on (release) {
_root.gotoAndPlay(32);
}
Symbol 29 Button
on (release) {
_root.gotoAndPlay(36);
}
Symbol 36 MovieClip Frame 30
stop();
Symbol 73 MovieClip Frame 1
stop();
Instance of Symbol 59 MovieClip in Symbol 73 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Symbol 73 MovieClip Frame 3
_root.score = _root.score + 30;
Symbol 73 MovieClip Frame 13
stop();
Symbol 89 MovieClip Frame 30
_parent.play();
Symbol 91 MovieClip Frame 1
stop();
Symbol 91 MovieClip Frame 2
play();
Symbol 91 MovieClip Frame 13
_root.prevFrame();
Symbol 91 MovieClip Frame 18
stop();
Symbol 98 Button
on (release) {
_root.nextFrame();
}
Symbol 107 Button
on (release) {
_root.gotoAndStop(31);
}
Instance of Symbol 128 MovieClip in Symbol 130 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_parent.gotoAndPlay(9);
}
}
Symbol 130 MovieClip Frame 8
gotoAndPlay (1);
Symbol 130 MovieClip Frame 15
_root.score = _root.score + 10;
_root.thing = _root.thing + 1;
Symbol 130 MovieClip Frame 16
stop();
Instance of Symbol 128 MovieClip in Symbol 134 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.gotoAndPlay(9);
}
}
Symbol 134 MovieClip Frame 8
gotoAndPlay (1);
Symbol 134 MovieClip Frame 15
_root.score = _root.score + 25;
_root.thing = _root.thing + 1;
Symbol 134 MovieClip Frame 16
stop();
stop();
Symbol 143 MovieClip Frame 1
stop();
Instance of Symbol 59 MovieClip in Symbol 143 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Symbol 143 MovieClip Frame 2
_parent.stop();
Symbol 143 MovieClip Frame 3
_root.score = _root.score + 30;
Symbol 143 MovieClip Frame 13
stop();
Instance of Symbol 143 MovieClip in Symbol 144 MovieClip Frame 101
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Symbol 145 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 2
stop();
_root.GJ.gotoAndPlay(2);
_root.lives = _root.lives + 1;
_root.score = _root.score + 30;
Instance of Symbol 159 MovieClip in Symbol 162 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 163 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Symbol 170 MovieClip Frame 1
stop();
Instance of Symbol 59 MovieClip in Symbol 170 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.play();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Symbol 170 MovieClip Frame 2
_parent.stop();
Symbol 170 MovieClip Frame 3
_root.score = _root.score + 30;
Symbol 170 MovieClip Frame 13
stop();
Symbol 191 MovieClip Frame 1
stop();
Instance of Symbol 177 MovieClip in Symbol 191 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.play();
}
}
Symbol 191 MovieClip Frame 20
stop();
Instance of Symbol 193 MovieClip in Symbol 194 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Symbol 197 MovieClip Frame 1
stop();
Instance of Symbol 57 MovieClip in Symbol 197 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_parent.play();
_root.guy._y = _root.guy._y - 10000;
_root.gun._y = _root.gun._y - 10000;
}
}
Symbol 197 MovieClip Frame 2
_root.GJ.gotoAndPlay(194);
_root.score = _root.score + 5;
Symbol 197 MovieClip Frame 20
_root.nextFrame();
Symbol 205 MovieClip Frame 1
stop();
Instance of Symbol 199 MovieClip in Symbol 205 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_parent.play();
}
}
Symbol 205 MovieClip Frame 2
_root.GJ.gotoAndPlay(97);
Symbol 205 MovieClip Frame 4
_root.score = _root.score + 150;
Symbol 205 MovieClip Frame 15
stop();
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 145 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
nextFrame();
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 216 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 219 MovieClip in Symbol 222 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy._x, _root.guy._y, true)) {
_root.guy._y = _root.guy._y - 7;
}
}
Instance of Symbol 221 MovieClip in Symbol 222 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy.PR = 0;
}
}
Instance of Symbol 225 MovieClip in Symbol 226 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 226 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 20;
}
}
Instance of Symbol 225 MovieClip in Symbol 226 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy.PR = 0;
_root.guy._y = _root.guy._y + 3;
}
}
Instance of Symbol 225 MovieClip in Symbol 226 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
Symbol 260 MovieClip Frame 1
stop();
Instance of Symbol 225 MovieClip in Symbol 260 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 260 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
Symbol 260 MovieClip Frame 2
stop();
Symbol 260 MovieClip Frame 3
stop();
Symbol 260 MovieClip Frame 4
stop();
Symbol 260 MovieClip Frame 5
play();
Symbol 260 MovieClip Frame 6
play();
Symbol 260 MovieClip Frame 7
play();
Symbol 260 MovieClip Frame 8
play();
Symbol 260 MovieClip Frame 9
play();
Symbol 260 MovieClip Frame 10
play();
Symbol 260 MovieClip Frame 11
play();
Symbol 260 MovieClip Frame 12
play();
Symbol 260 MovieClip Frame 13
play();
Symbol 260 MovieClip Frame 14
play();
Symbol 260 MovieClip Frame 15
play();
Symbol 260 MovieClip Frame 16
play();
Symbol 260 MovieClip Frame 17
play();
Symbol 260 MovieClip Frame 18
play();
Symbol 260 MovieClip Frame 19
play();
Symbol 260 MovieClip Frame 20
play();
Symbol 260 MovieClip Frame 21
play();
Symbol 260 MovieClip Frame 22
play();
Symbol 260 MovieClip Frame 23
play();
Symbol 260 MovieClip Frame 24
play();
Symbol 260 MovieClip Frame 25
play();
Symbol 260 MovieClip Frame 26
play();
Symbol 260 MovieClip Frame 27
play();
Symbol 260 MovieClip Frame 28
play();
Symbol 260 MovieClip Frame 29
play();
Symbol 260 MovieClip Frame 30
play();
Symbol 260 MovieClip Frame 31
play();
Symbol 260 MovieClip Frame 39
stop();
Instance of Symbol 260 MovieClip in Symbol 261 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
this.nextFrame();
}
}
Symbol 269 MovieClip Frame 1
stop();
stop();
Symbol 272 MovieClip Frame 1
stop();
Symbol 275 MovieClip Frame 1
stop();
Symbol 275 MovieClip Frame 2
stop();
_root.guy.gotoAndPlay(18);
Symbol 275 MovieClip Frame 3
stop();
_root.guy.gotoAndPlay(18);
Symbol 275 MovieClip Frame 4
stop();
_root.guy.gotoAndPlay(2);
_root.lives = _root.lives - 1;
Symbol 298 MovieClip Frame 1
stop();
stop();
stop();
stop();
stop();
Instance of Symbol 296 MovieClip in Symbol 298 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.play();
}
}
Symbol 298 MovieClip Frame 25
stop();
stop();
stop();
stop();
stop();
Instance of Symbol 296 MovieClip in Symbol 298 MovieClip Frame 25
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
play();
}
}
Symbol 320 MovieClip Frame 1
stop();
Instance of Symbol 306 MovieClip in Symbol 320 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.nextFrame();
}
}
Symbol 320 MovieClip Frame 2
stop();
Symbol 320 MovieClip Frame 3
stop();
Symbol 320 MovieClip Frame 4
stop();
Symbol 320 MovieClip Frame 5
play();
Symbol 320 MovieClip Frame 13
_root.ground.doorton.nextFrame();
Symbol 320 MovieClip Frame 20
stop();
Symbol 328 MovieClip Frame 1
stop();
Instance of Symbol 327 MovieClip in Symbol 328 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_parent.play();
}
}
Symbol 328 MovieClip Frame 2
_root.shield.gotoAndStop(1);
Instance of Symbol 327 MovieClip in Symbol 328 MovieClip Frame 2
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
play();
}
}
Symbol 328 MovieClip Frame 19
stop();
Instance of Symbol 136 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 145 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
nextFrame();
}
}
Instance of Symbol 294 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 298 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 300 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
if (this._yscale >= 0) {
this._yscale = this._yscale - 35;
}
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 400) {
this._yscale = this._yscale + 1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 294 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 294 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 322 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 325 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 294 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 322 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 329 MovieClip in Symbol 330 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Symbol 338 MovieClip Frame 1
stop();
Instance of Symbol 225 MovieClip in Symbol 338 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 338 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
Symbol 338 MovieClip Frame 2
play();
Symbol 338 MovieClip Frame 27
stop();
Symbol 341 MovieClip Frame 1
_root.shield.gotoAndStop(2);
Symbol 341 MovieClip Frame 2
_root.guy.gotoAndStop(1);
Symbol 341 MovieClip Frame 3
stop();
Instance of Symbol 350 MovieClip in Symbol 351 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 354 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 356 MovieClip in Symbol 357 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Symbol 372 MovieClip Frame 1
stop();
Symbol 372 MovieClip Frame 9
play();
_parent.gotoAndStop(52);
Symbol 372 MovieClip Frame 10
_root.score = _root.score + 60;
play();
Symbol 372 MovieClip Frame 11
play();
Symbol 372 MovieClip Frame 12
play();
Symbol 372 MovieClip Frame 13
play();
Symbol 372 MovieClip Frame 14
play();
Symbol 372 MovieClip Frame 15
play();
Symbol 372 MovieClip Frame 19
play();
Symbol 372 MovieClip Frame 20
stop();
Instance of Symbol 372 MovieClip in Symbol 376 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
nextFrame();
}
}
Instance of Symbol 374 MovieClip in Symbol 376 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 375 MovieClip in Symbol 376 MovieClip Frame 15
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Symbol 394 MovieClip Frame 1
stop();
Instance of Symbol 378 MovieClip in Symbol 394 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.play();
}
}
Symbol 394 MovieClip Frame 36
stop();
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 395 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 396 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 397 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 298 MovieClip in Symbol 398 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 398 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 145 MovieClip in Symbol 398 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
nextFrame();
}
}
Instance of Symbol 136 MovieClip in Symbol 398 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 398 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 398 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 398 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 397 MovieClip in Symbol 398 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 226 MovieClip in Symbol 399 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 3;
_root.item._x = _root.item._x - 3;
}
}
Instance of Symbol 226 MovieClip in Symbol 399 MovieClip Frame 150
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 3;
_root.item._x = _root.item._x + 3;
}
}
Instance of Symbol 226 MovieClip in Symbol 399 MovieClip Frame 300
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 3;
_root.item._x = _root.item._x - 3;
}
}
Symbol 404 MovieClip Frame 1
stop();
Instance of Symbol 402 MovieClip in Symbol 404 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_parent.nextFrame();
}
}
Instance of Symbol 225 MovieClip in Symbol 404 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
}
}
Instance of Symbol 225 MovieClip in Symbol 404 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
}
}
Symbol 404 MovieClip Frame 2
stop();
_root.ground.door.nextFrame();
Instance of Symbol 260 MovieClip in Symbol 405 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
this.nextFrame();
}
}
Instance of Symbol 356 MovieClip in Symbol 431 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 436 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 436 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 436 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 436 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 436 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 436 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 298 MovieClip in Symbol 437 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 437 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 437 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 437 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 437 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 260 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
this.nextFrame();
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 5;
}
}
}
Instance of Symbol 439 MovieClip in Symbol 440 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 5;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 447 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 447 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 294 MovieClip in Symbol 447 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 145 MovieClip in Symbol 447 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
nextFrame();
}
}
Instance of Symbol 294 MovieClip in Symbol 447 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 294 MovieClip in Symbol 447 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 260 MovieClip in Symbol 448 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
this.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Symbol 448 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
this.nextFrame();
}
}
Instance of Symbol 439 MovieClip in Symbol 448 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 5;
}
}
}
Symbol 486 MovieClip Frame 1
stop();
Instance of Symbol 225 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 486 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Symbol 486 MovieClip Frame 2
play();
Symbol 486 MovieClip Frame 31
stop();
Symbol 486 MovieClip Frame 60
stop();
Symbol 486 MovieClip Frame 90
stop();
Instance of Symbol 488 MovieClip in Symbol 489 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 488 MovieClip in Symbol 489 MovieClip Frame 55
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Symbol 496 MovieClip Frame 1
stop();
Instance of Symbol 496 MovieClip in Symbol 497 MovieClip Frame 1
/* no clip actions */
Instance of Symbol 497 MovieClip in Symbol 499 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.gotoAndPlay(42);
}
}
Instance of Symbol 497 MovieClip in Symbol 499 MovieClip Frame 20
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.gotoAndPlay(42);
}
}
Symbol 499 MovieClip Frame 40
gotoAndPlay (1);
Symbol 499 MovieClip Frame 44
_root.score = _root.score + 25;
Symbol 499 MovieClip Frame 80
stop();
Instance of Symbol 136 MovieClip in Symbol 500 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 500 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 500 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 486 MovieClip in Symbol 500 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
this.play();
}
}
Instance of Symbol 298 MovieClip in Symbol 500 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 491 MovieClip in Symbol 500 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 491 MovieClip in Symbol 500 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 225 MovieClip in Symbol 503 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 503 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 503 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 20;
}
}
Instance of Symbol 225 MovieClip in Symbol 503 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy.PR = 0;
}
}
Instance of Symbol 225 MovieClip in Symbol 505 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 505 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 505 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy.PR = 0;
}
}
Instance of Symbol 225 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 510 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 136 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 486 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
this.play();
}
}
Instance of Symbol 491 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 491 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 294 MovieClip in Symbol 519 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 145 MovieClip in Symbol 520 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
nextFrame();
}
}
Instance of Symbol 322 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 325 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 294 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 322 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 300 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
if (this._yscale >= 0) {
this._yscale = this._yscale - 35;
}
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 400) {
this._yscale = this._yscale + 1;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 325 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 294 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 536 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 325 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 294 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 322 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 325 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 322 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 294 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 8;
_root.guy.jump = 0;
_root.guy.PR = 0;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(40)) {
_root.guy._y = _root.guy._y + 3;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (Key.isDown(38)) {
_root.guy._y = _root.guy._y - 3;
}
}
}
Instance of Symbol 579 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 579 MovieClip in Symbol 580 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 225 MovieClip in Symbol 581 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy.PR = 0;
_root.guy._y = _root.guy._y + 5;
}
}
Symbol 583 MovieClip Frame 1
_root.shield.gotoAndStop(3);
Symbol 583 MovieClip Frame 2
_root.guy.gotoAndStop(1);
Symbol 583 MovieClip Frame 3
stop();
Symbol 629 MovieClip Frame 1
stop();
Symbol 634 MovieClip Frame 1
stop();
Instance of Symbol 629 MovieClip in Symbol 634 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.play();
}
}
Symbol 634 MovieClip Frame 6
stop();
Instance of Symbol 136 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 579 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 322 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 322 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 322 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 322 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 325 MovieClip in Symbol 636 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Symbol 646 MovieClip Frame 1101
_root.guy.gotoAndPlay(2);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
Instance of Symbol 667 MovieClip in Symbol 668 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 664 MovieClip in Symbol 672 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Symbol 679 MovieClip Frame 1
stop();
Instance of Symbol 59 MovieClip in Symbol 679 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
if (_parent.ham1._currentframe == 80) {
if (_parent.ham2._currentframe == 80) {
_parent.play();
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Symbol 679 MovieClip Frame 2
_parent.stop();
Symbol 679 MovieClip Frame 3
_root.score = _root.score + 30;
Symbol 679 MovieClip Frame 13
stop();
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 665 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 250;
_root.item._x = _root.item._x - 250;
_root.snd.gotoAndPlay(2);
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 665 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 250;
_root.ground._x = _root.ground._x + 1150;
_root.item._x = _root.item._x + 1150;
_root.snd.gotoAndPlay(2);
}
}
Instance of Symbol 665 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y + 250;
_root.ground._x = _root.ground._x - 350;
_root.item._x = _root.item._x - 350;
_root.snd.gotoAndPlay(2);
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 681 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Symbol 683 MovieClip Frame 1
stop();
Symbol 683 MovieClip Frame 3
stop();
Instance of Symbol 225 MovieClip in Symbol 685 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 685 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
Symbol 687 MovieClip Frame 1
stop();
Instance of Symbol 685 MovieClip in Symbol 687 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
_parent.play();
}
}
Symbol 687 MovieClip Frame 41
stop();
Symbol 695 MovieClip Frame 1
stop();
Instance of Symbol 225 MovieClip in Symbol 695 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x + 6;
_root.item._x = _root.item._x + 6;
_root.back._x = _root.back._x + 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 695 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Symbol 695 MovieClip Frame 2
stop();
Symbol 695 MovieClip Frame 3
stop();
Symbol 695 MovieClip Frame 4
stop();
Symbol 695 MovieClip Frame 79
stop();
Instance of Symbol 225 MovieClip in Symbol 696 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 696 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 696 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 696 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 695 MovieClip in Symbol 696 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
play();
}
}
Instance of Symbol 695 MovieClip in Symbol 696 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
play();
}
}
Instance of Symbol 667 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 665 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 700;
_root.item._x = _root.item._x - 700;
_root.snd.gotoAndPlay(2);
}
}
Instance of Symbol 665 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 250;
_root.ground._x = _root.ground._x + 1150;
_root.item._x = _root.item._x + 1150;
_root.snd.gotoAndPlay(2);
}
}
Instance of Symbol 665 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y + 250;
_root.ground._x = _root.ground._x - 350;
_root.item._x = _root.item._x - 350;
_root.snd.gotoAndPlay(2);
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 707 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 225 MovieClip in Symbol 709 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 709 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 709 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 225 MovieClip in Symbol 709 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.ground._x = _root.ground._x - 6;
_root.item._x = _root.item._x - 6;
_root.back._x = _root.back._x - 0.3;
}
}
Instance of Symbol 695 MovieClip in Symbol 709 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
play();
}
}
Instance of Symbol 695 MovieClip in Symbol 709 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.gun.two)) {
play();
}
}
Instance of Symbol 136 MovieClip in Symbol 727 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 727 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 727 MovieClip Frame 98
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 136 MovieClip in Symbol 727 MovieClip Frame 98
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.guy.gotoAndPlay(2);
(_root.items._x = _root.items._x + 10);
(_root.gun._x = _root.gun._x + 10);
_root.lives = _root.lives - 1;
}
}
}
Instance of Symbol 225 MovieClip in Symbol 729 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._x = _root.guy._x + 6;
}
}
Instance of Symbol 225 MovieClip in Symbol 729 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._y = _root.guy._y - 20;
}
}
Instance of Symbol 225 MovieClip in Symbol 729 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy.PR = 0;
_root.guy._y = _root.guy._y + 3;
}
}
Instance of Symbol 225 MovieClip in Symbol 729 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._x = _root.guy._x - 6;
}
}
Instance of Symbol 225 MovieClip in Symbol 730 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._x = _root.guy._x - 6;
}
}
Instance of Symbol 225 MovieClip in Symbol 730 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
_root.guy._x = _root.guy._x + 6;
}
}
Symbol 735 MovieClip Frame 1
stop();
Symbol 744 MovieClip Frame 1
stop();
Symbol 744 MovieClip Frame 8
stop();
Symbol 767 MovieClip Frame 1
stop();
Instance of Symbol 744 MovieClip "une" in Symbol 767 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_root.thing == 6) {
nextFrame();
}
}
Symbol 767 MovieClip Frame 7
_root.score = _root.score + 100;
Symbol 767 MovieClip Frame 16
_root.score = _root.score + 100;
Symbol 767 MovieClip Frame 27
_root.score = _root.score + 100;
Symbol 767 MovieClip Frame 38
_root.score = _root.score + 100;
Symbol 767 MovieClip Frame 48
_root.score = _root.score + 100;
Symbol 767 MovieClip Frame 57
_root.score = _root.score + 100;
Symbol 767 MovieClip Frame 61
play();
Symbol 767 MovieClip Frame 64
play();
play();
Symbol 767 MovieClip Frame 65
play();
Symbol 767 MovieClip Frame 66
play();
Symbol 767 MovieClip Frame 67
play();
Symbol 767 MovieClip Frame 68
play();
Symbol 767 MovieClip Frame 69
play();
Symbol 767 MovieClip Frame 70
play();
play();
Symbol 767 MovieClip Frame 71
play();
Symbol 767 MovieClip Frame 72
play();
Symbol 767 MovieClip Frame 73
play();
Symbol 767 MovieClip Frame 74
play();
Symbol 767 MovieClip Frame 75
play();
Symbol 767 MovieClip Frame 76
play();
Symbol 767 MovieClip Frame 77
play();
Symbol 767 MovieClip Frame 78
play();
Symbol 767 MovieClip Frame 79
play();
Symbol 767 MovieClip Frame 80
_root.score = _root.score + 500;
play();
Symbol 767 MovieClip Frame 81
play();
play();
Symbol 767 MovieClip Frame 82
play();
Symbol 767 MovieClip Frame 83
play();
Symbol 767 MovieClip Frame 84
play();
Symbol 767 MovieClip Frame 85
play();
Symbol 767 MovieClip Frame 86
play();
Symbol 767 MovieClip Frame 87
play();
Symbol 767 MovieClip Frame 88
play();
Symbol 767 MovieClip Frame 89
play();
Symbol 767 MovieClip Frame 90
play();
Symbol 767 MovieClip Frame 91
_root.nextFrame();
Symbol 783 Button
on (release) {
stopAllSounds();
_root.gotoAndStop(2);
}
Instance of Symbol 354 MovieClip in Symbol 847 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.guy)) {
if (_root.guy._currentframe == 1) {
_root.shield.nextFrame();
}
}
}
Symbol 887 Button
on (release) {
_root.gotoAndStop(10);
}
Symbol 890 Button
on (release) {
_root.gotoAndStop(8);
}
Symbol 891 Button
on (release) {
_root.gotoAndStop(6);
}
Symbol 892 Button
on (release) {
_root.gotoAndStop(4);
}
Symbol 895 Button
on (release) {
_root.gotoAndStop(14);
}
Symbol 896 Button
on (release) {
_root.gotoAndStop(12);
}
Symbol 899 Button
on (release) {
_root.gotoAndStop(18);
}
Symbol 900 Button
on (release) {
_root.gotoAndStop(16);
}
Symbol 905 Button
on (release) {
_root.gotoAndStop(24);
}
Symbol 906 Button
on (release) {
_root.gotoAndStop(22);
}
Symbol 907 Button
on (release) {
_root.gotoAndStop(20);
}
Symbol 910 Button
on (release) {
_root.gotoAndStop(28);
}
Symbol 911 Button
on (release) {
_root.gotoAndStop(26);
}