STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228129
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2561 · P5121

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/55576363?noj=FRM55576363-15DC" width="1" height="1"></div>

3D Frogger.swf

This is the info page for
Flash #36564

(Click the ID number above for more basic data on this flash file.)


Text
.com

.com

Enter Name

000

000

mmmmmmmmmmm

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

Bob

1234567890

ActionScript [AS1/AS2]

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"); }

Library Items

Symbol 1 BitmapUsed by:2
Symbol 2 GraphicUses:1Used by:Timeline
Symbol 3 BitmapUsed by:4
Symbol 4 GraphicUses:3Used by:9 10
Symbol 5 BitmapUsed by:6
Symbol 6 GraphicUses:5Used by:7 10
Symbol 7 MovieClipUses:6Used by:8
Symbol 8 MovieClipUses:7Used by:9 10
Symbol 9 MovieClipUses:4 8Used by:10
Symbol 10 ButtonUses:4 8 9 6Used by:Timeline
Symbol 11 GraphicUsed by:Timeline
Symbol 12 GraphicUsed by:13
Symbol 13 MovieClipUses:12Used by:Timeline
Symbol 14 GraphicUsed by:58
Symbol 15 GraphicUsed by:58
Symbol 16 GraphicUsed by:58
Symbol 17 GraphicUsed by:58
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClipUses:18Used by:58
Symbol 20 GraphicUsed by:21
Symbol 21 MovieClipUses:20Used by:58
Symbol 22 GraphicUsed by:58
Symbol 23 GraphicUsed by:58
Symbol 24 GraphicUsed by:58
Symbol 25 GraphicUsed by:58
Symbol 26 GraphicUsed by:58
Symbol 27 GraphicUsed by:58
Symbol 28 GraphicUsed by:58
Symbol 29 GraphicUsed by:58
Symbol 30 GraphicUsed by:58
Symbol 31 GraphicUsed by:58
Symbol 32 SoundUsed by:58
Symbol 33 GraphicUsed by:58
Symbol 34 GraphicUsed by:58
Symbol 35 GraphicUsed by:58
Symbol 36 GraphicUsed by:58
Symbol 37 ShapeTweeningUsed by:58
Symbol 38 GraphicUsed by:58
Symbol 39 GraphicUsed by:58
Symbol 40 GraphicUsed by:58
Symbol 41 GraphicUsed by:58
Symbol 42 GraphicUsed by:58
Symbol 43 GraphicUsed by:58
Symbol 44 GraphicUsed by:58
Symbol 45 GraphicUsed by:58
Symbol 46 ShapeTweeningUsed by:58
Symbol 47 ShapeTweeningUsed by:58
Symbol 48 GraphicUsed by:52
Symbol 49 FontUsed by:50 51
Symbol 50 EditableTextUses:49Used by:52
Symbol 51 EditableTextUses:49Used by:52
Symbol 52 MovieClipUses:48 50 51Used by:58
Symbol 53 ShapeTweeningUsed by:58
Symbol 54 GraphicUsed by:58
Symbol 55 GraphicUsed by:58
Symbol 56 GraphicUsed by:57
Symbol 57 ButtonUses:56Used by:58
Symbol 58 MovieClipUses:14 15 16 17 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 52 53 54 55 57Used by:Timeline
Symbol 59 GraphicUsed by:Timeline
Symbol 60 GraphicUsed by:61
Symbol 61 MovieClipUses:60Used by:Timeline
Symbol 62 GraphicUsed by:63
Symbol 63 MovieClipUses:62Used by:66
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClipUses:64Used by:66
Symbol 66 MovieClipUses:63 65Used by:69
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:69
Symbol 69 MovieClipUses:66 68Used by:72
Symbol 70 GraphicUsed by:71
Symbol 71 MovieClipUses:70Used by:72
Symbol 72 MovieClipUses:69 71Used by:Timeline
Symbol 73 GraphicUsed by:76 78 79 104 252
Symbol 74 GraphicUsed by:78 79 252
Symbol 75 GraphicUsed by:76 104
Symbol 76 MovieClipUses:73 75Used by:78 79 252
Symbol 77 GraphicUsed by:78 79 252
Symbol 78 ButtonUses:73 74 76 77Used by:Timeline
Symbol 79 ButtonUses:73 74 76 77Used by:Timeline
Symbol 80 FontUsed by:81 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 253
Symbol 81 EditableTextUses:80Used by:Timeline
Symbol 82 GraphicUsed by:83
Symbol 83 MovieClipUses:82Used by:Timeline
Symbol 84 SoundUsed by:Timeline
Symbol 85 GraphicUsed by:Timeline
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClipUses:86Used by:Timeline
Symbol 88 GraphicUsed by:89
Symbol 89 MovieClipUses:88Used by:Timeline
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClipUses:90Used by:Timeline
Symbol 92 GraphicUsed by:93
Symbol 93 MovieClipUses:92Used by:134 155 167 169 183 195 225
Symbol 94 GraphicUsed by:97
Symbol 95 GraphicUsed by:97
Symbol 96 SoundUsed by:97 100 103 104 105 106 107 108
Symbol 97 MovieClipUses:94 95 96Used by:134
Symbol 98 GraphicUsed by:100 107 108
Symbol 99 GraphicUsed by:100 107 108
Symbol 100 MovieClipUses:98 99 96Used by:134
Symbol 101 GraphicUsed by:103 105 106
Symbol 102 GraphicUsed by:103 105 106 203
Symbol 103 MovieClipUses:101 102 96Used by:134
Symbol 104 MovieClipUses:73 75 96Used by:134
Symbol 105 MovieClipUses:101 102 96Used by:134
Symbol 106 MovieClipUses:101 102 96Used by:134
Symbol 107 MovieClipUses:98 99 96Used by:134
Symbol 108 MovieClipUses:98 99 96Used by:134
Symbol 109 GraphicUsed by:110
Symbol 110 MovieClipUses:109Used by:112
Symbol 111 SoundUsed by:112
Symbol 112 MovieClipUses:110 111Used by:134
Symbol 113 GraphicUsed by:128
Symbol 114 GraphicUsed by:128
Symbol 115 SoundUsed by:128
Symbol 116 GraphicUsed by:128
Symbol 117 GraphicUsed by:128
Symbol 118 GraphicUsed by:128
Symbol 119 GraphicUsed by:128
Symbol 120 GraphicUsed by:128
Symbol 121 GraphicUsed by:128
Symbol 122 GraphicUsed by:128
Symbol 123 GraphicUsed by:128
Symbol 124 GraphicUsed by:128
Symbol 125 GraphicUsed by:128
Symbol 126 GraphicUsed by:128
Symbol 127 GraphicUsed by:128
Symbol 128 MovieClipUses:113 114 115 116 117 118 119 120 121 122 123 124 125 126 127Used by:134
Symbol 129 GraphicUsed by:131
Symbol 130 GraphicUsed by:131
Symbol 131 MovieClipUses:129 130Used by:133
Symbol 132 SoundUsed by:133
Symbol 133 MovieClipUses:131 132Used by:134
Symbol 134 MovieClipUses:93 97 100 103 104 105 106 107 108 112 128 133Used by:Timeline
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:135Used by:Timeline
Symbol 137 BitmapUsed by:138 139 141
Symbol 138 GraphicUses:137Used by:142
Symbol 139 GraphicUses:137Used by:140
Symbol 140 MovieClipUses:139Used by:142
Symbol 141 GraphicUses:137Used by:142
Symbol 142 MovieClipUses:138 140 141Used by:143
Symbol 143 MovieClipUses:142Used by:Timeline
Symbol 144 GraphicUsed by:155
Symbol 145 GraphicUsed by:154
Symbol 146 GraphicUsed by:154
Symbol 147 GraphicUsed by:154
Symbol 148 GraphicUsed by:154
Symbol 149 GraphicUsed by:154
Symbol 150 GraphicUsed by:154
Symbol 151 GraphicUsed by:154
Symbol 152 GraphicUsed by:154
Symbol 153 GraphicUsed by:154
Symbol 154 MovieClipUses:145 146 147 148 149 150 151 152 153Used by:155
Symbol 155 MovieClipUses:93 144 154Used by:Timeline
Symbol 156 GraphicUsed by:165
Symbol 157 GraphicUsed by:165
Symbol 158 GraphicUsed by:165
Symbol 159 GraphicUsed by:165
Symbol 160 GraphicUsed by:165
Symbol 161 GraphicUsed by:165
Symbol 162 GraphicUsed by:165
Symbol 163 GraphicUsed by:165
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:156 157 158 159 160 161 162 163 164Used by:167 169
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClipUses:93 165 166Used by:Timeline
Symbol 168 GraphicUsed by:169
Symbol 169 MovieClipUses:93 168 165Used by:Timeline
Symbol 170 GraphicUsed by:171
Symbol 171 MovieClipUses:170Used by:Timeline
Symbol 172 GraphicUsed by:183
Symbol 173 GraphicUsed by:182
Symbol 174 GraphicUsed by:182
Symbol 175 GraphicUsed by:182
Symbol 176 GraphicUsed by:182
Symbol 177 GraphicUsed by:182
Symbol 178 GraphicUsed by:182
Symbol 179 GraphicUsed by:182
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:173 174 175 176 177 178 179 180 181Used by:183
Symbol 183 MovieClipUses:172 182 93Used by:Timeline
Symbol 184 GraphicUsed by:195
Symbol 185 GraphicUsed by:194
Symbol 186 GraphicUsed by:194
Symbol 187 GraphicUsed by:194
Symbol 188 GraphicUsed by:194
Symbol 189 GraphicUsed by:194
Symbol 190 GraphicUsed by:194
Symbol 191 GraphicUsed by:194
Symbol 192 GraphicUsed by:194
Symbol 193 GraphicUsed by:194
Symbol 194 MovieClipUses:185 186 187 188 189 190 191 192 193Used by:195
Symbol 195 MovieClipUses:93 184 194Used by:Timeline
Symbol 196 GraphicUsed by:199
Symbol 197 GraphicUsed by:199
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:196 197 198Used by:200
Symbol 200 MovieClipUses:199Used by:Timeline
Symbol 201 GraphicUsed by:203
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:201 202 102Used by:Timeline
Symbol 204 GraphicUsed by:213
Symbol 205 FontUsed by:206 207
Symbol 206 EditableTextUses:205Used by:213
Symbol 207 EditableTextUses:205Used by:213
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:213
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:213
Symbol 212 GraphicUsed by:213
Symbol 213 MovieClipUses:204 206 207 209 211 212Used by:Timeline
Symbol 214 GraphicUsed by:Timeline
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215Used by:217
Symbol 217 MovieClipUses:216Used by:Timeline
Symbol 218 GraphicUsed by:219
Symbol 219 MovieClipUses:218Used by:220
Symbol 220 MovieClipUses:219Used by:Timeline
Symbol 221 GraphicUsed by:Timeline
Symbol 222 GraphicUsed by:224
Symbol 223 GraphicUsed by:224
Symbol 224 MovieClipUses:222 223Used by:225
Symbol 225 MovieClipUses:93 224Used by:Timeline
Symbol 226 GraphicUsed by:Timeline
Symbol 227 GraphicUsed by:Timeline
Symbol 228 GraphicUsed by:Timeline
Symbol 229 GraphicUsed by:Timeline
Symbol 230 EditableTextUses:80Used by:Timeline
Symbol 231 EditableTextUses:80Used by:Timeline
Symbol 232 EditableTextUses:80Used by:Timeline
Symbol 233 EditableTextUses:80Used by:Timeline
Symbol 234 EditableTextUses:80Used by:Timeline
Symbol 235 EditableTextUses:80Used by:Timeline
Symbol 236 EditableTextUses:80Used by:Timeline
Symbol 237 EditableTextUses:80Used by:Timeline
Symbol 238 EditableTextUses:80Used by:Timeline
Symbol 239 EditableTextUses:80Used by:Timeline
Symbol 240 EditableTextUses:80Used by:Timeline
Symbol 241 EditableTextUses:80Used by:Timeline
Symbol 242 EditableTextUses:80Used by:Timeline
Symbol 243 EditableTextUses:80Used by:Timeline
Symbol 244 EditableTextUses:80Used by:Timeline
Symbol 245 EditableTextUses:80Used by:Timeline
Symbol 246 EditableTextUses:80Used by:Timeline
Symbol 247 EditableTextUses:80Used by:Timeline
Symbol 248 EditableTextUses:80Used by:Timeline
Symbol 249 EditableTextUses:80Used by:Timeline
Symbol 250 GraphicUsed by:251
Symbol 251 MovieClipUses:250Used by:Timeline
Symbol 252 ButtonUses:73 74 76 77Used by:Timeline
Symbol 253 EditableTextUses:80Used by:Timeline

