Frame 1
function itemHandler5(obj, item) {
_quality = "high";
}
function itemHandler6(obj, item) {
_quality = "medium";
}
function itemHandler7(obj, item) {
_quality = "low";
}
function itemHandler1(obj, item) {
getURL ("http://www.penandpaper.com.au.tt");
}
function itemHandler2(obj, item) {
getURL ("http://www.system-next.com.au.tt");
}
function itemHandler3(obj, item) {
getURL ("http://www.armorgames.com");
}
root_cm = new ContextMenu();
root_cm.hideBuiltInItems();
root_cm.customItems.push(new ContextMenuItem("Visit Pen and Paper Productions", itemHandler1));
root_cm.customItems.push(new ContextMenuItem("Visit System Next", itemHandler2));
root_cm.customItems.push(new ContextMenuItem("Visit Armor Games", itemHandler3));
eee_cmi = new ContextMenuItem("High Quality", itemHandler5);
fff_cmi = new ContextMenuItem("Mid Quality", itemHandler6);
ggg_cmi = new ContextMenuItem("Low Quality", itemHandler7);
ccc_cmi.separatorBefore = true;
eee_cmi.separatorBefore = true;
root_cm.customItems.push(aaa_cmi, bbb_cmi, ccc_cmi, ddd_cmi, eee_cmi, fff_cmi, ggg_cmi);
_root.menu = root_cm;
Instance of Symbol 157 MovieClip in Frame 2
/* no clip actions */
Frame 230
stop();
Frame 231
stop();
Instance of Symbol 209 MovieClip in Frame 231
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 232
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 232
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (275);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 232
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 232
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 232
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 232
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 232
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 232
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 232
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 232
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 232
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (232);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 232
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 233
stop();
Instance of Symbol 209 MovieClip in Frame 233
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 234
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 234
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (277);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 234
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 234
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 234
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 234
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 234
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 234
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 234
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 234
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 234
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 234
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 234
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (234);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 234
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 235
stop();
Instance of Symbol 209 MovieClip in Frame 235
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 236
stop();
stop();
Instance of Symbol 249 MovieClip "lock1" in Frame 236
onClipEvent (load) {
gotkey = 0;
locktested = 0;
}
onClipEvent (enterFrame) {
if (locktested == 0) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (279);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.key._x = this._parent.key._x - 500;
this._parent.lock.gotoAndPlay(1);
if (this._parent.lock2.locktested == 0) {
this._parent.lock2.gotoAndPlay(1);
}
locktested = 1;
gotkey = 0;
this._parent.lock.gotkey = 0;
this._parent.lock2.gotkey = 0;
}
}
}
}
Instance of Symbol 215 MovieClip "key" in Frame 236
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
if (this._parent.lock1.locktested == 0) {
this._parent.lock1.gotoAndPlay(2);
}
if (this._parent.lock2.locktested == 0) {
this._parent.lock2.gotoAndPlay(2);
}
_x = (_x + 500);
this._parent.lock.gotkey = 1;
this._parent.lock1.gotkey = 1;
this._parent.lock2.gotkey = 1;
}
}
Instance of Symbol 213 MovieClip "lock" in Frame 236
onClipEvent (load) {
gotkey = 0;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (279);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
if (this._parent.lock1.locktested == 0) {
this._parent.lock1.gotoAndPlay(1);
}
if (this._parent.lock2.locktested == 0) {
this._parent.lock2.gotoAndPlay(1);
}
this._parent.lock2.gotkey = 0;
this._parent.lock1.gotkey = 0;
gotkey = 0;
}
}
}
Instance of Symbol 249 MovieClip "lock2" in Frame 236
onClipEvent (load) {
gotkey = 0;
locktested = 0;
}
onClipEvent (enterFrame) {
if (locktested == 0) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (279);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.key._x = this._parent.key._x - 500;
this._parent.lock.gotoAndPlay(1);
if (this._parent.lock1.locktested == 0) {
this._parent.lock1.gotoAndPlay(1);
}
locktested = 1;
gotkey = 0;
this._parent.lock.gotkey = 0;
this._parent.lock1.gotkey = 0;
}
}
}
}
Instance of Symbol 217 MovieClip in Frame 236
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 236
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 236
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 236
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 236
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 236
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 236
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 236
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 236
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 236
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (236);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 236
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 237
stop();
Instance of Symbol 209 MovieClip in Frame 237
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 238
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 238
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (281);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 238
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 238
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 238
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 238
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 238
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 238
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (238);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 238
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 239
stop();
Instance of Symbol 209 MovieClip in Frame 239
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 240
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 240
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (283);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 240
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 266 MovieClip in Frame 240
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.normspeed = false;
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 240
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 240
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 240
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 240
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 240
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (240);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 240
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 241
stop();
Instance of Symbol 209 MovieClip in Frame 241
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 242
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 242
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (285);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 242
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 242
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 242
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 242
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 242
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 242
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 242
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 242
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 242
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 266 MovieClip in Frame 242
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.normspeed = false;
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 242
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 242
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 242
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 242
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 242
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 242
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 242
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (242);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 242
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 243
stop();
Instance of Symbol 209 MovieClip in Frame 243
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 244
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 244
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (287);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 266 MovieClip in Frame 244
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.normspeed = false;
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 244
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 244
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 244
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 244
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 244
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 244
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 244
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 244
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (244);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 244
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 245
stop();
Instance of Symbol 209 MovieClip in Frame 245
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 246
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 246
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (289);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 266 MovieClip in Frame 246
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.normspeed = false;
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 260 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 246
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 246
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 246
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 246
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 246
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 246
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 246
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 246
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 246
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (246);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 246
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 247
stop();
Instance of Symbol 209 MovieClip in Frame 247
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 248
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 248
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (291);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 248
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 248
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 248
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 248
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 248
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 248
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 248
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 248
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 248
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (248);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 248
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 249
stop();
Instance of Symbol 209 MovieClip in Frame 249
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 250
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 250
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (293);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 250
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 250
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 250
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 250
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 250
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 250
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 250
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 250
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 250
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (250);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 250
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 251
stop();
Instance of Symbol 209 MovieClip in Frame 251
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 252
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 252
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (295);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 252
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 252
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 252
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 252
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 252
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 252
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 252
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 266 MovieClip in Frame 252
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.normspeed = false;
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 260 MovieClip in Frame 252
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 252
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 176 MovieClip "homing2" in Frame 252
onClipEvent (load) {
speed = 25;
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
xx = _x - _root.player._x;
yy = _y - _root.player._y;
dist = Math.sqrt((xx * xx) + (yy * yy));
if (dist < 250) {
getX = _root.player._x;
getY = _root.player._y;
gotoX = (getX - _x) / speed;
gotoY = (getY - _y) / speed;
_x = (_x + gotoX);
_y = (_y + gotoY);
} else {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 252
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 252
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 252
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 252
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 252
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 252
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 252
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (252);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 252
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 253
stop();
Instance of Symbol 209 MovieClip in Frame 253
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 254
stop();
stop();
Instance of Symbol 215 MovieClip in Frame 254
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 213 MovieClip "lock" in Frame 254
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (297);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 217 MovieClip in Frame 254
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 254
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 254
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 254
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 254
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 296 MovieClip in Frame 254
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.invincible = true;
this._parent.player.gotoAndPlay(2);
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 260 MovieClip in Frame 254
onClipEvent (load) {
speed = random(4) + 1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
_y = (_y + speed);
if (_y <= 27) {
speed = speed * -1;
}
if (_y >= 257.3) {
speed = speed * -1;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 254
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 254
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 254
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (254);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 254
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 255
stop();
Instance of Symbol 209 MovieClip in Frame 255
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 256
stop();
stop();
Instance of Symbol 217 MovieClip in Frame 256
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 256
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 256
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 256
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 256
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 215 MovieClip in Frame 256
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 213 MovieClip "lock" in Frame 256
onClipEvent (load) {
movement = true;
gotkey = o;
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (299);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
movement = false;
}
}
if (movement == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 256
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 256
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 256
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (256);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 256
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 257
stop();
Instance of Symbol 209 MovieClip in Frame 257
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 258
stop();
stop();
Instance of Symbol 215 MovieClip in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
_x = (_x + xspeed);
_y = (_y + yspeed);
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
}
Instance of Symbol 213 MovieClip "lock" in Frame 258
onClipEvent (load) {
movement = true;
gotkey = o;
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (301);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
movement = false;
}
}
if (movement == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
}
Instance of Symbol 217 MovieClip in Frame 258
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 258
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 258
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 258
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 258
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 258
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 258
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 258
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (258);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 258
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 259
stop();
Instance of Symbol 209 MovieClip in Frame 259
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 260
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 260
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (303);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 260
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 260
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 260
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 260
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 260
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 260
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 260
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 260
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 260
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (260);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 260
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 261
stop();
Instance of Symbol 209 MovieClip in Frame 261
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 262
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 262
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (305);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 266 MovieClip in Frame 262
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.normspeed = false;
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 176 MovieClip "homing2" in Frame 262
onClipEvent (load) {
speed = 25;
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
xx = _x - _root.player._x;
yy = _y - _root.player._y;
dist = Math.sqrt((xx * xx) + (yy * yy));
if (dist < 250) {
getX = _root.player._x;
getY = _root.player._y;
gotoX = (getX - _x) / speed;
gotoY = (getY - _y) / speed;
_x = (_x + gotoX);
_y = (_y + gotoY);
} else {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 262
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 262
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 262
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 262
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (262);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 262
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 263
stop();
Instance of Symbol 209 MovieClip in Frame 263
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 264
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 264
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (307);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 264
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 264
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 264
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 264
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 264
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 264
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 264
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 68) {
xspeed = xspeed * -1;
}
if (_x >= 1794.9) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 94)) {
yspeed = yspeed * -1;
}
if (_y <= 95.3) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 264
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 68) {
xspeed = xspeed * -1;
}
if (_x >= 1794.9) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 94)) {
yspeed = yspeed * -1;
}
if (_y <= 95.3) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 264
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 68) {
xspeed = xspeed * -1;
}
if (_x >= 1794.9) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 94)) {
yspeed = yspeed * -1;
}
if (_y <= 95.3) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 264
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 68) {
xspeed = xspeed * -1;
}
if (_x >= 1794.9) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 94)) {
yspeed = yspeed * -1;
}
if (_y <= 95.3) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 264
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 68) {
xspeed = xspeed * -1;
}
if (_x >= 1794.9) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 94)) {
yspeed = yspeed * -1;
}
if (_y <= 95.3) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 264
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 68) {
xspeed = xspeed * -1;
}
if (_x >= 1794.9) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 94)) {
yspeed = yspeed * -1;
}
if (_y <= 95.3) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 264
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 68) {
xspeed = xspeed * -1;
}
if (_x >= 1794.9) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 94)) {
yspeed = yspeed * -1;
}
if (_y <= 95.3) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 266 MovieClip in Frame 264
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.normspeed = false;
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 264
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 264
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (264);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 264
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 265
stop();
Instance of Symbol 209 MovieClip in Frame 265
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 266
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 266
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (309);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 296 MovieClip in Frame 266
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.invincible = true;
this._parent.player.gotoAndPlay(2);
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 260 MovieClip in Frame 266
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 266
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 266
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 266
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 266
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 266
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 266
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 266
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 266
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1800.2) {
_x = 1800.2;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -63.2) {
_x = -63.2;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (266);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 266
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 267
stop();
Instance of Symbol 209 MovieClip in Frame 267
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 268
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 268
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (311);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 268
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 296 MovieClip in Frame 268
onClipEvent (enterFrame) {
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
_x = -100;
this._parent.player.invincible = true;
this._parent.player.gotoAndPlay(2);
this._parent.clock._alpha = 100;
this._parent.clock.clockflash.arm.gotoAndPlay(1);
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 268
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 268
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 268
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 268
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 268
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 268
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 268
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 268
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 268
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (268);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 268
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 269
stop();
Instance of Symbol 209 MovieClip in Frame 269
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
_root.nextFrame();
}
}
Frame 270
stop();
stop();
Instance of Symbol 213 MovieClip "lock" in Frame 270
onClipEvent (load) {
gotkey = o;
}
onClipEvent (enterFrame) {
if (gotkey == 1) {
if (hitTest(this._parent.player)) {
gotoAndStop (313);
this._parent.arrowsbot.gotoAndPlay(1);
this._parent.arrowstop.gotoAndPlay(1);
this._parent.finishblock._x = 2000;
}
}
}
Instance of Symbol 215 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (hitTest(this._parent.player)) {
this._parent.arrowsbot.gotoAndPlay(41);
this._parent.arrowstop.gotoAndPlay(41);
this._parent.lock.gotoAndPlay(2);
_x = -50;
this._parent.lock.gotkey = 1;
}
}
Instance of Symbol 217 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = 41.2;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 219 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._y = Stage.height - 39;
_root.player.Velocity._y = _root.player.Velocity._y * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player._x = 13.2;
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip "finishblock" in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = _root.player.Velocity._x * -1.2;
}
}
Instance of Symbol 221 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.nextFrame();
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * 2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 260 MovieClip in Frame 270
onClipEvent (enterFrame) {
if (this.hitTest(_root.player)) {
_root.player.Velocity._x = Math.abs(_root.player.Velocity._x) * -2;
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 223 MovieClip "ball" in Frame 270
onClipEvent (load) {
xspeed = random(5) - random(10);
yspeed = random(5) - random(10);
if (xspeed == 0) {
xspeed = xspeed + 2;
}
if (yspeed == 0) {
yspeed = yspeed + 2;
}
}
onClipEvent (enterFrame) {
if (this._parent.player.normspeed == true) {
_x = (_x + xspeed);
_y = (_y + yspeed);
}
if (_x <= 26.5) {
xspeed = xspeed * -1;
}
if (_x >= 1837.2) {
xspeed = xspeed * -1;
}
if (_y >= (Stage.height - 53.8)) {
yspeed = yspeed * -1;
}
if (_y <= 53.8) {
yspeed = yspeed * -1;
}
radius = _width / 2;
radius2 = this._parent.player._width / 2;
dist = Math.sqrt(Math.pow(_x - this._parent.player._x, 2) + Math.pow(_y - this._parent.player._y, 2));
if (dist < (radius + radius2)) {
if (this._parent.player.invincible == false) {
_root.prevFrame();
}
}
}
Instance of Symbol 233 MovieClip "clock" in Frame 270
onClipEvent (enterFrame) {
_x = this._parent.cam._x;
}
Instance of Symbol 236 MovieClip "player" in Frame 270
onClipEvent (load) {
this.Velocity = {_x:0, _y:0};
_root.WORLD_FRICTION = 0.97;
_root.WORLD_MOVESPEED = 0.5;
invincible = false;
count = 0;
this._parent.clock._alpha = 0;
normspeed = true;
}
onClipEvent (enterFrame) {
if (Key.isDown(37)) {
this.Velocity._x = this.Velocity._x - _root.WORLD_MOVESPEED;
}
if (Key.isDown(39)) {
this.Velocity._x = this.Velocity._x + _root.WORLD_MOVESPEED;
}
if (Key.isDown(38)) {
this.Velocity._y = this.Velocity._y - _root.WORLD_MOVESPEED;
}
if (Key.isDown(40)) {
this.Velocity._y = this.Velocity._y + _root.WORLD_MOVESPEED;
}
this.Velocity._x = this.Velocity._x * _root.WORLD_FRICTION;
this.Velocity._y = this.Velocity._y * _root.WORLD_FRICTION;
this._x = this._x + this.Velocity._x;
this._y = this._y + this.Velocity._y;
if (this.Velocity._x > 40) {
this.Velocity._x = 40;
}
if (this._parent.finishblock._x != 2000) {
if (_x > 1851) {
_x = 1851;
Velocity._x = Velocity._x / 2;
}
}
if (_x < -12.4) {
_x = -12.4;
Velocity._x = Velocity._x / 2;
}
if (invincible == true) {
count = count + 1;
if (count >= 240) {
invincible = false;
gotoAndPlay (270);
this._parent.clock._alpha = 0;
count = 0;
}
}
if (normspeed == false) {
count = count + 1;
if (count >= 240) {
normspeed = true;
this._parent.clock._alpha = 0;
count = 0;
}
}
}
Instance of Symbol 238 MovieClip "cam" in Frame 270
onClipEvent (enterFrame) {
if ((this._parent.player._x >= 320) && (this._parent.player._x <= 1543)) {
_x = this._parent.player._x;
}
if (this._parent.player._x <= 320) {
_x = 320;
}
if (this._parent.player._x >= 1543) {
_x = 1543;
}
}
Frame 271
stop();
Frame 272
stop();
Frame 273
stop();
Frame 274
stop();
Frame 275
stop();
Frame 276
stop();
Frame 277
stop();
Frame 278
stop();
Instance of Symbol 366 MovieClip "code_storage" in Frame 278
onClipEvent (load) {
code2 = "phusp9";
code3 = "p8uf9e";
code4 = "phe2e8";
code5 = "de8e4e";
code6 = "hac2ga";
code7 = "m25rud";
code8 = "w3adra";
code9 = "stata9";
code10 = "kah4ke";
code11 = "g7brac";
code12 = "65vepr";
code13 = "gucad4";
code14 = "wru2as";
code15 = "fra6h9";
code16 = "yekas7";
code17 = "thep3e";
code18 = "c7utru";
code19 = "kaw6as";
code20 = "fre7u7";
}
Instance of Symbol 373 MovieClip in Frame 278
on (release) {
level = this._parent.level.text;
code = this._parent.levelcode.text;
levelplay = ((level * 2) - 1) + 230;
if (this._parent.code_storage["code" + level] == code) {
this._parent.playsound.gotoAndPlay(2);
_root.gotoAndPlay(levelplay);
} else {
this._parent.wrong.gotoAndPlay(2);
}
}
on (rollOver) {
gotoAndStop (279);
}
on (rollOut) {
gotoAndPlay (278);
}
Symbol 9 Button
on (release) {
getURL ("http://www.newgrounds.com", "blank");
}
Symbol 14 Button
on (release) {
_root.play();
}
Symbol 15 MovieClip Frame 1
_root.stop();
PercentLoaded = (_root.getBytesLoaded() / _root.getBytesTotal()) * 100;
if (PercentLoaded != 100) {
bar._xscale = PercentLoaded;
} else {
gotoAndStop ("loaded");
}
Symbol 15 MovieClip Frame 2
gotoAndPlay (1);
Symbol 18 Button
on (release) {
getURL ("http://www.armorgames.com/", "_blank");
}
Symbol 157 MovieClip Frame 145
stop();
Symbol 159 Button
on (release) {
getURL ("http://www.penandpaper.com.au.tt/", "_blank");
}
Symbol 162 Button
on (release) {
getURL ("http://www.armorgames.com", "blank");
}
Symbol 169 MovieClip Frame 81
_root.play();
_root.play();
Symbol 192 Button
on (release) {
gotoAndStop (231);
}
Symbol 195 Button
on (release) {
gotoAndStop (278);
}
Symbol 198 Button
on (release) {
gotoAndStop (272);
}
Symbol 203 Button
on (release) {
gotoAndStop (230);
}
Symbol 213 MovieClip Frame 1
stop();
Symbol 213 MovieClip Frame 21
gotoAndPlay (2);
Symbol 213 MovieClip Frame 44
stop();
Symbol 226 MovieClip Frame 40
gotoAndPlay (1);
Symbol 226 MovieClip Frame 81
gotoAndPlay (41);
Symbol 236 MovieClip Frame 1
stop();
Symbol 236 MovieClip Frame 2
stop();
Symbol 238 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var _local4 = sX / this._width;
var _local3 = sY / this._height;
_parent._x = cX - (this._x * _local4);
_parent._y = cY - (this._y * _local3);
_parent._xscale = 100 * _local4;
_parent._yscale = 100 * _local3;
}
function resetStage() {
var _local2 = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(_local2);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 249 MovieClip Frame 1
stop();
Symbol 249 MovieClip Frame 21
gotoAndPlay (2);
Symbol 249 MovieClip Frame 44
stop();
Symbol 335 Button
on (release) {
getURL ("http://www.penandpaper.com.au.tt/", "_blank");
}
Symbol 338 Button
on (release) {
getURL ("http://www.system-next.com.au.tt/", "_blank");
}
Symbol 341 Button
on (release) {
getURL ("http://www.armorgames.com/", "_blank");
}
Symbol 350 Button
on (release) {
nextFrame();
}
Symbol 356 Button
on (release) {
prevFrame();
}
Symbol 361 MovieClip Frame 1
stop();
Symbol 371 MovieClip Frame 1
stop();
Symbol 373 MovieClip Frame 1
stop();
Symbol 375 MovieClip Frame 1
stop();
Symbol 375 MovieClip Frame 2
gotoAndStop (1);