Frame 1
stopAllSounds();
_root.bytesLoaded = _root.getBytesLoaded();
_root.bytesTotal = _root.getBytesTotal();
_root.percentLoaded = Math.round(100 * (_root.bytesLoaded / _root.bytesTotal));
_root.percentLoadedText = _root.percentLoaded + "%";
_root.bar.gotoAndStop(percentLoaded);
Frame 2
if (_root.percentLoaded == 100) {
gotoAndPlay (3);
} else {
gotoAndPlay (1);
}
Frame 3
stop();
Frame 4
Stage.showMenu = false;
Mouse.hide();
Instance of Symbol 39 MovieClip in Frame 4
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
}
Frame 5
Stage.showMenu = false;
Mouse.hide();
stopAllSounds();
Instance of Symbol 39 MovieClip in Frame 5
onClipEvent (enterFrame) {
this._x = _root._xmouse;
this._y = _root._ymouse;
}
Frame 35
stop();
Frame 37
function __com_mochibot__(swfid, mc, lv) {
var x;
var g;
var s;
var fv;
var sb;
var u;
var res;
var mb;
var mbc;
mb = "__mochibot__";
mbc = "mochibot.com";
g = (_global ? (_global) : (_level0._root));
if (g[mb + swfid]) {
return(g[mb + swfid]);
}
s = System.security;
x = mc._root.getSWFVersion;
fv = (x ? (mc.getSWFVersion()) : ((_global ? 6 : 5)));
if (!s) {
s = {};
}
sb = s.sandboxType;
if (sb == "localWithFile") {
return(null);
}
x = s.allowDomain;
if (x) {
s.allowDomain(mbc);
}
x = s.allowInsecureDomain;
if (x) {
s.allowInsecureDomain(mbc);
}
u = ((((((((((("http://" + mbc) + "/my/core.swf?mv=5&fv=") + fv) + "&v=") + escape(getVersion())) + "&swfid=") + escape(swfid)) + "&l=") + lv) + "&f=") + mc) + (sb ? ("&sb=" + sb) : "");
lv = ((fv > 6) ? (mc.getNextHighestDepth()) : ((g[mb + "level"] ? (g[mb + "level"] + 1) : (lv))));
g[mb + "level"] = lv;
if (fv == 5) {
res = "_level" + lv;
if (!eval (res)) {
loadMovieNum (u, lv);
}
} else {
res = mc.createEmptyMovieClip(mb + swfid, lv);
res.loadMovie(u);
}
return(res);
}
__com_mochibot__("d579fa7a", this, 10301);
_global.l = 3;
_global.cd = 100;
lives = _global.l;
Mouse.show();
Instance of Symbol 90 MovieClip in Frame 37
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 37
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 68 MovieClip in Frame 37
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 37
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 37
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.aqua._x;
_root.player._y = _root.aqua._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 37
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 252;
_global.starty = 432;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 38
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (40);
}
if (_global.cd < 5) {
gotoAndStop (41);
}
Frame 39
gotoAndPlay (38);
Frame 40
lives = 0;
Frame 41
Frame 42
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 90 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 42
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 42
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 432;
_global.starty = 432;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 43
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (45);
}
if (_global.cd < 5) {
gotoAndStop (46);
}
Frame 44
gotoAndPlay (43);
Frame 45
lives = 0;
Frame 47
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 70 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.aqua._x;
_root.player._y = _root.aqua._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.p._x;
_root.player._y = _root.p._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.r._x;
_root.player._y = _root.r._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 47
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.yl._x;
_root.player._y = _root.yl._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 47
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 225;
_global.starty = 225;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 48
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (50);
}
if (_global.cd < 5) {
gotoAndStop (51);
}
Frame 49
gotoAndPlay (48);
Frame 50
lives = 0;
Frame 52
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 90 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.aqua._x;
_root.player._y = _root.aqua._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 52
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.yl._x;
_root.player._y = _root.yl._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 52
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 18;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 53
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (55);
}
if (_global.cd < 5) {
gotoAndStop (56);
}
Frame 54
gotoAndPlay (53);
Frame 55
lives = 0;
Frame 57
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 70 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 74 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed - 10;
_global.xspeed = _global.xspeed - 10;
}
}
Instance of Symbol 74 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed - 10;
}
}
Instance of Symbol 74 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed + 10;
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed - 10;
}
}
Instance of Symbol 74 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed - 10;
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 57
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed + 10;
_global.xspeed = _global.xspeed - 10;
}
}
Instance of Symbol 101 MovieClip "player" in Frame 57
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 18;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 58
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (60);
}
if (_global.cd < 5) {
gotoAndStop (61);
}
Frame 59
gotoAndPlay (58);
Frame 60
lives = 0;
Frame 62
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 62
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 62
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 432;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 63
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (65);
}
if (_global.cd < 5) {
gotoAndStop (66);
}
Frame 64
gotoAndPlay (63);
Frame 65
lives = 0;
Frame 67
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 168 MovieClip in Frame 67
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.wall._visible = true;
_root.dbin._visible = true;
}
}
Instance of Symbol 90 MovieClip "wall" in Frame 67
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 67
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 67
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 67
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 67
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 67
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 67
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip "dbin" in Frame 67
onClipEvent (enterFrame) {
this._visible = false;
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 67
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 108;
_global.starty = 432;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 68
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (70);
}
if (_global.cd < 5) {
gotoAndStop (71);
}
Frame 69
gotoAndPlay (68);
Frame 70
lives = 0;
Frame 72
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 90 MovieClip "wall" in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed - 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.yspeed = _global.yspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed - 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed - 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 74 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (this.hitTest(_root.player._x, _root.player._y, true)) {
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 68 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 72
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.aqua._x;
_root.player._y = _root.aqua._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 72
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 36;
_global.starty = 36;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 73
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (75);
}
if (_global.cd < 5) {
gotoAndStop (76);
}
Frame 74
gotoAndPlay (73);
Frame 75
lives = 0;
Frame 77
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 90 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 77
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 77
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 14;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 78
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (80);
}
if (_global.cd < 5) {
gotoAndStop (81);
}
Frame 79
gotoAndPlay (78);
Frame 80
lives = 0;
Frame 82
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 90 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 188 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 80 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 80 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 188 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.p._x;
_root.player._y = _root.p._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 82
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.yl._x;
_root.player._y = _root.yl._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 82
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 36;
_global.starty = 36;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 83
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (85);
}
if (_global.cd < 5) {
gotoAndStop (86);
}
Frame 84
gotoAndPlay (83);
Frame 85
lives = 0;
Frame 87
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 70 MovieClip in Frame 87
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 87
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 72 MovieClip in Frame 87
onClipEvent (enterFrame) {
_global.xspeed = _global.xspeed + ((this._x - _root.player._x) / 100);
_global.yspeed = _global.yspeed + ((this._y - _root.player._y) / 100);
}
Instance of Symbol 101 MovieClip "player" in Frame 87
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 414;
_global.starty = 414;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 88
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (90);
}
if (_global.cd < 5) {
gotoAndStop (91);
}
Frame 89
gotoAndPlay (88);
Frame 90
lives = 0;
Frame 92
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 90 MovieClip in Frame 92
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 72 MovieClip in Frame 92
onClipEvent (enterFrame) {
_global.xspeed = _global.xspeed + ((this._x - _root.player._x) / 100);
_global.yspeed = _global.yspeed + ((this._y - _root.player._y) / 100);
}
Instance of Symbol 72 MovieClip in Frame 92
onClipEvent (enterFrame) {
_global.xspeed = _global.xspeed + ((this._x - _root.player._x) / 100);
_global.yspeed = _global.yspeed + ((this._y - _root.player._y) / 100);
}
Instance of Symbol 72 MovieClip in Frame 92
onClipEvent (enterFrame) {
_global.xspeed = _global.xspeed + ((this._x - _root.player._x) / 100);
_global.yspeed = _global.yspeed + ((this._y - _root.player._y) / 100);
}
Instance of Symbol 72 MovieClip in Frame 92
onClipEvent (enterFrame) {
_global.xspeed = _global.xspeed + ((this._x - _root.player._x) / 100);
_global.yspeed = _global.yspeed + ((this._y - _root.player._y) / 100);
}
Instance of Symbol 68 MovieClip in Frame 92
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.r._x;
_root.player._y = _root.r._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 92
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 225;
_global.starty = 225;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 93
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (95);
}
if (_global.cd < 5) {
gotoAndStop (96);
}
Frame 94
gotoAndPlay (93);
Frame 95
lives = 0;
Frame 97
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 188 MovieClip in Frame 97
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 80 MovieClip in Frame 97
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 188 MovieClip in Frame 97
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 80 MovieClip in Frame 97
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 188 MovieClip in Frame 97
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 97
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 80 MovieClip in Frame 97
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._alpha = _root.player._alpha - 100;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 97
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 101 MovieClip "player" in Frame 97
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 225;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 98
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (100);
}
if (_global.cd < 5) {
gotoAndStop (101);
}
Frame 99
gotoAndPlay (98);
Frame 100
lives = 0;
Frame 102
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 68 MovieClip "dbin" in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip "db" in Frame 102
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 168 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.db._visible = true;
_root.dbin._x = 414;
}
}
Instance of Symbol 90 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 90 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 68 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.aqua._x;
_root.player._y = _root.aqua._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.r._x;
_root.player._y = _root.r._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.yl._x;
_root.player._y = _root.yl._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 102
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 102
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 36;
_global.starty = 414;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 103
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (105);
}
if (_global.cd < 5) {
gotoAndStop (106);
}
Frame 104
gotoAndPlay (103);
Frame 105
lives = 0;
Frame 107
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 68 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.aqua._x;
_root.player._y = _root.aqua._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.yl._x;
_root.player._y = _root.yl._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 107
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 107
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 396;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 108
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (110);
}
if (_global.cd < 5) {
gotoAndStop (111);
}
Frame 109
gotoAndPlay (108);
Frame 110
lives = 0;
Frame 112
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.aqua._x;
_root.player._y = _root.aqua._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.p._x;
_root.player._y = _root.p._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 72 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player._y < 163) {
_global.xspeed = _global.xspeed + ((this._x - _root.player._x) / 100);
_global.yspeed = _global.yspeed + ((this._y - _root.player._y) / 100);
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 112
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 112
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 396;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 113
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (115);
}
if (_global.cd < 5) {
gotoAndStop (116);
}
Frame 114
gotoAndPlay (113);
Frame 115
lives = 0;
Frame 117
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_global.startx = _root.db._x;
_global.starty = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 68 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.r._x;
_root.player._y = _root.r._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 117
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 117
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 18;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 118
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (120);
}
if (_global.cd < 5) {
gotoAndStop (121);
}
Frame 119
gotoAndPlay (118);
Frame 120
lives = 0;
Frame 122
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 74 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_global.yspeed = _global.yspeed + 10;
_global.xspeed = _global.xspeed + 10;
}
}
Instance of Symbol 68 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.yl._x;
_root.player._y = _root.yl._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 122
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 122
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 396;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 123
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (125);
}
if (_global.cd < 5) {
gotoAndStop (126);
}
Frame 124
gotoAndPlay (123);
Frame 125
lives = 0;
Frame 127
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 68 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.aqua._x;
_root.player._y = _root.aqua._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 127
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 127
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 18;
_global.starty = 18;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 128
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (130);
}
if (_global.cd < 5) {
gotoAndStop (131);
}
Frame 129
gotoAndPlay (128);
Frame 130
lives = 0;
Frame 132
_global.l = 3;
_global.cd = 100;
lives = _global.l;
play();
Instance of Symbol 90 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 90 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
}
Instance of Symbol 68 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.db._x;
_root.player._y = _root.db._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.p._x;
_root.player._y = _root.p._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 68 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.r._x;
_root.player._y = _root.r._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 70 MovieClip in Frame 132
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_global.l = _global.l - 1;
_root.player._x = startx;
_root.player._y = starty;
_root.player._alpha = 100;
_global.xspeed = 0;
_global.yspeed = 0;
}
}
}
Instance of Symbol 101 MovieClip "player" in Frame 132
onClipEvent (load) {
_global.yspeed = 0;
_global.xspeed = 0;
_global.startx = 72;
_global.starty = 432;
}
onClipEvent (enterFrame) {
if (this._y > 450) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._y < 0) {
_global.yspeed = _global.yspeed * -1;
_root.player._y = _root.player._y + (_global.yspeed * 1.1);
}
if (this._x > 450) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (this._x < 0) {
_global.xspeed = _global.xspeed * -1;
_root.player._x = _root.player._x + (_global.xspeed * 1.1);
}
if (Key.isDown(38)) {
_global.yspeed = _global.yspeed - 1;
}
if (Key.isDown(40)) {
_global.yspeed = _global.yspeed + 1;
}
if (_global.yspeed > 10) {
_global.yspeed = 10;
}
if (_global.yspeed < -10) {
_global.yspeed = -10;
}
if (Key.isDown(37)) {
_global.xspeed = _global.xspeed - 1;
}
if (Key.isDown(39)) {
_global.xspeed = _global.xspeed + 1;
}
if (_global.xspeed > 10) {
_global.xspeed = 10;
}
if (_global.xspeed < -10) {
_global.xspeed = -10;
}
_global.xspeed = _global.xspeed * 0.99;
_global.yspeed = _global.yspeed * 0.99;
this._y = this._y + _global.yspeed;
this._x = this._x + _global.xspeed;
}
Frame 133
lives = _global.l;
if (_global.l < 0) {
_global.l = 0;
gotoAndStop (135);
}
if (_global.cd < 5) {
gotoAndStop (136);
}
Frame 134
gotoAndPlay (133);
Frame 135
lives = 0;
Symbol 20 Button
on (release) {
getURL ("http://www.armorgames.com", "blank");
}
Symbol 27 MovieClip Frame 81
_root.play();
_root.play();
Symbol 36 Button
on (release) {
_root.play();
}
Symbol 37 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
setProperty(bar, _xscale , PercentLoaded);
} else {
gotoAndStop ("loaded");
}
Symbol 37 MovieClip Frame 2
gotoAndPlay (1);
Symbol 45 Button
on (press) {
_root.play();
}
Symbol 46 MovieClip Frame 10
stop();
Symbol 50 Button
on (release) {
gotoAndStop (20);
}
Symbol 57 Button
on (release) {
gotoAndStop (19);
}
Symbol 58 MovieClip Frame 19
stop();
Symbol 63 Button
on (release) {
gotoAndStop (16);
}
Symbol 82 Button
on (release) {
gotoAndStop (15);
}
Symbol 83 MovieClip Frame 15
stop();
Instance of Symbol 68 MovieClip in Symbol 83 MovieClip Frame 16
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_root.player._alpha = _root.player._alpha - 5;
if (_root.player._alpha < 5) {
_root.player._x = _root.dg._x;
_root.player._y = _root.dg._y;
_root.player._alpha = 100;
}
}
}
Instance of Symbol 72 MovieClip in Symbol 83 MovieClip Frame 16
onClipEvent (enterFrame) {
_global.xspeed = _global.xspeed + ((this._x - _root.player._x) / 100);
_global.yspeed = _global.yspeed + ((this._y - _root.player._y) / 100);
}
Instance of Symbol 74 MovieClip in Symbol 83 MovieClip Frame 16
onClipEvent (enterFrame) {
if (_root.player.hitTest(this)) {
_global.xspeed = _global.xspeed + 10;
}
}
Symbol 87 Button
on (release) {
getURL ("http://www.armorgames.com/", "_blank");
}
Symbol 93 MovieClip Frame 1
if (_root.player.hitTest(this)) {
_root.player._x = this._x;
_root.player._y = this._y;
_global.xspeed = 0;
_global.yspeed = 0;
this.gotoAndPlay(3);
}
Symbol 93 MovieClip Frame 2
gotoAndPlay (1);
Symbol 93 MovieClip Frame 3
_global.cd = _global.cd - 5;
_root.player._alpha = _root.player._alpha - 5;
_root.player._x = this._x;
_root.player._y = this._y;
_global.xspeed = 0;
_global.yspeed = 0;
if (_root.player._alpha < 1) {
this.gotoAndPlay(1);
}
Symbol 93 MovieClip Frame 4
gotoAndPlay (3);
Symbol 106 Button
on (release) {
gotoAndStop (2);
}
Symbol 110 Button
on (release) {
gotoAndStop (1);
}
Symbol 112 MovieClip Frame 1
stop();
Instance of Symbol 108 MovieClip in Symbol 112 MovieClip Frame 1
onClipEvent (enterFrame) {
if (Key.isDown(81)) {
toggleHighQuality();
}
}
Symbol 114 Button
on (release) {
gotoAndPlay (5);
}
Symbol 117 MovieClip Frame 9
stop();
Symbol 121 Button
on (release) {
gotoAndPlay (37);
}
Symbol 126 MovieClip Frame 9
stop();
Symbol 129 Button
on (release) {
gotoAndStop (42);
}
Symbol 135 Button
on (release) {
gotoAndPlay (42);
}
Symbol 136 Button
on (release) {
gotoAndStop (47);
}
Symbol 146 Button
on (release) {
gotoAndPlay (47);
}
Symbol 147 Button
on (release) {
gotoAndStop (52);
}
Symbol 157 Button
on (release) {
gotoAndPlay (52);
}
Symbol 158 Button
on (release) {
gotoAndStop (57);
}
Symbol 160 Button
on (release) {
gotoAndPlay (57);
}
Symbol 161 Button
on (release) {
gotoAndStop (62);
}
Symbol 165 Button
on (release) {
gotoAndPlay (62);
}
Symbol 166 Button
on (release) {
gotoAndStop (67);
}
Symbol 170 Button
on (release) {
gotoAndPlay (67);
}
Symbol 171 Button
on (release) {
gotoAndStop (72);
}
Symbol 179 Button
on (release) {
gotoAndPlay (72);
}
Symbol 180 Button
on (release) {
gotoAndStop (77);
}
Symbol 186 Button
on (release) {
gotoAndPlay (77);
}
Symbol 187 Button
on (release) {
gotoAndStop (82);
}
Symbol 194 Button
on (release) {
gotoAndPlay (82);
}
Symbol 195 Button
on (release) {
gotoAndStop (87);
}
Symbol 197 Button
on (release) {
gotoAndPlay (87);
}
Symbol 198 Button
on (release) {
gotoAndStop (92);
}
Instance of Symbol 72 MovieClip in Symbol 199 MovieClip Frame 1
onClipEvent (enterFrame) {
_global.xspeed = _global.xspeed + ((this._x - _root.player._x) / 100);
_global.yspeed = _global.yspeed + ((this._y - _root.player._y) / 100);
}
Symbol 203 Button
on (release) {
gotoAndPlay (92);
}
Symbol 204 Button
on (release) {
gotoAndStop (97);
}
Symbol 206 Button
on (release) {
gotoAndPlay (97);
}
Symbol 207 Button
on (release) {
gotoAndStop (102);
}
Symbol 217 Button
on (release) {
gotoAndPlay (102);
}
Symbol 218 Button
on (release) {
gotoAndStop (107);
}
Symbol 223 Button
on (release) {
gotoAndPlay (107);
}
Symbol 224 Button
on (release) {
gotoAndStop (112);
}
Symbol 230 Button
on (release) {
gotoAndPlay (112);
}
Symbol 231 Button
on (release) {
gotoAndStop (117);
}
Symbol 236 Button
on (release) {
gotoAndPlay (117);
}
Symbol 237 Button
on (release) {
gotoAndStop (122);
}
Symbol 243 Button
on (release) {
gotoAndPlay (122);
}
Symbol 244 Button
on (release) {
gotoAndStop (127);
}
Symbol 248 Button
on (release) {
gotoAndPlay (127);
}
Symbol 249 Button
on (release) {
gotoAndStop (132);
}
Symbol 257 Button
on (release) {
gotoAndPlay (132);
}
Symbol 258 Button
on (release) {
gotoAndPlay (5);
}