Instance Names

"inst"Frame 3Symbol 83 MovieClip
"char"Frame 5Symbol 134 MovieClip
"tree"Frame 5Symbol 136 MovieClip
"wall"Frame 5Symbol 143 MovieClip
"char"Frame 7Symbol 134 MovieClip
"tree"Frame 7Symbol 136 MovieClip
"wall"Frame 7Symbol 143 MovieClip
"char"Frame 9Symbol 134 MovieClip
"tree"Frame 9Symbol 136 MovieClip
"wall"Frame 9Symbol 143 MovieClip
"char"Frame 11Symbol 134 MovieClip
"tree"Frame 11Symbol 136 MovieClip
"wall"Frame 11Symbol 143 MovieClip
"char"Frame 13Symbol 134 MovieClip
"tree"Frame 13Symbol 136 MovieClip
"wall"Frame 13Symbol 143 MovieClip
"fj"Symbol 134 MovieClip Frame 1Symbol 97 MovieClip
"fj"Symbol 134 MovieClip Frame 2Symbol 100 MovieClip
"fj"Symbol 134 MovieClip Frame 3Symbol 103 MovieClip
"fj"Symbol 134 MovieClip Frame 4Symbol 104 MovieClip
"fj"Symbol 134 MovieClip Frame 5Symbol 105 MovieClip
"fj"Symbol 134 MovieClip Frame 6Symbol 106 MovieClip
"fj"Symbol 134 MovieClip Frame 7Symbol 107 MovieClip
"fj"Symbol 134 MovieClip Frame 8Symbol 108 MovieClip
"turt"Symbol 200 MovieClip Frame 1Symbol 199 MovieClip
"head"Symbol 217 MovieClip Frame 1Symbol 216 MovieClip

