Frame 1
function itemHandler2(obj, item) {
getURL ("mailto:glaielgamesmail@comcast.net", "_blank");
}
function itemHandler3(obj, item) {
getURL ("http://www.glaielgames.com", "_blank");
}
function itemHandler4(obj, item) {
getURL ("http://www.gamesofgondor.com", "_blank");
}
function itemHandler5(obj, item) {
_quality = "high";
}
function itemHandler6(obj, item) {
_quality = "medium";
}
function itemHandler7(obj, item) {
_quality = "low";
}
stop();
root_cm = new ContextMenu();
root_cm.hideBuiltInItems();
bbb_cmi = new ContextMenuItem("E-Mail Me", itemHandler2);
ccc_cmi = new ContextMenuItem("Visit Glaiel Games", itemHandler3);
ddd_cmi = new ContextMenuItem("Visit Games of Gondor", itemHandler4);
eee_cmi = new ContextMenuItem("High Quality", itemHandler5);
fff_cmi = new ContextMenuItem("Mid Quality", itemHandler6);
ggg_cmi = new ContextMenuItem("Low Quality", itemHandler7);
ccc_cmi.separatorBefore = true;
eee_cmi.separatorBefore = true;
root_cm.customItems.push(aaa_cmi, bbb_cmi, ccc_cmi, ddd_cmi, eee_cmi, fff_cmi, ggg_cmi);
_root.menu = root_cm;
_quality = "MEDIUM";
Instance of Symbol 13 MovieClip in Frame 1
onClipEvent (enterFrame) {
b = _root.getBytesTotal();
l = _root.getBytesLoaded();
p = (l / b) * 100;
_xscale = p;
if (p >= 100) {
_root.play();
}
}
Frame 2
stop();
Frame 3
stop();
lives = 5;
score = 0;
xtra = 10000;
if (nam == undefined) {
nam = "Enter Name";
}
Instance of Symbol 61 MovieClip in Frame 3
on (release) {
getURL ("http://www.glaielgames.com", "_blank");
}
Instance of Symbol 83 MovieClip "inst" in Frame 3
onClipEvent (load) {
_visible = false;
}
Frame 4
stop();
Instance of Symbol 87 MovieClip in Frame 4
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
Frame 5
function depthcalc(tgt) {
tgt.swapDepths(Math.round(10000 - tgt.z) + 2);
if (tgt.z < (char.z - 220)) {
tgt._alpha = 10;
} else if (tgt.z < char.z) {
tgt._alpha = 25;
} else {
tgt._alpha = 100;
}
if (((tgt.z + _root.zp) <= 0) || (((tgt._x < ((-tgt._width) / 2)) || (tgt._x > (700 + (tgt._width / 2)))) && (tgt._name != "wall"))) {
tgt._visible = false;
} else {
tgt._visible = true;
}
if (rem == true) {
removeMovieClip(tgt);
}
}
function render3Dpoints(pt) {
if (pt.z <= 0) {
pt.z = 0;
}
scalar = 500 / (200 + pt.z);
npt = new Object(this);
npt.x = 350 + (pt.x * scalar);
npt.y = 200 + (pt.y * scalar);
npt.scale = scalar * 100;
return(npt);
}
function colTest(tgt, tgt2, xd, zd) {
zdist = Math.abs(tgt.z - tgt2.z);
xdist = Math.abs(tgt.x - tgt2.x);
if ((zdist < zd) && (xdist < xd)) {
return(true);
}
return(false);
}
stop();
timer = 100;
speed1 = 67;
speed2 = 67;
speed3 = 66;
cave = false;
c1 = false;
c2 = false;
c3 = false;
c4 = false;
c5 = false;
rem = false;
xp = -200;
yp = 0;
zp = 0;
Lxspeed = 0;
_root.createEmptyMovieClip("grid", 1);
grid.createEmptyMovieClip("water", 1);
grid.createEmptyMovieClip("tile", 2);
grid.createEmptyMovieClip("road", 3);
grid.createEmptyMovieClip("grass", 4);
tree._visible = false;
xa = new Array(this);
ya = new Array(this);
za = new Array(this);
gridspace = 100;
var i = 0;
while (i <= 25) {
xa[i] = i * gridspace;
ya[i] = 100;
za[i] = i * gridspace;
i++;
}
cons = gridspace * (za.length - 1);
treenmbr = 20;
nmbr = 3;
var i = 0;
while (i < 2) {
var j = 0;
while (j < 25) {
duplicateMovieClip (tree, "t" + nmbr, nmbr);
_root["t" + nmbr].x = i * 2500;
_root["t" + nmbr].z = ((j * 100) + i) + 1;
_root["t" + nmbr].onEnterFrame = function () {
if (this.y == undefined) {
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
};
nmbr++;
j++;
}
i++;
}
char.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1250;
this.z = 0;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale / 1.5);
_root.depthcalc(this);
};
wall.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1200;
this.z = 2500;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2.5;
this._yscale = this.pt2.scale;
_root.depthcalc(this);
};
_root.onEnterFrame = function () {
pt1 = new Object(this);
grid.water.clear();
grid.water.lineStyle(1, 0, 100);
grid.water.beginFill(4702657, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
grid.water.endFill();
grid.tile.clear();
grid.tile.lineStyle(1, 0, 100);
grid.tile.beginFill(13421772, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
grid.tile.endFill();
grid.road.clear();
grid.road.lineStyle(1, 0, 100);
grid.road.beginFill(3355443, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
grid.road.endFill();
grid.grass.clear();
grid.grass.lineStyle(1, 0, 100);
grid.grass.beginFill(2794538, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
grid.grass.endFill();
_root.lastx = _root.char.x;
_root.lastz = _root.char.z;
if ((char._currentframe <= 8) && (char.fj._currentframe == 1)) {
if (Key.isDown(38) && (Key.isDown(37))) {
_root.char.gotoAndStop(5);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38) && (Key.isDown(39))) {
_root.char.gotoAndStop(6);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(37))) {
_root.char.gotoAndStop(7);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(39))) {
_root.char.gotoAndStop(8);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(37)) {
_root.char.gotoAndStop(1);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(39)) {
_root.char.gotoAndStop(4);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38)) {
_root.char.gotoAndStop(3);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40)) {
_root.char.gotoAndStop(2);
char.mov = false;
_root.char.fj.play();
}
} else {
char.mov = true;
}
if (char.fj._currentframe == 2) {
if (char._currentframe == 1) {
char.x = char.x - speed1;
}
if (char._currentframe == 2) {
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 3) {
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 4) {
char.x = char.x + speed1;
}
if (char._currentframe == 5) {
char.x = char.x - speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 6) {
char.x = char.x + speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 7) {
char.x = char.x - speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 8) {
char.x = char.x + speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
}
if (char.fj._currentframe == 3) {
if (char._currentframe == 1) {
char.x = char.x - speed2;
}
if (char._currentframe == 2) {
char.z = char.z - speed2;
}
if (char._currentframe == 3) {
char.z = char.z + speed2;
}
if (char._currentframe == 4) {
char.x = char.x + speed2;
}
if (char._currentframe == 5) {
char.x = char.x - speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 6) {
char.x = char.x + speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 7) {
char.x = char.x - speed2;
char.z = char.z - speed2;
}
if (char._currentframe == 8) {
char.x = char.x + speed2;
char.z = char.z - speed2;
}
}
if (char.fj._currentframe == 4) {
if (char._currentframe == 1) {
char.x = char.x - speed3;
}
if (char._currentframe == 2) {
char.z = char.z - speed3;
}
if (char._currentframe == 3) {
char.z = char.z + speed3;
}
if (char._currentframe == 4) {
char.x = char.x + speed3;
}
if (char._currentframe == 5) {
char.x = char.x - speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 6) {
char.x = char.x + speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 7) {
char.x = char.x - speed3;
char.z = char.z - speed3;
}
if (char._currentframe == 8) {
char.x = char.x + speed3;
char.z = char.z - speed3;
}
}
if (char.z < 0) {
char.z = 0;
}
if (char.x < 0) {
char.gotoAndStop(9);
}
if (char.x > 2500) {
char.gotoAndStop(9);
}
if (((char.z > 2500) && (cave == false)) && (char._currentframe <= 8)) {
char.gotoAndStop(9);
char.z = 2494;
}
if (char.z > 2500) {
char.z = 2494;
}
cave = false;
if ((((logged == false) && (char.fj._currentframe == 1)) && (char.z > 1500)) && (char._currentframe <= 8)) {
char.gotoAndStop(10);
}
char.x = char.x + Lxspeed;
Lxspeed = 0;
logged = false;
_root.xp = -_root.char.x;
_root.zp = (-_root.char.z) + 400;
if (rem == true) {
removeMovieClip(grid);
}
if (score > xtra) {
lives = lives + 1;
xtra = xtra + 10000;
}
if (lives < 0) {
rem = true;
_root.gotoAndPlay("dead");
}
};
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 5
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 134 MovieClip "char" in Frame 5
onClipEvent (load) {
mov = true;
}
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 403;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 404;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 405;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 406;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 407;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 1003;
this.y = 100;
}
x = x + 20;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 1004;
this.y = 100;
}
x = x + 20;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 603;
this.y = 100;
}
x = x + 11;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 604;
this.y = 100;
}
x = x + 11;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 605;
this.y = 100;
}
x = x + 11;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 606;
this.y = 100;
}
x = x + 11;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1580;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 183 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 803;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 804;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 805;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 806;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 807;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1203;
this.y = 100;
}
x = x - 11;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1204;
this.y = 100;
}
x = x - 11;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1205;
this.y = 100;
}
x = x - 11;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1206;
this.y = 100;
}
x = x - 11;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1581;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1780;
this.y = 100;
}
x = x + 11;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 11;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1781;
this.y = 100;
}
x = x + 11;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 11;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1782;
this.y = 100;
}
x = x + 11;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 11;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1783;
this.y = 100;
}
x = x + 11;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 11;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1784;
this.y = 100;
}
x = x + 11;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 11;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1785;
this.y = 100;
}
x = x + 11;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 11;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1980;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1981;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1982;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1983;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1984;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 1985;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1986;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2180;
this.y = 100;
}
x = x - 5;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -5;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2181;
this.y = 100;
}
x = x - 5;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -5;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 2182;
this.y = 100;
}
x = x - 5;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -5;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 2183;
this.y = 100;
}
x = x - 5;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -5;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2184;
this.y = 100;
}
x = x - 5;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -5;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2185;
this.y = 100;
}
x = x - 5;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -5;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 2186;
this.y = 100;
}
x = x - 5;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -5;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1582;
this.y = 100;
}
x = x - 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1583;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1584;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 1585;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1586;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2380;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2381;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 200;
this.z = 2382;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 700;
this.z = 2383;
this.y = 100;
}
x = x + 14;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2384;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2385;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 2386;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3200;
this.z = 2387;
this.y = 100;
}
x = x + 14;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 203 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 416;
this.z = 2499;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c1 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 832;
this.z = 2498;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c2 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1248;
this.z = 2497;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c3 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1664;
this.z = 2496;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c4 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 5
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2080;
this.z = 2495;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c5 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 213 MovieClip in Frame 5
onClipEvent (load) {
this.swapDepths(999999);
}
onClipEvent (enterFrame) {
if (_root.rem == true) {
removeMovieClip(this);
}
}
Frame 6
stop();
Instance of Symbol 61 MovieClip in Frame 6
on (release) {
getURL ("http://www.glaielgames.com", "_blank");
}
Instance of Symbol 87 MovieClip in Frame 6
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
Frame 7
function depthcalc(tgt) {
tgt.swapDepths(Math.round(10000 - tgt.z) + 2);
if (tgt.z < (char.z - 220)) {
tgt._alpha = 10;
} else if (tgt.z < char.z) {
tgt._alpha = 25;
} else {
tgt._alpha = 100;
}
if (((tgt.z + _root.zp) <= 0) || (((tgt._x < ((-tgt._width) / 2)) || (tgt._x > (700 + (tgt._width / 2)))) && (tgt._name != "wall"))) {
tgt._visible = false;
} else {
tgt._visible = true;
}
if (rem == true) {
removeMovieClip(tgt);
}
}
function render3Dpoints(pt) {
if (pt.z <= 0) {
pt.z = 0;
}
scalar = 500 / (200 + pt.z);
npt = new Object(this);
npt.x = 350 + (pt.x * scalar);
npt.y = 200 + (pt.y * scalar);
npt.scale = scalar * 100;
return(npt);
}
function colTest(tgt, tgt2, xd, zd) {
zdist = Math.abs(tgt.z - tgt2.z);
xdist = Math.abs(tgt.x - tgt2.x);
if ((zdist < zd) && (xdist < xd)) {
return(true);
}
return(false);
}
stop();
timer = 100;
speed1 = 67;
speed2 = 67;
speed3 = 66;
cave = false;
c1 = false;
c2 = false;
c3 = false;
c4 = false;
c5 = false;
rem = false;
xp = -200;
yp = 0;
zp = 0;
Lxspeed = 0;
_root.createEmptyMovieClip("grid", 1);
grid.createEmptyMovieClip("water", 1);
grid.createEmptyMovieClip("tile", 2);
grid.createEmptyMovieClip("road", 3);
grid.createEmptyMovieClip("grass", 4);
tree._visible = false;
xa = new Array(this);
ya = new Array(this);
za = new Array(this);
gridspace = 100;
var i = 0;
while (i <= 25) {
xa[i] = i * gridspace;
ya[i] = 100;
za[i] = i * gridspace;
i++;
}
cons = gridspace * (za.length - 1);
treenmbr = 20;
nmbr = 3;
var i = 0;
while (i < 2) {
var j = 0;
while (j < 25) {
duplicateMovieClip (tree, "t" + nmbr, nmbr);
_root["t" + nmbr].x = i * 2500;
_root["t" + nmbr].z = ((j * 100) + i) + 1;
_root["t" + nmbr].onEnterFrame = function () {
if (this.y == undefined) {
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
};
nmbr++;
j++;
}
i++;
}
char.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1250;
this.z = 0;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale / 1.5);
_root.depthcalc(this);
};
wall.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1200;
this.z = 2500;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2.5;
this._yscale = this.pt2.scale;
_root.depthcalc(this);
};
_root.onEnterFrame = function () {
pt1 = new Object(this);
grid.water.clear();
grid.water.lineStyle(1, 0, 100);
grid.water.beginFill(4702657, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
grid.water.endFill();
grid.tile.clear();
grid.tile.lineStyle(1, 0, 100);
grid.tile.beginFill(13421772, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
grid.tile.endFill();
grid.road.clear();
grid.road.lineStyle(1, 0, 100);
grid.road.beginFill(3355443, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
grid.road.endFill();
grid.grass.clear();
grid.grass.lineStyle(1, 0, 100);
grid.grass.beginFill(2794538, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
grid.grass.endFill();
_root.lastx = _root.char.x;
_root.lastz = _root.char.z;
if ((char._currentframe <= 8) && (char.fj._currentframe == 1)) {
if (Key.isDown(38) && (Key.isDown(37))) {
_root.char.gotoAndStop(5);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38) && (Key.isDown(39))) {
_root.char.gotoAndStop(6);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(37))) {
_root.char.gotoAndStop(7);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(39))) {
_root.char.gotoAndStop(8);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(37)) {
_root.char.gotoAndStop(1);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(39)) {
_root.char.gotoAndStop(4);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38)) {
_root.char.gotoAndStop(3);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40)) {
_root.char.gotoAndStop(2);
char.mov = false;
_root.char.fj.play();
}
} else {
char.mov = true;
}
if (char.fj._currentframe == 2) {
if (char._currentframe == 1) {
char.x = char.x - speed1;
}
if (char._currentframe == 2) {
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 3) {
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 4) {
char.x = char.x + speed1;
}
if (char._currentframe == 5) {
char.x = char.x - speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 6) {
char.x = char.x + speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 7) {
char.x = char.x - speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 8) {
char.x = char.x + speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
}
if (char.fj._currentframe == 3) {
if (char._currentframe == 1) {
char.x = char.x - speed2;
}
if (char._currentframe == 2) {
char.z = char.z - speed2;
}
if (char._currentframe == 3) {
char.z = char.z + speed2;
}
if (char._currentframe == 4) {
char.x = char.x + speed2;
}
if (char._currentframe == 5) {
char.x = char.x - speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 6) {
char.x = char.x + speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 7) {
char.x = char.x - speed2;
char.z = char.z - speed2;
}
if (char._currentframe == 8) {
char.x = char.x + speed2;
char.z = char.z - speed2;
}
}
if (char.fj._currentframe == 4) {
if (char._currentframe == 1) {
char.x = char.x - speed3;
}
if (char._currentframe == 2) {
char.z = char.z - speed3;
}
if (char._currentframe == 3) {
char.z = char.z + speed3;
}
if (char._currentframe == 4) {
char.x = char.x + speed3;
}
if (char._currentframe == 5) {
char.x = char.x - speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 6) {
char.x = char.x + speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 7) {
char.x = char.x - speed3;
char.z = char.z - speed3;
}
if (char._currentframe == 8) {
char.x = char.x + speed3;
char.z = char.z - speed3;
}
}
if (char.z < 0) {
char.z = 0;
}
if (char.x < 0) {
char.gotoAndStop(9);
}
if (char.x > 2500) {
char.gotoAndStop(9);
}
if (((char.z > 2500) && (cave == false)) && (char._currentframe <= 8)) {
char.gotoAndStop(9);
char.z = 2494;
}
if (char.z > 2500) {
char.z = 2494;
}
cave = false;
if ((((logged == false) && (char.fj._currentframe == 1)) && (char.z > 1500)) && (char._currentframe <= 8)) {
char.gotoAndStop(10);
}
char.x = char.x + Lxspeed;
Lxspeed = 0;
logged = false;
_root.xp = -_root.char.x;
_root.zp = (-_root.char.z) + 400;
if (rem == true) {
removeMovieClip(grid);
}
if (score > xtra) {
lives = lives + 1;
xtra = xtra + 10000;
}
if (lives < 0) {
rem = true;
_root.gotoAndPlay("dead");
}
};
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 7
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 134 MovieClip "char" in Frame 7
onClipEvent (load) {
mov = true;
}
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 403;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 404;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 405;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 406;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 407;
this.y = 100;
}
x = x - 10;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 1003;
this.y = 100;
}
x = x + 25;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 1004;
this.y = 100;
}
x = x + 25;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 603;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 604;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 605;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 606;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1580;
this.y = 100;
}
x = x - 11;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -11;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 183 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 803;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 804;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 805;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 806;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 807;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1203;
this.y = 100;
}
x = x - 13;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1204;
this.y = 100;
}
x = x - 13;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1205;
this.y = 100;
}
x = x - 13;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 1206;
this.y = 100;
}
x = x - 13;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -600;
this.z = 1207;
this.y = 100;
}
x = x - 13;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1581;
this.y = 100;
}
x = x - 11;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -11;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1980;
this.y = 100;
}
x = x - 6;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -6;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1981;
this.y = 100;
}
x = x - 6;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -6;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1982;
this.y = 100;
}
x = x - 6;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -6;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1983;
this.y = 100;
}
x = x - 6;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -6;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1984;
this.y = 100;
}
x = x - 6;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -6;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 1985;
this.y = 100;
}
x = x - 6;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -6;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1986;
this.y = 100;
}
x = x - 6;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -6;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2180;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2181;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1582;
this.y = 100;
}
x = x - 11;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -11;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1583;
this.y = 100;
}
x = x - 11;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -11;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1584;
this.y = 100;
}
x = x - 11;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -11;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 1585;
this.y = 100;
}
x = x - 11;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -11;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 203 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 416;
this.z = 2499;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c1 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 832;
this.z = 2498;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c2 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1248;
this.z = 2497;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c3 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1664;
this.z = 2496;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c4 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2080;
this.z = 2495;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c5 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 217 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -172;
this.z = 2183;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 70, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 220 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 2182;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 2184;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2185;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2186;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 2187;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 167 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1005;
this.y = 100;
}
x = x + 25;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 808;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 809;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 200 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1586;
this.y = 100;
}
x = x - 11;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -11;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1780;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1781;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1782;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1783;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1784;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1785;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2380;
this.y = 100;
}
x = x + 14;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2381;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 200;
this.z = 2382;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 700;
this.z = 2383;
this.y = 100;
}
x = x + 14;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2384;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2385;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 2386;
this.y = 100;
}
x = x + 14;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 7
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3200;
this.z = 2387;
this.y = 100;
}
x = x + 14;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 14;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 213 MovieClip in Frame 7
onClipEvent (load) {
this.swapDepths(999999);
}
onClipEvent (enterFrame) {
if (_root.rem == true) {
removeMovieClip(this);
}
}
Frame 8
stop();
Instance of Symbol 61 MovieClip in Frame 8
on (release) {
getURL ("http://www.glaielgames.com", "_blank");
}
Instance of Symbol 87 MovieClip in Frame 8
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
Frame 9
function depthcalc(tgt) {
tgt.swapDepths(Math.round(10000 - tgt.z) + 2);
if (tgt.z < (char.z - 220)) {
tgt._alpha = 10;
} else if (tgt.z < char.z) {
tgt._alpha = 25;
} else {
tgt._alpha = 100;
}
if (((tgt.z + _root.zp) <= 0) || (((tgt._x < ((-tgt._width) / 2)) || (tgt._x > (700 + (tgt._width / 2)))) && (tgt._name != "wall"))) {
tgt._visible = false;
} else {
tgt._visible = true;
}
if (rem == true) {
removeMovieClip(tgt);
}
}
function render3Dpoints(pt) {
if (pt.z <= 0) {
pt.z = 0;
}
scalar = 500 / (200 + pt.z);
npt = new Object(this);
npt.x = 350 + (pt.x * scalar);
npt.y = 200 + (pt.y * scalar);
npt.scale = scalar * 100;
return(npt);
}
function colTest(tgt, tgt2, xd, zd) {
zdist = Math.abs(tgt.z - tgt2.z);
xdist = Math.abs(tgt.x - tgt2.x);
if ((zdist < zd) && (xdist < xd)) {
return(true);
}
return(false);
}
stop();
timer = 100;
speed1 = 67;
speed2 = 67;
speed3 = 66;
cave = false;
c1 = false;
c2 = false;
c3 = false;
c4 = false;
c5 = false;
rem = false;
xp = -200;
yp = 0;
zp = 0;
Lxspeed = 0;
_root.createEmptyMovieClip("grid", 1);
grid.createEmptyMovieClip("water", 1);
grid.createEmptyMovieClip("tile", 2);
grid.createEmptyMovieClip("road", 3);
grid.createEmptyMovieClip("grass", 4);
tree._visible = false;
xa = new Array(this);
ya = new Array(this);
za = new Array(this);
gridspace = 100;
var i = 0;
while (i <= 25) {
xa[i] = i * gridspace;
ya[i] = 100;
za[i] = i * gridspace;
i++;
}
cons = gridspace * (za.length - 1);
treenmbr = 20;
nmbr = 3;
var i = 0;
while (i < 2) {
var j = 0;
while (j < 25) {
duplicateMovieClip (tree, "t" + nmbr, nmbr);
_root["t" + nmbr].x = i * 2500;
_root["t" + nmbr].z = ((j * 100) + i) + 1;
_root["t" + nmbr].onEnterFrame = function () {
if (this.y == undefined) {
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
};
nmbr++;
j++;
}
i++;
}
char.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1250;
this.z = 0;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale / 1.5);
_root.depthcalc(this);
};
wall.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1200;
this.z = 2500;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2.5;
this._yscale = this.pt2.scale;
_root.depthcalc(this);
};
_root.onEnterFrame = function () {
pt1 = new Object(this);
grid.water.clear();
grid.water.lineStyle(1, 0, 100);
grid.water.beginFill(4702657, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
grid.water.endFill();
grid.tile.clear();
grid.tile.lineStyle(1, 0, 100);
grid.tile.beginFill(13421772, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
grid.tile.endFill();
grid.road.clear();
grid.road.lineStyle(1, 0, 100);
grid.road.beginFill(3355443, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
grid.road.endFill();
grid.grass.clear();
grid.grass.lineStyle(1, 0, 100);
grid.grass.beginFill(2794538, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
grid.grass.endFill();
_root.lastx = _root.char.x;
_root.lastz = _root.char.z;
if ((char._currentframe <= 8) && (char.fj._currentframe == 1)) {
if (Key.isDown(38) && (Key.isDown(37))) {
_root.char.gotoAndStop(5);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38) && (Key.isDown(39))) {
_root.char.gotoAndStop(6);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(37))) {
_root.char.gotoAndStop(7);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(39))) {
_root.char.gotoAndStop(8);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(37)) {
_root.char.gotoAndStop(1);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(39)) {
_root.char.gotoAndStop(4);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38)) {
_root.char.gotoAndStop(3);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40)) {
_root.char.gotoAndStop(2);
char.mov = false;
_root.char.fj.play();
}
} else {
char.mov = true;
}
if (char.fj._currentframe == 2) {
if (char._currentframe == 1) {
char.x = char.x - speed1;
}
if (char._currentframe == 2) {
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 3) {
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 4) {
char.x = char.x + speed1;
}
if (char._currentframe == 5) {
char.x = char.x - speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 6) {
char.x = char.x + speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 7) {
char.x = char.x - speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 8) {
char.x = char.x + speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
}
if (char.fj._currentframe == 3) {
if (char._currentframe == 1) {
char.x = char.x - speed2;
}
if (char._currentframe == 2) {
char.z = char.z - speed2;
}
if (char._currentframe == 3) {
char.z = char.z + speed2;
}
if (char._currentframe == 4) {
char.x = char.x + speed2;
}
if (char._currentframe == 5) {
char.x = char.x - speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 6) {
char.x = char.x + speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 7) {
char.x = char.x - speed2;
char.z = char.z - speed2;
}
if (char._currentframe == 8) {
char.x = char.x + speed2;
char.z = char.z - speed2;
}
}
if (char.fj._currentframe == 4) {
if (char._currentframe == 1) {
char.x = char.x - speed3;
}
if (char._currentframe == 2) {
char.z = char.z - speed3;
}
if (char._currentframe == 3) {
char.z = char.z + speed3;
}
if (char._currentframe == 4) {
char.x = char.x + speed3;
}
if (char._currentframe == 5) {
char.x = char.x - speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 6) {
char.x = char.x + speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 7) {
char.x = char.x - speed3;
char.z = char.z - speed3;
}
if (char._currentframe == 8) {
char.x = char.x + speed3;
char.z = char.z - speed3;
}
}
if (char.z < 0) {
char.z = 0;
}
if (char.x < 0) {
char.gotoAndStop(9);
}
if (char.x > 2500) {
char.gotoAndStop(9);
}
if (((char.z > 2500) && (cave == false)) && (char._currentframe <= 8)) {
char.gotoAndStop(9);
char.z = 2494;
}
if (char.z > 2500) {
char.z = 2494;
}
cave = false;
if ((((logged == false) && (char.fj._currentframe == 1)) && (char.z > 1500)) && (char._currentframe <= 8)) {
char.gotoAndStop(10);
}
char.x = char.x + Lxspeed;
Lxspeed = 0;
logged = false;
_root.xp = -_root.char.x;
_root.zp = (-_root.char.z) + 400;
if (rem == true) {
removeMovieClip(grid);
}
if (score > xtra) {
lives = lives + 1;
xtra = xtra + 10000;
}
if (lives < 0) {
rem = true;
_root.gotoAndPlay("dead");
}
};
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 9
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 134 MovieClip "char" in Frame 9
onClipEvent (load) {
mov = true;
}
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 403;
this.y = 100;
}
x = x - 12;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 404;
this.y = 100;
}
x = x - 12;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 405;
this.y = 100;
}
x = x - 12;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 406;
this.y = 100;
}
x = x - 12;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 407;
this.y = 100;
}
x = x - 12;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 1003;
this.y = 100;
}
x = x + 30;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 1004;
this.y = 100;
}
x = x + 30;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 603;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 604;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 605;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 606;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 803;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 804;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 805;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 806;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 807;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1203;
this.y = 100;
}
x = x - 15;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1204;
this.y = 100;
}
x = x - 15;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1205;
this.y = 100;
}
x = x - 15;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1206;
this.y = 100;
}
x = x - 15;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1207;
this.y = 100;
}
x = x - 15;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1980;
this.y = 100;
}
x = x - 9;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -9;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1981;
this.y = 100;
}
x = x - 9;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -9;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1982;
this.y = 100;
}
x = x - 9;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -9;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1983;
this.y = 100;
}
x = x - 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -9;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1984;
this.y = 100;
}
x = x - 9;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -9;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 1985;
this.y = 100;
}
x = x - 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -9;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1986;
this.y = 100;
}
x = x - 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -9;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2180;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2181;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 203 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 416;
this.z = 2499;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c1 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 832;
this.z = 2498;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c2 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1248;
this.z = 2497;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c3 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1664;
this.z = 2496;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c4 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2080;
this.z = 2495;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c5 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 217 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -172;
this.z = 2183;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 70, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 220 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 2182;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 2184;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2185;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2186;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 167 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1005;
this.y = 100;
}
x = x + 30;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 808;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 809;
this.y = 100;
}
x = x - 7;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -800;
this.z = 1208;
this.y = 100;
}
x = x - 15;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1780;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1781;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1782;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1783;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1784;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1785;
this.y = 100;
}
x = x + 9;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 9;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2380;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2381;
this.y = 100;
}
x = x + 10;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 200;
this.z = 2382;
this.y = 100;
}
x = x + 10;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 700;
this.z = 2383;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2384;
this.y = 100;
}
x = x + 10;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2385;
this.y = 100;
}
x = x + 10;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 2386;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1580;
this.y = 100;
}
x = x - 17;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -17;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1581;
this.y = 100;
}
x = x - 17;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -17;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1582;
this.y = 100;
}
x = x - 17;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -17;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1583;
this.y = 100;
}
x = x - 17;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -17;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1584;
this.y = 100;
}
x = x - 17;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -17;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1585;
this.y = 100;
}
x = x - 17;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -17;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 225 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1403;
this.y = 100;
xspeed = 10;
}
if (x < 0) {
xspeed = 10;
}
if (x > 2500) {
xspeed = -10;
}
x = x + xspeed;
if (_root.colTest(_root.char, this, 125, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
if (xspeed > 0) {
_xscale = (_xscale * -1);
}
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 408;
this.y = 100;
}
x = x - 12;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1006;
this.y = 100;
}
x = x + 30;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 217 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2828;
this.z = 2188;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 70, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 220 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 2187;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1586;
this.y = 100;
}
x = x - 17;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -17;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 9
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3200;
this.z = 2387;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 213 MovieClip in Frame 9
onClipEvent (load) {
this.swapDepths(999999);
}
onClipEvent (enterFrame) {
if (_root.rem == true) {
removeMovieClip(this);
}
}
Frame 10
stop();
Instance of Symbol 61 MovieClip in Frame 10
on (release) {
getURL ("http://www.glaielgames.com", "_blank");
}
Instance of Symbol 87 MovieClip in Frame 10
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
Frame 11
function depthcalc(tgt) {
tgt.swapDepths(Math.round(10000 - tgt.z) + 2);
if (tgt.z < (char.z - 220)) {
tgt._alpha = 10;
} else if (tgt.z < char.z) {
tgt._alpha = 25;
} else {
tgt._alpha = 100;
}
if (((tgt.z + _root.zp) <= 0) || (((tgt._x < ((-tgt._width) / 2)) || (tgt._x > (700 + (tgt._width / 2)))) && (tgt._name != "wall"))) {
tgt._visible = false;
} else {
tgt._visible = true;
}
if (rem == true) {
removeMovieClip(tgt);
}
}
function render3Dpoints(pt) {
if (pt.z <= 0) {
pt.z = 0;
}
scalar = 500 / (200 + pt.z);
npt = new Object(this);
npt.x = 350 + (pt.x * scalar);
npt.y = 200 + (pt.y * scalar);
npt.scale = scalar * 100;
return(npt);
}
function colTest(tgt, tgt2, xd, zd) {
zdist = Math.abs(tgt.z - tgt2.z);
xdist = Math.abs(tgt.x - tgt2.x);
if ((zdist < zd) && (xdist < xd)) {
return(true);
}
return(false);
}
stop();
timer = 100;
speed1 = 67;
speed2 = 67;
speed3 = 66;
cave = false;
c1 = false;
c2 = false;
c3 = false;
c4 = false;
c5 = false;
rem = false;
xp = -200;
yp = 0;
zp = 0;
Lxspeed = 0;
_root.createEmptyMovieClip("grid", 1);
grid.createEmptyMovieClip("water", 1);
grid.createEmptyMovieClip("tile", 2);
grid.createEmptyMovieClip("road", 3);
grid.createEmptyMovieClip("grass", 4);
tree._visible = false;
xa = new Array(this);
ya = new Array(this);
za = new Array(this);
gridspace = 100;
var i = 0;
while (i <= 25) {
xa[i] = i * gridspace;
ya[i] = 100;
za[i] = i * gridspace;
i++;
}
cons = gridspace * (za.length - 1);
treenmbr = 20;
nmbr = 3;
var i = 0;
while (i < 2) {
var j = 0;
while (j < 25) {
duplicateMovieClip (tree, "t" + nmbr, nmbr);
_root["t" + nmbr].x = i * 2500;
_root["t" + nmbr].z = ((j * 100) + i) + 1;
_root["t" + nmbr].onEnterFrame = function () {
if (this.y == undefined) {
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
};
nmbr++;
j++;
}
i++;
}
char.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1250;
this.z = 0;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale / 1.5);
_root.depthcalc(this);
};
wall.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1200;
this.z = 2500;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2.5;
this._yscale = this.pt2.scale;
_root.depthcalc(this);
};
_root.onEnterFrame = function () {
pt1 = new Object(this);
grid.water.clear();
grid.water.lineStyle(1, 0, 100);
grid.water.beginFill(4702657, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
grid.water.endFill();
grid.tile.clear();
grid.tile.lineStyle(1, 0, 100);
grid.tile.beginFill(13421772, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
grid.tile.endFill();
grid.road.clear();
grid.road.lineStyle(1, 0, 100);
grid.road.beginFill(3355443, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
grid.road.endFill();
grid.grass.clear();
grid.grass.lineStyle(1, 0, 100);
grid.grass.beginFill(2794538, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
grid.grass.endFill();
_root.lastx = _root.char.x;
_root.lastz = _root.char.z;
if ((char._currentframe <= 8) && (char.fj._currentframe == 1)) {
if (Key.isDown(38) && (Key.isDown(37))) {
_root.char.gotoAndStop(5);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38) && (Key.isDown(39))) {
_root.char.gotoAndStop(6);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(37))) {
_root.char.gotoAndStop(7);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(39))) {
_root.char.gotoAndStop(8);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(37)) {
_root.char.gotoAndStop(1);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(39)) {
_root.char.gotoAndStop(4);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38)) {
_root.char.gotoAndStop(3);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40)) {
_root.char.gotoAndStop(2);
char.mov = false;
_root.char.fj.play();
}
} else {
char.mov = true;
}
if (char.fj._currentframe == 2) {
if (char._currentframe == 1) {
char.x = char.x - speed1;
}
if (char._currentframe == 2) {
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 3) {
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 4) {
char.x = char.x + speed1;
}
if (char._currentframe == 5) {
char.x = char.x - speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 6) {
char.x = char.x + speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 7) {
char.x = char.x - speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 8) {
char.x = char.x + speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
}
if (char.fj._currentframe == 3) {
if (char._currentframe == 1) {
char.x = char.x - speed2;
}
if (char._currentframe == 2) {
char.z = char.z - speed2;
}
if (char._currentframe == 3) {
char.z = char.z + speed2;
}
if (char._currentframe == 4) {
char.x = char.x + speed2;
}
if (char._currentframe == 5) {
char.x = char.x - speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 6) {
char.x = char.x + speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 7) {
char.x = char.x - speed2;
char.z = char.z - speed2;
}
if (char._currentframe == 8) {
char.x = char.x + speed2;
char.z = char.z - speed2;
}
}
if (char.fj._currentframe == 4) {
if (char._currentframe == 1) {
char.x = char.x - speed3;
}
if (char._currentframe == 2) {
char.z = char.z - speed3;
}
if (char._currentframe == 3) {
char.z = char.z + speed3;
}
if (char._currentframe == 4) {
char.x = char.x + speed3;
}
if (char._currentframe == 5) {
char.x = char.x - speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 6) {
char.x = char.x + speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 7) {
char.x = char.x - speed3;
char.z = char.z - speed3;
}
if (char._currentframe == 8) {
char.x = char.x + speed3;
char.z = char.z - speed3;
}
}
if (char.z < 0) {
char.z = 0;
}
if (char.x < 0) {
char.gotoAndStop(9);
}
if (char.x > 2500) {
char.gotoAndStop(9);
}
if (((char.z > 2500) && (cave == false)) && (char._currentframe <= 8)) {
char.gotoAndStop(9);
char.z = 2494;
}
if (char.z > 2500) {
char.z = 2494;
}
cave = false;
if ((((logged == false) && (char.fj._currentframe == 1)) && (char.z > 1500)) && (char._currentframe <= 8)) {
char.gotoAndStop(10);
}
char.x = char.x + Lxspeed;
Lxspeed = 0;
logged = false;
_root.xp = -_root.char.x;
_root.zp = (-_root.char.z) + 400;
if (rem == true) {
removeMovieClip(grid);
}
if (score > xtra) {
lives = lives + 1;
xtra = xtra + 10000;
}
if (lives < 0) {
rem = true;
_root.gotoAndPlay("dead");
}
};
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 11
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 134 MovieClip "char" in Frame 11
onClipEvent (load) {
mov = true;
}
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 403;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 404;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 405;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 406;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 407;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 1003;
this.y = 100;
}
x = x + 40;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 1004;
this.y = 100;
}
x = x + 40;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 603;
this.y = 100;
}
x = x + 13;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 604;
this.y = 100;
}
x = x + 13;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 605;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 606;
this.y = 100;
}
x = x + 13;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 803;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 804;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 805;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 806;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 807;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1203;
this.y = 100;
}
x = x - 16;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1204;
this.y = 100;
}
x = x - 16;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1205;
this.y = 100;
}
x = x - 16;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1206;
this.y = 100;
}
x = x - 16;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1207;
this.y = 100;
}
x = x - 16;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1980;
this.y = 100;
}
x = x - 16;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -16;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1981;
this.y = 100;
}
x = x - 16;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -16;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1982;
this.y = 100;
}
x = x - 16;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -16;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1983;
this.y = 100;
}
x = x - 16;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -16;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1984;
this.y = 100;
}
x = x - 16;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -16;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 1985;
this.y = 100;
}
x = x - 16;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -16;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1986;
this.y = 100;
}
x = x - 16;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -16;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2180;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2181;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 203 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 416;
this.z = 2499;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c1 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 832;
this.z = 2498;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c2 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1248;
this.z = 2497;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c3 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1664;
this.z = 2496;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c4 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2080;
this.z = 2495;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c5 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 217 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -172;
this.z = 2183;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 70, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 220 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 2182;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 2184;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2185;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2186;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 167 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1005;
this.y = 100;
}
x = x + 40;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 808;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 809;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1208;
this.y = 100;
}
x = x - 16;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1780;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1781;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1782;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1783;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1784;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1785;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2380;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1580;
this.y = 100;
}
x = x - 12;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -12;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1581;
this.y = 100;
}
x = x - 12;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -12;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1582;
this.y = 100;
}
x = x - 12;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -12;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1583;
this.y = 100;
}
x = x - 12;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -12;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1585;
this.y = 100;
}
x = x - 12;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -12;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 225 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1403;
this.y = 100;
xspeed = 14;
}
if (x < 0) {
xspeed = 14;
}
if (x > 2500) {
xspeed = -14;
}
x = x + xspeed;
if (_root.colTest(_root.char, this, 125, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
if (xspeed > 0) {
_xscale = (_xscale * -1);
}
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 408;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1006;
this.y = 100;
}
x = x + 40;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1586;
this.y = 100;
}
x = x - 12;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -12;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 167 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1007;
this.y = 100;
}
x = x + 40;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 607;
this.y = 100;
}
x = x + 13;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1584;
this.y = 100;
}
x = x - 12;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -12;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 217 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2828;
this.z = 2188;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 70, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 220 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 2187;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2381;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 200;
this.z = 2382;
this.y = 100;
}
x = x + 10;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 700;
this.z = 2383;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2384;
this.y = 100;
}
x = x + 10;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2385;
this.y = 100;
}
x = x + 10;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 2386;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 11
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3200;
this.z = 2387;
this.y = 100;
}
x = x + 10;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 213 MovieClip in Frame 11
onClipEvent (load) {
this.swapDepths(999999);
}
onClipEvent (enterFrame) {
if (_root.rem == true) {
removeMovieClip(this);
}
}
Frame 12
stop();
Instance of Symbol 61 MovieClip in Frame 12
on (release) {
getURL ("http://www.glaielgames.com", "_blank");
}
Instance of Symbol 87 MovieClip in Frame 12
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.play();
}
}
Frame 13
function depthcalc(tgt) {
tgt.swapDepths(Math.round(10000 - tgt.z) + 2);
if (tgt.z < (char.z - 220)) {
tgt._alpha = 10;
} else if (tgt.z < char.z) {
tgt._alpha = 25;
} else {
tgt._alpha = 100;
}
if (((tgt.z + _root.zp) <= 0) || (((tgt._x < ((-tgt._width) / 2)) || (tgt._x > (700 + (tgt._width / 2)))) && (tgt._name != "wall"))) {
tgt._visible = false;
} else {
tgt._visible = true;
}
if (rem == true) {
removeMovieClip(tgt);
}
}
function render3Dpoints(pt) {
if (pt.z <= 0) {
pt.z = 0;
}
scalar = 500 / (200 + pt.z);
npt = new Object(this);
npt.x = 350 + (pt.x * scalar);
npt.y = 200 + (pt.y * scalar);
npt.scale = scalar * 100;
return(npt);
}
function colTest(tgt, tgt2, xd, zd) {
zdist = Math.abs(tgt.z - tgt2.z);
xdist = Math.abs(tgt.x - tgt2.x);
if ((zdist < zd) && (xdist < xd)) {
return(true);
}
return(false);
}
stop();
timer = 100;
speed1 = 67;
speed2 = 67;
speed3 = 66;
cave = false;
c1 = false;
c2 = false;
c3 = false;
c4 = false;
c5 = false;
rem = false;
xp = -200;
yp = 0;
zp = 0;
Lxspeed = 0;
_root.createEmptyMovieClip("grid", 1);
grid.createEmptyMovieClip("water", 1);
grid.createEmptyMovieClip("tile", 2);
grid.createEmptyMovieClip("road", 3);
grid.createEmptyMovieClip("grass", 4);
tree._visible = false;
xa = new Array(this);
ya = new Array(this);
za = new Array(this);
gridspace = 100;
var i = 0;
while (i <= 25) {
xa[i] = i * gridspace;
ya[i] = 100;
za[i] = i * gridspace;
i++;
}
cons = gridspace * (za.length - 1);
treenmbr = 20;
nmbr = 3;
var i = 0;
while (i < 2) {
var j = 0;
while (j < 25) {
duplicateMovieClip (tree, "t" + nmbr, nmbr);
_root["t" + nmbr].x = i * 2500;
_root["t" + nmbr].z = ((j * 100) + i) + 1;
_root["t" + nmbr].onEnterFrame = function () {
if (this.y == undefined) {
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
};
nmbr++;
j++;
}
i++;
}
char.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1250;
this.z = 0;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale / 1.5);
_root.depthcalc(this);
};
wall.onEnterFrame = function () {
if (this.y == undefined) {
this.x = 1200;
this.z = 2500;
this.y = 100;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2.5;
this._yscale = this.pt2.scale;
_root.depthcalc(this);
};
_root.onEnterFrame = function () {
pt1 = new Object(this);
grid.water.clear();
grid.water.lineStyle(1, 0, 100);
grid.water.beginFill(4702657, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:2500 + zp};
pt2 = render3Dpoints(pt1);
grid.water.lineTo(pt2.x, pt2.y);
grid.water.endFill();
grid.tile.clear();
grid.tile.lineStyle(1, 0, 100);
grid.tile.beginFill(13421772, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1500 + zp};
pt2 = render3Dpoints(pt1);
grid.tile.lineTo(pt2.x, pt2.y);
grid.tile.endFill();
grid.road.clear();
grid.road.lineStyle(1, 0, 100);
grid.road.beginFill(3355443, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:1300 + zp};
pt2 = render3Dpoints(pt1);
grid.road.lineTo(pt2.x, pt2.y);
grid.road.endFill();
grid.grass.clear();
grid.grass.lineStyle(1, 0, 100);
grid.grass.beginFill(2794538, 100);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.moveTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:4500 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:0 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
pt1 = {x:-2000 + xp, y:ya[i] + yp, z:300 + zp};
pt2 = render3Dpoints(pt1);
grid.grass.lineTo(pt2.x, pt2.y);
grid.grass.endFill();
_root.lastx = _root.char.x;
_root.lastz = _root.char.z;
if ((char._currentframe <= 8) && (char.fj._currentframe == 1)) {
if (Key.isDown(38) && (Key.isDown(37))) {
_root.char.gotoAndStop(5);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38) && (Key.isDown(39))) {
_root.char.gotoAndStop(6);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(37))) {
_root.char.gotoAndStop(7);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40) && (Key.isDown(39))) {
_root.char.gotoAndStop(8);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(37)) {
_root.char.gotoAndStop(1);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(39)) {
_root.char.gotoAndStop(4);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(38)) {
_root.char.gotoAndStop(3);
char.mov = false;
_root.char.fj.play();
} else if (Key.isDown(40)) {
_root.char.gotoAndStop(2);
char.mov = false;
_root.char.fj.play();
}
} else {
char.mov = true;
}
if (char.fj._currentframe == 2) {
if (char._currentframe == 1) {
char.x = char.x - speed1;
}
if (char._currentframe == 2) {
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 3) {
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 4) {
char.x = char.x + speed1;
}
if (char._currentframe == 5) {
char.x = char.x - speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 6) {
char.x = char.x + speed1;
char.z = char.z + speed1;
if (char.z > 0) {
score = score + 10;
}
}
if (char._currentframe == 7) {
char.x = char.x - speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
if (char._currentframe == 8) {
char.x = char.x + speed1;
char.z = char.z - speed1;
if (char.z > 0) {
score = score - 10;
}
}
}
if (char.fj._currentframe == 3) {
if (char._currentframe == 1) {
char.x = char.x - speed2;
}
if (char._currentframe == 2) {
char.z = char.z - speed2;
}
if (char._currentframe == 3) {
char.z = char.z + speed2;
}
if (char._currentframe == 4) {
char.x = char.x + speed2;
}
if (char._currentframe == 5) {
char.x = char.x - speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 6) {
char.x = char.x + speed2;
char.z = char.z + speed2;
}
if (char._currentframe == 7) {
char.x = char.x - speed2;
char.z = char.z - speed2;
}
if (char._currentframe == 8) {
char.x = char.x + speed2;
char.z = char.z - speed2;
}
}
if (char.fj._currentframe == 4) {
if (char._currentframe == 1) {
char.x = char.x - speed3;
}
if (char._currentframe == 2) {
char.z = char.z - speed3;
}
if (char._currentframe == 3) {
char.z = char.z + speed3;
}
if (char._currentframe == 4) {
char.x = char.x + speed3;
}
if (char._currentframe == 5) {
char.x = char.x - speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 6) {
char.x = char.x + speed3;
char.z = char.z + speed3;
}
if (char._currentframe == 7) {
char.x = char.x - speed3;
char.z = char.z - speed3;
}
if (char._currentframe == 8) {
char.x = char.x + speed3;
char.z = char.z - speed3;
}
}
if (char.z < 0) {
char.z = 0;
}
if (char.x < 0) {
char.gotoAndStop(9);
}
if (char.x > 2500) {
char.gotoAndStop(9);
}
if (((char.z > 2500) && (cave == false)) && (char._currentframe <= 8)) {
char.gotoAndStop(9);
char.z = 2494;
}
if (char.z > 2500) {
char.z = 2494;
}
cave = false;
if ((((logged == false) && (char.fj._currentframe == 1)) && (char.z > 1500)) && (char._currentframe <= 8)) {
char.gotoAndStop(10);
}
char.x = char.x + Lxspeed;
Lxspeed = 0;
logged = false;
_root.xp = -_root.char.x;
_root.zp = (-_root.char.z) + 400;
if (rem == true) {
removeMovieClip(grid);
}
if (score > xtra) {
lives = lives + 1;
xtra = xtra + 10000;
}
if (lives < 0) {
rem = true;
_root.gotoAndPlay("dead");
}
};
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 89 MovieClip in Frame 13
onClipEvent (enterFrame) {
_x = (_x - (1 + (Math.random() / 15)));
if (_x < -100) {
_x = 800;
}
}
Instance of Symbol 134 MovieClip "char" in Frame 13
onClipEvent (load) {
mov = true;
}
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 403;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 404;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 405;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 406;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 407;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 1003;
this.y = 100;
}
x = x + 45;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 1004;
this.y = 100;
}
x = x + 45;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3500;
this.z = 603;
this.y = 100;
}
x = x + 13;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 604;
this.y = 100;
}
x = x + 13;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 605;
this.y = 100;
}
x = x + 12;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 606;
this.y = 100;
}
x = x + 13;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 803;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 804;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 805;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1500;
this.z = 806;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 807;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1203;
this.y = 100;
}
x = x - 17;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1204;
this.y = 100;
}
x = x - 17;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1205;
this.y = 100;
}
x = x - 17;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1206;
this.y = 100;
}
x = x - 17;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1207;
this.y = 100;
}
x = x - 17;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1980;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1981;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1982;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1983;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1984;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 1985;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1986;
this.y = 100;
}
x = x - 10;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -10;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2189;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 203 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 416;
this.z = 2499;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c1 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 832;
this.z = 2498;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c2 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1248;
this.z = 2497;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c3 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1664;
this.z = 2496;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c4 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 203 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2080;
this.z = 2495;
this.y = 100;
}
if (_root.colTest(_root.char, this, 40, 35) && (this._currentframe == 1)) {
_root.cave = true;
_root.char.gotoAndStop(11);
this.play();
_root.c5 = true;
_root.score = _root.score + 200;
_root.char.x = x;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:2500 + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 217 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -172;
this.z = 2183;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 70, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 220 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 2182;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 2184;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2185;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2186;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 167 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1005;
this.y = 100;
}
x = x + 45;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 500;
this.z = 808;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 183 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 809;
this.y = 100;
}
x = x - 9;
if (_root.colTest(_root.char, this, 80, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 195 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1208;
this.y = 100;
}
x = x - 17;
if (_root.colTest(_root.char, this, 225, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1780;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1781;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1782;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1783;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 260, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale * 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1784;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1785;
this.y = 100;
}
x = x + 4;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 4;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -1000;
this.z = 2380;
this.y = 100;
}
x = x + 15;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 15;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1403;
this.y = 100;
xspeed = 14;
}
if (x < 0) {
xspeed = 14;
}
if (x > 2500) {
xspeed = -14;
}
x = x + xspeed;
if (_root.colTest(_root.char, this, 125, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
if (xspeed > 0) {
_xscale = (_xscale * -1);
}
_root.depthcalc(this);
}
Instance of Symbol 155 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 408;
this.y = 100;
}
x = x - 14;
if (_root.colTest(_root.char, this, 120, 25)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1006;
this.y = 100;
}
x = x + 45;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 167 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1007;
this.y = 100;
}
x = x + 45;
if (_root.colTest(_root.char, this, 100, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 169 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 607;
this.y = 100;
}
x = x + 13;
if (_root.colTest(_root.char, this, 110, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
_root.depthcalc(this);
}
Instance of Symbol 217 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2828;
this.z = 2188;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 70, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 220 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 2187;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2381;
this.y = 100;
}
x = x + 15;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 15;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 200;
this.z = 2382;
this.y = 100;
}
x = x + 15;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 15;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 700;
this.z = 2383;
this.y = 100;
}
x = x + 15;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 15;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 2384;
this.y = 100;
}
x = x + 15;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = 15;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 225 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 1404;
this.y = 100;
xspeed = -14;
}
if (x < 0) {
xspeed = 14;
}
if (x > 2500) {
xspeed = -14;
}
x = x + xspeed;
if (_root.colTest(_root.char, this, 125, 25)) {
_root.char.gotoAndStop(9);
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
if (xspeed > 0) {
_xscale = (_xscale * -1);
}
_root.depthcalc(this);
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 0;
this.z = 1580;
this.y = 100;
}
x = x - 7;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 300;
this.z = 1581;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 600;
this.z = 1582;
this.y = 100;
}
x = x - 7;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 171 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 1000;
this.z = 1583;
this.y = 100;
}
x = x - 7;
if ((_root.colTest(_root.char, this, 65, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale / 2;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 1584;
this.y = 100;
}
x = x - 7;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2000;
this.z = 2385;
this.y = 100;
}
x = x + 15;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 15;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 2500;
this.z = 2386;
this.y = 100;
}
x = x + 15;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 15;
_root.logged = true;
}
if (x > 3500) {
x = -1000;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = this.pt2.scale;
this._yscale = this.pt2.scale;
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3200;
this.z = 2387;
this.y = 100;
}
x = x + 15;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = 15;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = 3000;
this.z = 1585;
this.y = 100;
}
x = x - 7;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 200 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 1586;
this.y = 100;
}
x = x - 7;
if (((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) && ((turt._currentframe < 12) || (turt._currentframe > 28))) {
_root.Lxspeed = -7;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 217 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -672;
this.z = 2181;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 70, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.char.gotoAndStop(9);
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 220 MovieClip in Frame 13
onClipEvent (enterFrame) {
if (this.y == undefined) {
this.x = -500;
this.z = 2180;
this.y = 100;
}
x = x - 8;
if ((_root.colTest(_root.char, this, 130, 25) && (_root.char._currentframe <= 8)) && (_root.char.fj._currentframe == 1)) {
_root.Lxspeed = -8;
_root.logged = true;
}
if (x < -1000) {
x = 3500;
}
this.pt1 = new Object(this);
this.pt1 = {x:this.x + _root.xp, y:this.y + _root.yp, z:this.z + _root.zp};
this.pt2 = _root.render3Dpoints(this.pt1);
this._x = this.pt2.x;
this._y = this.pt2.y;
this._xscale = (this._yscale = this.pt2.scale);
oz = z;
z = z + 30;
_root.depthcalc(this);
z = oz;
}
Instance of Symbol 213 MovieClip in Frame 13
onClipEvent (load) {
this.swapDepths(999999);
}
onClipEvent (enterFrame) {
if (_root.rem == true) {
removeMovieClip(this);
}
}
Frame 14
stop();
Instance of Symbol 61 MovieClip in Frame 14
on (release) {
getURL ("http://www.glaielgames.com", "_blank");
}
Instance of Symbol 87 MovieClip in Frame 14
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.gotoAndPlay(_root._currentframe - 1);
}
}
Frame 15
function submit() {
val = 10;
if (score > sc[9]) {
val = 9;
}
if (score > sc[8]) {
val = 8;
}
if (score > sc[7]) {
val = 7;
}
if (score > sc[6]) {
val = 6;
}
if (score > sc[5]) {
val = 5;
}
if (score > sc[4]) {
val = 4;
}
if (score > sc[3]) {
val = 3;
}
if (score > sc[2]) {
val = 2;
}
if (score > sc[1]) {
val = 1;
}
if (score > sc[0]) {
val = 0;
}
sc.splice(val, 0, score);
n.splice(val, 0, nam);
}
stop();
remove = true;
delete _root.onEnterFrame;
removeMovieClip(_root.grid);
_root.pos = SharedObject.getLocal("save1");
if (_root.pos.data.n[0] == undefined) {
_root.pos.data.n = new Array();
_root.pos.data.sc = new Array();
_root.pos.data.n = ["Frog", "Frog", "Frog", "Frog", "Frog", "Frog", "Frog", "Frog", "Frog", "Frog"];
_root.pos.data.sc = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
}
n = _root.pos.data.n;
sc = _root.pos.data.sc;
submit();
stopAllSounds();
score = 0;
Instance of Symbol 251 MovieClip in Frame 15
onClipEvent (enterFrame) {
_root.n0 = _root.n[0];
_root.n1 = _root.n[1];
_root.n2 = _root.n[2];
_root.n3 = _root.n[3];
_root.n4 = _root.n[4];
_root.n5 = _root.n[5];
_root.n6 = _root.n[6];
_root.n7 = _root.n[7];
_root.n8 = _root.n[8];
_root.n9 = _root.n[9];
_root.sc0 = _root.sc[0];
_root.sc1 = _root.sc[1];
_root.sc2 = _root.sc[2];
_root.sc3 = _root.sc[3];
_root.sc4 = _root.sc[4];
_root.sc5 = _root.sc[5];
_root.sc6 = _root.sc[6];
_root.sc7 = _root.sc[7];
_root.sc8 = _root.sc[8];
_root.sc9 = _root.sc[9];
_root.score = Number(_root.score);
}
Symbol 9 MovieClip Frame 10
stop();
Symbol 10 Button
on (release) {
getURL ("http://www.armorgames.com", "_blank");
}
Symbol 57 Button
on (release) {
_root.play();
}
Symbol 58 MovieClip Frame 143
_root.play();
stop();
Symbol 78 Button
on (release) {
play();
}
Symbol 79 Button
on (release) {
v = _root.inst._visible;
if (v == true) {
_root.inst._visible = false;
} else {
_root.inst._visible = true;
}
}
Symbol 97 MovieClip Frame 1
if (_parent.mov == true) {
stop();
}
_parent.mov = true;
Symbol 100 MovieClip Frame 1
if (_parent.mov == true) {
stop();
}
_parent.mov = true;
Symbol 103 MovieClip Frame 1
if (_parent.mov == true) {
stop();
}
_parent.mov = true;
Symbol 104 MovieClip Frame 1
if (_parent.mov == true) {
stop();
}
_parent.mov = true;
Symbol 105 MovieClip Frame 1
if (_parent.mov == true) {
stop();
}
_parent.mov = true;
Symbol 106 MovieClip Frame 1
if (_parent.mov == true) {
stop();
}
_parent.mov = true;
Symbol 107 MovieClip Frame 1
if (_parent.mov == true) {
stop();
}
_parent.mov = true;
Symbol 108 MovieClip Frame 1
if (_parent.mov == true) {
stop();
}
_parent.mov = true;
Symbol 112 MovieClip Frame 20
_root.char.x = 1200;
_root.char.z = 0;
_root.char.y = 100;
_root.timer = 100;
_root.lives = _root.lives - 1;
_root.char.mov = true;
_root.char.gotoAndStop(1);
stop();
Symbol 128 MovieClip Frame 25
_root.char.x = 1200;
_root.char.z = 0;
_root.char.y = 100;
_root.timer = 100;
_root.lives = _root.lives - 1;
_root.char.mov = true;
_root.char.gotoAndStop(1);
stop();
Symbol 133 MovieClip Frame 1
_root.score = _root.score + Math.round(_root.timer * 3);
_root.timer = 0;
Symbol 133 MovieClip Frame 15
_root.char.x = 1200;
_root.char.z = 0;
_root.char.y = 100;
_root.char.mov = true;
_root.timer = 100;
if (((((_root.c1 == true) && (_root.c2 == true)) && (_root.c3 == true)) && (_root.c4 == true)) && (_root.c5 == true)) {
_root.rem = true;
_root.score = _root.score + 2000;
_root.play();
}
_root.char.gotoAndStop(1);
stop();
Symbol 134 MovieClip Frame 1
stop();
Symbol 134 MovieClip Frame 2
stop();
Symbol 134 MovieClip Frame 3
stop();
Symbol 134 MovieClip Frame 4
stop();
Symbol 134 MovieClip Frame 5
stop();
Symbol 134 MovieClip Frame 6
stop();
Symbol 134 MovieClip Frame 7
stop();
Symbol 134 MovieClip Frame 8
stop();
Symbol 134 MovieClip Frame 9
stop();
Symbol 134 MovieClip Frame 10
stop();
Symbol 134 MovieClip Frame 11
stop();
Symbol 203 MovieClip Frame 1
stop();
Symbol 203 MovieClip Frame 2
stop();
Instance of Symbol 211 MovieClip in Symbol 213 MovieClip Frame 1
onClipEvent (load) {
p = new Color(this);
}
onClipEvent (enterFrame) {
_xscale = _root.timer;
_root.timer = _root.timer - 0.2;
if (_root.timer < 0) {
_xscale = 0;
if (_root.char._currentframe <= 8) {
_root.char.gotoAndPlay(9);
}
}
if (_root.timer < 20) {
p.setRGB(16711680);
} else {
p.setRGB(0);
}
}
Symbol 252 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("title");
}