Labels

"title"Frame 3
"dead"Frame 15

Dynamic Text Variables

namSymbol 81 EditableText"Enter Name"
_root.livesSymbol 206 EditableText"000"
_root.scoreSymbol 207 EditableText"000"
n0Symbol 230 EditableText"mmmmmmmmmmm"
n1Symbol 231 EditableText"Bob"
n2Symbol 232 EditableText"Bob"
n3Symbol 233 EditableText"Bob"
n4Symbol 234 EditableText"Bob"
n5Symbol 235 EditableText"Bob"
n6Symbol 236 EditableText"Bob"
n7Symbol 237 EditableText"Bob"
n8Symbol 238 EditableText"Bob"
n9Symbol 239 EditableText"Bob"
sc0Symbol 240 EditableText"Bob"
sc1Symbol 241 EditableText"Bob"
sc2Symbol 242 EditableText"Bob"
sc3Symbol 243 EditableText"Bob"
sc4Symbol 244 EditableText"Bob"
sc5Symbol 245 EditableText"Bob"
sc6Symbol 246 EditableText"Bob"
sc7Symbol 247 EditableText"Bob"
sc8Symbol 248 EditableText"Bob"
sc9Symbol 249 EditableText"Bob"
scoreSymbol 253 EditableText"1234567890"




http://swfchan.com/8/36564/info.shtml
Created: 15/5 -2019 02:56:56 Last modified: 15/5 -2019 02:56:56 Server time: 15/05 -2024 02:03:18