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

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

466670_The_bright_from_the_screen.swf

This is the info page for
Flash #44190

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


Text
THE BRIGHT IN
THE SCREEN

brought to you by

<p align="left"><font face="_typewriter" size="9" color="#ffffff" letterSpacing="0.000000" kerning="0">Newgrounds halloween collection 2008</font></p>

<p align="center"><font face="_typewriter" size="20" color="#ff0000" letterSpacing="0.000000" kerning="0"><b>WARNING: </b><font color="#ffffff"><b>This game is extremely <sbr />frustrating and unfair.</b></font></font></p><p align="center"><font face="_typewriter" size="11" color="#ffffff" letterSpacing="0.000000" kerning="0"><b>and glitchy</b></font></p><p align="center"><font face="_typewriter" size="8" color="#ffffff" letterSpacing="0.000000" kerning="0"><b>just the way you like it</b></font></p>

a HapPie game

repeat

CLICK ME

CLICK ME

CLICK

MUSIC BOX 1

repeat

WATCH ME

MUSIC BOX 2

click it man


Click this

CLICK

IF YOU MESS UP TOO
MUCH: RED BUTTONS

MUSIC BOX
LVL2

DONT

HOW YOU DARE GLITCHING MY GAME
LITTLE RED FREAK

The moon in your face

Red freaks conversating

Red freak painting self
portrait

Red freak self-portrait

Take it

<p align="center"><font face="_typewriter" size="28" color="#ffffff" letterSpacing="0.000000" kerning="0">A message from the company:</font></p><p align="center"><font face="_typewriter" size="28" color="#ffffff" letterSpacing="0.000000" kerning="0"><b>LIGHTS OUT!</b></font></p><p align="center"><font face="_typewriter" size="28" color="#ffffff" letterSpacing="0.000000" kerning="0">KEEP THE MOUSE OVER YOURSELF TO <sbr />CAST YOUR INNER LIGHT OR <sbr />SOMETHING </font></p>

You are here
PUT YOUR MOUSE
OVER HERE

YOU MAY ALSO EXPERIENCE SOME SLOWDOWN
PLEASE BE PATIENT
( ´-`)/

<p align="center"><font face="_typewriter" size="28" color="#ffffff" letterSpacing="0.000000" kerning="0">A message from the company:</font></p><p align="center"><font face="_typewriter" size="28" color="#ffffff" letterSpacing="0.000000" kerning="0">THE PROBLEM IS BEING SOLVED.</font></p><p align="center"><font face="_typewriter" size="28" color="#ffffff" letterSpacing="0.000000" kerning="0"><b>PLEASE REFRAIN FROM DIEING,</b></font></p><p align="center"><font face="_typewriter" size="28" color="#ffffff" letterSpacing="0.000000" kerning="0">AS WE KNOW YOU ARE USELESS <sbr />WITHOUT LIGHT</font></p>

You are here

TRUTH

GET TO THE
OTHER SIDE

GET TO THE
OTHER SIDE

ActionScript [AS1/AS2]

Frame 1
function deadClick() { } function max() { getURL ("http://www.newgrounds.com/collection/halloween2008.html"); } function suicide() { _root.gotoAndStop("D"); } function quality_low() { _quality = "low"; } function quality_med() { _quality = "medium"; } function quality_high() { _quality = "high"; } loadedbytes = getBytesLoaded(); totalbytes = getBytesTotal(); percentbytes = int(loadedbytes / (totalbytes / 100)); loader.gotoAndStop(percentbytes); var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); var qualitylow = new ContextMenuItem("Low Quality", quality_low); var qualitymed = new ContextMenuItem("Medium Quality", quality_med); var qualityhigh = new ContextMenuItem("High Quality", quality_high); var copyrightNotice = new ContextMenuItem("\u00A9 2008 HapPie", deadClick); var copyrightNotice = new ContextMenuItem("More 'scary' movies and games at Newgrounds", max); copyrightNotice.separatorBefore = true; commit.separatorBefore = true; myMenu.customItems.push(qualityhigh, qualitymed, qualitylow, copyrightNotice); _root.menu = myMenu; score = 0; function SpawnEnemy() { duplicateMovieClip (_root.Ene, "Ene" + i, i); attachMovie("Loader_enemy", "Ene" + i, i); Dod = _root["Ene" + (i / 10)]; Dod._y = SpawnPointY; Dod._x = SpawnPointX; Dod._x = Math.random() * Stage.width; Dod._y = Math.random() * Stage.height; i++; } k = Math.round(Math.random()); var i = 0; var SpawnPointY = 300; var SpawnPointX = 450; onEnterFrame = function () { SpawnEnemy(); };
Instance of Symbol 88 MovieClip "player" in Frame 1
onClipEvent (load) { var grav = 0; var run = 5; var wlk = 0; var speed = run; var jumpHeight = 8; var dbl = 6; var tri = 6; var djump = false; var tjump = false; var thro = false; var slow = 0.7; var slowspd = (speed / 2); var setspeed = speed; var scale = _xscale; var ex = 5; } onClipEvent (enterFrame) { grav++; _y = (_y + grav); if (Key.isDown(65)) { setspeed = wlk; } else { setspeed = run; } while (_root.ground.hitTest(_x, _y, true)) { djump = false; tjump = false; _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { grav = grav * (slow * 1.25); } else { speed = setspeed; } if (Key.isDown(39)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } } else if (Key.isDown(37)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(68))) && (!Key.isDown(83))) { this.gotoAndStop(3); } if (((((Key.isDown(68) && (!Key.isDown(38))) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(83))) && (_root.ground.hitTest(_x, _y + 3, true))) { this.gotoAndStop(8); } if ((((((Key.isDown(83) && (!Key.isDown(39))) && (!Key.isDown(37))) && (!Key.isDown(38))) && (!Key.isDown(68))) && (_root.ground.hitTest(_x, _y + 3, true))) && (_currentframe != 6)) { this.gotoAndStop(7); } else if (Key.isDown(83) && (grav > 1)) { this.gotoAndStop(6); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } }
Frame 2
if (loadedbytes == totalbytes) { gotoAndStop (3); } else { gotoAndPlay (1); }
Frame 3
play();
Frame 211
play();
Frame 687
health = 100; function deadClick() { } function max() { getURL ("http://www.newgrounds.com/collection/halloween2008.html"); } function suicide() { _root.gotoAndStop("D"); } function quality_low() { _quality = "low"; } function quality_med() { _quality = "medium"; } function quality_high() { _quality = "high"; } loadedbytes = getBytesLoaded(); totalbytes = getBytesTotal(); percentbytes = int(loadedbytes / (totalbytes / 100)); loader.gotoAndStop(percentbytes); var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); var qualitylow = new ContextMenuItem("Low Quality", quality_low); var qualitymed = new ContextMenuItem("Medium Quality", quality_med); var qualityhigh = new ContextMenuItem("High Quality", quality_high); var copyrightNotice = new ContextMenuItem("\u00A9 2008 HapPie", deadClick); var copyrightNotice = new ContextMenuItem("More 'scary' movies and games at Newgrounds", max); var commit = new ContextMenuItem("Commit suicide", suicide); copyrightNotice.separatorBefore = true; commit.separatorBefore = true; myMenu.customItems.push(qualityhigh, qualitymed, qualitylow, commit, copyrightNotice); _root.menu = myMenu; stop();
Instance of Symbol 230 MovieClip "player" in Frame 687
onClipEvent (load) { var grav = 2; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 3; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.enemy)) { _root.health = _root.health - 40; this.gotoAndStop(4); } if (_root.health <= 0) { _root.gotoAndPlay("D"); } }
Instance of Symbol 235 MovieClip in Frame 687
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 737
stop();
Frame 738
stop(); health = 100;
Instance of Symbol 322 MovieClip in Frame 738
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 230 MovieClip "player" in Frame 738
onClipEvent (load) { var grav = 2; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 3; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.enemy)) { _root.health = _root.health - 40; this.gotoAndStop(4); } if (_root.health <= 0) { _root.gotoAndPlay("D1"); } }
Instance of Symbol 235 MovieClip in Frame 738
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + (((_root.player._x - _x) / 6) - 20)); }
Frame 788
stop();
Frame 789
play(); health = 100;
Instance of Symbol 230 MovieClip "player" in Frame 789
onClipEvent (load) { var grav = 2; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 3; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.enemy)) { _root.health = _root.health - 40; this.gotoAndStop(4); } if (_root.health <= 0) { _root.gotoAndPlay("D2"); } }
Instance of Symbol 235 MovieClip in Frame 789
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Instance of Symbol 499 MovieClip in Frame 886
onClipEvent (load) { speed = 0; movespeed = 1; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 100); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Frame 888
stop();
Instance of Symbol 499 MovieClip in Frame 888
onClipEvent (load) { speed = 0; movespeed = 1; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 100); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Frame 1113
stop();
Frame 1114
play(); health = 100;
Instance of Symbol 230 MovieClip "player" in Frame 1114
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D3"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.trap)) { _root.gotoAndStop("Trap"); } }
Instance of Symbol 499 MovieClip in Frame 1114
onClipEvent (load) { speed = 0; movespeed = 3.5; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 100); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 25, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.1; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.1; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 599 MovieClip in Frame 1114
onClipEvent (load) { espeed = 20; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 20; distance = 200; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1114
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 200; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1114
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 180; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 235 MovieClip in Frame 1114
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1116
stop();
Instance of Symbol 499 MovieClip in Frame 1116
onClipEvent (load) { speed = 0; movespeed = 3; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 100); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 25, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.1; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.1; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 600 MovieClip in Frame 1116
onClipEvent (load) { espeed = 3; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 200; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Frame 1166
stop();
Frame 1167
play(); stop(); health = 100;
Instance of Symbol 230 MovieClip "player" in Frame 1167
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D4"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.trap)) { _root.gotoAndStop("Trap"); } }
Instance of Symbol 600 MovieClip in Frame 1167
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 499 MovieClip in Frame 1167
onClipEvent (load) { speed = 0; movespeed = 1; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 100); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 35, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 713 MovieClip in Frame 1167
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1167
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 235 MovieClip in Frame 1167
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1219
stop();
Frame 1220
play(); stop(); health = 100;
Instance of Symbol 744 MovieClip "player" in Frame 1220
onClipEvent (load) { var grav = 30; var speed = 25; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D5"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.wall)) { _root.gotoAndPlay("D5"); } }
Instance of Symbol 771 MovieClip "notplayer" in Frame 1220
onClipEvent (load) { espeed = 5; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 200; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; _root.notplayer; if (hitTest(_root.door)) { _root.gotoAndPlay("next"); } if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } if (tx > sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1220
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.notplayer._x; sy = _root.notplayer._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1220
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.notplayer._x; sy = _root.notplayer._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 235 MovieClip in Frame 1220
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1221
stop();
Frame 1271
stop();
Frame 1279
play(); stop(); health = 100;
Instance of Symbol 744 MovieClip "player" in Frame 1279
onClipEvent (load) { var grav = 30; var speed = 25; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D55"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.wall)) { _root.gotoAndPlay("D55"); } }
Instance of Symbol 771 MovieClip "notplayer" in Frame 1279
onClipEvent (load) { espeed = 5; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 250; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; _root.notplayer; if (hitTest(_root.door)) { _root.gotoAndPlay("next2"); } if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } if (tx > sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1279
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.notplayer._x; sy = _root.notplayer._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1279
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.notplayer._x; sy = _root.notplayer._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1279
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.notplayer._x; sy = _root.notplayer._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 235 MovieClip in Frame 1279
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1330
stop();
Frame 1338
play(); stop(); health = 100; k = Math.round(Math.random());
Instance of Symbol 821 MovieClip in Frame 1338
onClipEvent (load) { if (_root.k == 0) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } }
Instance of Symbol 832 MovieClip in Frame 1338
onClipEvent (load) { if (_root.k == 0) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } }
Instance of Symbol 230 MovieClip "player" in Frame 1338
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D5"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.trap)) { _root.gotoAndStop("Trap"); } }
Instance of Symbol 235 MovieClip in Frame 1338
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1390
stop();
Frame 1391
play(); stop(); health = 100;
Instance of Symbol 940 MovieClip "player" in Frame 1391
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D7"); } _root.player; if (hitTest(_root.wall)) { _root.gotoAndPlay("D7"); } }
Instance of Symbol 943 MovieClip in Frame 1391
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1391
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1391
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1391
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 400; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1391
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1391
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 600; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1391
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 600; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 945 MovieClip in Frame 1391
onClipEvent (load) { speed = 0; movespeed = 0.5; damagenumber = 10; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 1000); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 35, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 945 MovieClip in Frame 1391
onClipEvent (load) { speed = 0; movespeed = 1; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 1000); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 35, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 948 MovieClip in Frame 1391
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1443
stop();
Frame 1444
play(); health = 100;
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 800; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 5; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 600; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1444
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 230 MovieClip "player" in Frame 1444
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D8"); } _root.player; if (hitTest(_root.wall)) { _root.gotoAndPlay("D8"); } _root.player; if (hitTest(_root.wall1)) { _root.gotoAndPlay("D8"); } _root.player; if (hitTest(_root.wall2)) { _root.gotoAndPlay("D8"); } _root.player; if (hitTest(_root.wall3)) { _root.gotoAndPlay("D8"); } _root.player; if (hitTest(_root.wall4)) { _root.gotoAndPlay("D8"); } _root.player; if (hitTest(_root.wall5)) { _root.gotoAndPlay("D8"); } _root.player; if (hitTest(_root.wall6)) { _root.gotoAndPlay("D8"); } }
Instance of Symbol 964 MovieClip "player" in Frame 1444
onClipEvent (enterFrame) { _y = (_y + (_root.player._y - _y)); _x = (_x + (_root.player._x - _x)); }
Instance of Symbol 948 MovieClip in Frame 1444
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1535
stop();
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 5; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 600; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 200; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1535
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground2.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground2.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground2.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 230 MovieClip "player" in Frame 1536
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D7"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.trap)) { _root.gotoAndStop("Trap"); } }
Frame 1585
stop();
Frame 1586
play(); health = 100; stop();
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 945 MovieClip in Frame 1586
onClipEvent (load) { speed = 0; movespeed = 1; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 1000); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 35, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 945 MovieClip in Frame 1586
onClipEvent (load) { speed = 0; movespeed = 1; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 1000); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 35, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 500; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 943 MovieClip in Frame 1586
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 300; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(4); _y = (_y + 1000); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 230 MovieClip "player" in Frame 1586
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D85"); } }
Instance of Symbol 964 MovieClip "player" in Frame 1586
onClipEvent (enterFrame) { _y = (_y + (_root.player._y - _y)); _x = (_x + (_root.player._x - _x)); }
Instance of Symbol 948 MovieClip in Frame 1586
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Instance of Symbol 230 MovieClip "player" in Frame 1589
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D8.5"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.trap)) { _root.gotoAndStop("Trap"); } }
Frame 1638
stop();
Frame 1639
play(); stop(); health = 100;
Instance of Symbol 230 MovieClip "player" in Frame 1639
onClipEvent (load) { var grav = 40; var speed = 21; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D9"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.wall)) { _root.gotoAndPlay("D9"); } }
Instance of Symbol 599 MovieClip in Frame 1639
onClipEvent (load) { espeed = 20; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 20; distance = 200; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 599 MovieClip in Frame 1639
onClipEvent (load) { espeed = 20; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 20; distance = 200; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 499 MovieClip in Frame 1639
onClipEvent (load) { speed = 0; movespeed = 1.4; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 100); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 35, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 713 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1639
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 235 MovieClip in Frame 1639
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1691
stop();
Frame 1692
play(); stop(); health = 100;
Instance of Symbol 1090 MovieClip "player" in Frame 1692
onClipEvent (load) { var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { while (_root.ground.hitTest(_x, _y, true)) { } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); _root.c = _root.c - 0.03; } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D12"); } }
Instance of Symbol 235 MovieClip in Frame 1692
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.3 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1744
stop();
Frame 1745
play(); stop(); health = 100;
Instance of Symbol 599 MovieClip in Frame 1745
onClipEvent (load) { espeed = 20; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 20; distance = 200; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 230 MovieClip "player" in Frame 1745
onClipEvent (load) { var grav = 30; var speed = 10; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D13"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.wall)) { _root.health = _root.health - 100; } _root.player; if (hitTest(_root.wall1)) { _root.health = _root.health - 100; } _root.player; if (hitTest(_root.wall2)) { _root.health = _root.health - 100; } _root.player; if (hitTest(_root.wall3)) { _root.health = _root.health - 100; } _root.player; if (hitTest(_root.wall4)) { _root.health = _root.health - 100; } _root.player; if (hitTest(_root.wall5)) { _root.health = _root.health - 100; } }
Instance of Symbol 600 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1745
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 1218 MovieClip in Frame 1745
onClipEvent (enterFrame) { _y = (_y + ((_root.player._y - (1.4 * _y)) / 6)); _x = (_x + ((_root.player._x - _x) / 6)); }
Frame 1797
stop();
Frame 1798
play(); health = 100;
Instance of Symbol 1234 MovieClip in Frame 1798
onClipEvent (enterFrame) { _x = (_x + (_root.player._x - _x)); }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 499 MovieClip in Frame 1798
onClipEvent (load) { speed = 0; movespeed = 1.4; damagenumber = 20; grav = 0; dead = false; scale = _xscale; } onClipEvent (enterFrame) { _x = (_x + speed); _y = (_y + grav); grav++; if (dead == true) { this.gotoAndStop(3); _y = (_y + 100); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 35, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } if (_root.player._x > _x) { speed = speed + 0.2; _x = (_x + movespeed); _xscale = scale; } if (_root.player._x < _x) { speed = speed - 0.2; _x = (_x - movespeed); _xscale = (-scale); } if (_root.player.hitTest(_x, _y, true)) { this.gotoAndStop(2); _root.health = _root.health - damagenumber; } else { this.gotoAndStop(1); } if (this.hitTest(_root.player.att1)) { this.gotoAndStop(3); dead = true; } if (this.hitTest(_root.player.att2)) { this.gotoAndStop(3); dead = true; } }
Instance of Symbol 713 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 600 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 713 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damagenumber = 20; grav = 0; dead = false; } onClipEvent (enterFrame) { dis2 = 35; distance = 260; _y = (_y + grav); grav++; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (dead == true) { this.gotoAndStop(5); _y = (_y + 100); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damagenumber; this.gotoAndStop(3); } while (_root.ground.hitTest(_x, _y, true)) { grav = 0; _y = (_y-1); } while (_root.ground.hitTest(_x + 12, _y - 18, true)) { speed = 0; _x = (_x-1); } while (_root.ground.hitTest(_x - 12, _y - 18, true)) { speed = 0; _x = (_x+1); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 322 MovieClip in Frame 1798
onClipEvent (load) { espeed = 2; scale = _xscale; damage = 75; } onClipEvent (enterFrame) { distance = 100; dis2 = 35; tx = this._x; ty = this._y; sx = _root.player._x; sy = _root.player._y; if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < distance) { if (tx < sx) { this._x = this._x + espeed; this.gotoAndStop(2); _xscale = scale; } if (tx > sx) { this._x = this._x - espeed; this.gotoAndStop(2); _xscale = (-scale); } } else { this.gotoAndStop(1); } if (Math.sqrt(((sx - tx) * (sx - tx)) + ((sy - ty) * (sy - ty))) < dis2) { _root.health = _root.health - damage; this.gotoAndStop(3); } }
Instance of Symbol 230 MovieClip "player" in Frame 1798
onClipEvent (load) { var grav = 30; var speed = 4; var jumpHeight = 12.5; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D11"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.wall)) { _root.health = _root.health - 100; } }
Instance of Symbol 235 MovieClip in Frame 1798
onClipEvent (enterFrame) { _y = (_y + (((_root.player._y - (1.4 * _y)) / 6) - 30)); _x = (_x + ((_root.player._x - _x) / 6)); }
Instance of Symbol 230 MovieClip "player" in Frame 10483
onClipEvent (load) { var grav = 30; var speed = 4; var jumpHeight = 0; var slow = 0.7; var slowspd = (speed / 1.5); var setspeed = speed; var scale = _xscale; var ex = 5; this.gotoAndStop(2); } onClipEvent (enterFrame) { grav++; _y = (_y + grav); while (_root.ground.hitTest(_x, _y, true)) { _y = (_y-1); grav = 0; } if (_root.water.hitTest(_x, _y, true)) { if (grav > 0) { grav = grav * slow; } speed = slowspd; } else { speed = setspeed; } if (Key.isDown(68)) { _x = (_x + speed); _xscale = scale; if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if (Key.isDown(65)) { _x = (_x - speed); _xscale = (-scale); if (_root.ground.hitTest(_x, _y + 3, true)) { this.gotoAndStop(1); } else { this.gotoAndStop(2); } } else if ((_root.ground.hitTest(_x, _y + 3, true) && (!Key.isDown(79))) && (!Key.isDown(73))) { this.gotoAndStop(3); } if ((((Key.isDown(79) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(73))) { this.gotoAndStop(5); } if ((((Key.isDown(73) && (!Key.isDown(87))) && (!Key.isDown(65))) && (!Key.isDown(68))) && (!Key.isDown(79))) { this.gotoAndStop(4); } if (Key.isDown(87) && (_root.ground.hitTest(_x, _y + 3, true))) { grav = -jumpHeight; _y = (_y - 4); this.gotoAndStop(2); } if ((_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x + (_width / 2)) + ex, _y - _height, true))) { _x = (_x - speed); } if ((_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 2), true) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - (_height / 6), true))) || (_root.ground.hitTest((_x - (_width / 2)) - ex, _y - _height, true))) { _x = (_x + speed); } if (_root.ground.hitTest(_x, (_y - _height) - 15, true)) { grav = 1; } } onClipEvent (enterFrame) { if (_root.health <= 0) { _root.gotoAndPlay("D11"); } } onClipEvent (enterFrame) { _root.player; if (hitTest(_root.wall)) { _root.health = _root.health - 100; } }
Frame 11029
stop();
Symbol 37 Button
on (release) { getURL ("http://www.newgrounds.com", "_blank"); }
Symbol 39 MovieClip Frame 40
stop();
Symbol 51 Button
on (release) { startMovie(); }
Symbol 52 MovieClip Frame 1
function timerHandler() { if (!loadingComplete) { var _local4 = _root.getBytesLoaded() / _root.getBytesTotal(); bar._xscale = 100 * _local4; if (_local4 == 1) { loadingComplete = true; if (AUTO_PLAY) { startMovie(); } else { gotoAndStop ("loaded"); } return(undefined); } } dt = getTimer() - time; time = time + dt; frameAccum = frameAccum + dt; var _local3 = 0; while ((frameAccum >= FRAME_TIME) && (_local3 < MAX_FRAME_SKIP)) { advanceFrame(tankLogo, true, true); advanceFrame(loadingText, false, true); advanceFrame(barGfx, false, true); if (loadingComplete) { advanceFrame(this, false, false); } (frameAccum = frameAccum - FRAME_TIME); _local3++; } updateAfterEvent(); } function advanceFrame(clip, recurse, loop) { if (!clip) { return(undefined); } clip.stop(); if (clip._currentframe == clip._totalframes) { if (loop) { clip.gotoAndStop(1); } } else { clip.nextFrame(); } if (recurse) { for (childName in clip) { if (typeof(clip[childName]) == "movieclip") { advanceFrame(clip[childName], recurse, loop); } } } } function startMovie() { clearInterval(intervalId); _root.play(); } _root.stop(); stop(); var FRAME_TIME = 33.3333333333333; var AUTO_PLAY = false; var MAX_FRAME_SKIP = 5; var loadingComplete; var intervalId; var time; var frameAccum; loadingComplete = false; intervalId = setInterval(this, "timerHandler", FRAME_TIME / 2); frameAccum = 0; time = getTimer(); timerHandler();
Symbol 52 MovieClip Frame 51
stop();
Symbol 74 MovieClip Frame 32
gotoAndPlay (7);
Symbol 78 MovieClip Frame 7
stop();
Symbol 86 MovieClip Frame 53
stop();
Symbol 88 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 2
stop();
Symbol 88 MovieClip Frame 3
stop();
Symbol 88 MovieClip Frame 4
stop();
Symbol 88 MovieClip Frame 5
stop();
Symbol 88 MovieClip Frame 6
stop();
Symbol 88 MovieClip Frame 7
stop();
Symbol 88 MovieClip Frame 8
stop();
Symbol 141 MovieClip Frame 9
stop();
Symbol 143 Button
on (release) { gotoAndPlay (1); }
Symbol 144 MovieClip Frame 918
stop();
Symbol 148 Button
on (release) { play(); }
Symbol 156 Button
on (release) { gotoAndPlay (10); }
Symbol 157 MovieClip Frame 1
stop();
Symbol 157 MovieClip Frame 472
stop();
Symbol 167 Button
on (release) { gotoAndPlay (10); }
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 318
stop();
Symbol 173 Button
on (release) { gotoAndStop (738); }
Symbol 184 MovieClip Frame 1
stop(); stop();
Symbol 184 MovieClip Frame 392
stop();
Symbol 190 Button
on (release) { gotoAndPlay (10); }
Symbol 191 MovieClip Frame 1
stop();
Symbol 191 MovieClip Frame 376
stop();
Symbol 197 MovieClip Frame 1
stop(); stop();
Symbol 197 MovieClip Frame 329
stop();
Symbol 225 MovieClip Frame 1
stop();
Symbol 225 MovieClip Frame 3
stop();
Symbol 230 MovieClip Frame 1
stop();
Symbol 230 MovieClip Frame 2
stop();
Symbol 230 MovieClip Frame 3
stop();
Symbol 230 MovieClip Frame 4
stop();
Symbol 235 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; } parentColor.setTransform(camColor.getTransform()); this._visible = true; 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;
Instance of Symbol 234 MovieClip "healthBar" in Symbol 235 MovieClip Frame 1
onClipEvent (enterFrame) { this._width = _root.health; }
Symbol 238 MovieClip Frame 9826
gotoAndPlay (1);
Symbol 242 MovieClip Frame 19
stop();
Symbol 249 Button
on (release) { gotoAndStop ("OMG"); }
Symbol 250 Button
on (release) { gotoAndStop (789); }
Symbol 256 Button
on (release) { gotoAndPlay (10); }
Symbol 257 MovieClip Frame 1
stop();
Symbol 257 MovieClip Frame 304
stop();
Symbol 266 Button
on (release) { gotoAndPlay (10); }
Symbol 267 MovieClip Frame 1
stop();
Symbol 267 MovieClip Frame 480
stop();
Symbol 270 Button
on (release) { play(); }
Symbol 277 Button
on (release) { gotoAndPlay (10); }
Symbol 278 MovieClip Frame 1
stop();
Symbol 287 Button
on (release) { gotoAndPlay (10); }
Symbol 288 MovieClip Frame 1
stop();
Symbol 288 MovieClip Frame 382
stop();
Symbol 297 Button
on (release) { gotoAndPlay (10); }
Symbol 298 MovieClip Frame 1
stop();
Symbol 298 MovieClip Frame 184
stop();
Symbol 304 MovieClip Frame 9818
gotoAndPlay (1);
Symbol 314 Button
on (release) { gotoAndPlay (10); }
Symbol 315 MovieClip Frame 1
stop();
Symbol 315 MovieClip Frame 484
stop();
Symbol 321 MovieClip Frame 36
gotoAndPlay (6);
Symbol 322 MovieClip Frame 1
stop();
Symbol 322 MovieClip Frame 2
stop();
Symbol 322 MovieClip Frame 3
stop();
Symbol 329 Button
on (release) { play(); }
Symbol 332 MovieClip Frame 1
stop();
Symbol 332 MovieClip Frame 139
gotoAndStop (1);
Symbol 333 Button
on (release) { play(); }
Symbol 335 Button
on (release) { play(); }
Symbol 338 MovieClip Frame 1
stop();
Symbol 338 MovieClip Frame 117
stop();
Symbol 338 MovieClip Frame 311
stop();
Symbol 346 MovieClip Frame 63
stop();
Symbol 348 Button
on (release) { gotoAndStop ("OMG1"); }
Symbol 354 MovieClip Frame 1
stop();
Symbol 354 MovieClip Frame 296
stop();
Symbol 355 Button
on (release) { gotoAndStop (1114); }
Symbol 361 Button
on (release) { gotoAndPlay (10); }
Symbol 362 MovieClip Frame 1
stop();
Symbol 362 MovieClip Frame 389
stop();
Symbol 372 Button
on (release) { gotoAndPlay (10); }
Symbol 373 MovieClip Frame 1
stop();
Symbol 373 MovieClip Frame 344
stop();
Symbol 379 Button
on (release) { gotoAndPlay (10); }
Symbol 380 MovieClip Frame 1
stop();
Symbol 380 MovieClip Frame 479
stop();
Symbol 389 Button
on (release) { gotoAndPlay (10); }
Symbol 390 MovieClip Frame 1
stop();
Symbol 390 MovieClip Frame 416
stop();
Symbol 397 Button
on (release) { gotoAndPlay (10); }
Symbol 398 MovieClip Frame 1
stop();
Symbol 398 MovieClip Frame 304
stop();
Symbol 404 Button
on (release) { gotoAndPlay (10); }
Symbol 405 MovieClip Frame 1
stop();
Symbol 405 MovieClip Frame 344
stop();
Symbol 409 Button
on (release) { gotoAndPlay (10); }
Symbol 410 MovieClip Frame 1
stop();
Symbol 410 MovieClip Frame 214
stop();
Symbol 416 Button
on (release) { gotoAndPlay (10); }
Symbol 417 MovieClip Frame 1
stop();
Symbol 417 MovieClip Frame 408
stop();
Symbol 423 Button
on (release) { gotoAndPlay (10); }
Symbol 424 MovieClip Frame 1
stop();
Symbol 424 MovieClip Frame 365
stop();
Symbol 429 Button
on (release) { gotoAndPlay (10); }
Symbol 430 MovieClip Frame 1
stop();
Symbol 430 MovieClip Frame 365
stop();
Symbol 434 Button
on (release) { gotoAndPlay (10); }
Symbol 435 MovieClip Frame 1
stop();
Symbol 435 MovieClip Frame 274
stop();
Symbol 439 Button
on (release) { play(); }
Symbol 443 MovieClip Frame 1
stop();
Symbol 443 MovieClip Frame 7
stop();
Symbol 449 Button
on (release) { play(); }
Symbol 453 MovieClip Frame 1
stop();
Symbol 453 MovieClip Frame 138
stop();
Symbol 455 Button
on (release) { play(); }
Symbol 458 MovieClip Frame 1
stop();
Symbol 458 MovieClip Frame 154
gotoAndStop (1);
Symbol 461 Button
on (release) { gotoAndPlay (1204); }
Symbol 463 MovieClip Frame 1219
stop();
Symbol 465 Button
on (release) { play(); }
Symbol 469 MovieClip Frame 1
stop();
Symbol 471 Button
on (release) { _root.health = _root.health - 25; play(); }
Symbol 478 MovieClip Frame 1
stop();
Symbol 480 Button
on (release) { play(); }
Symbol 482 MovieClip Frame 1
stop();
Symbol 482 MovieClip Frame 64
stop();
Symbol 482 MovieClip Frame 119
stop();
Symbol 483 Button
on (release) { play(); }
Symbol 485 MovieClip Frame 1
stop();
Symbol 485 MovieClip Frame 22
stop();
Symbol 489 MovieClip Frame 2721
gotoAndPlay (60);
Symbol 495 Button
on (release) { gotoAndPlay (10); }
Symbol 496 MovieClip Frame 1
stop();
Symbol 496 MovieClip Frame 344
stop();
Symbol 499 MovieClip Frame 1
stop();
Symbol 499 MovieClip Frame 2
stop();
Symbol 501 Button
on (release) { gotoAndStop ("OMG2"); }
Symbol 504 Button
on (release) { gotoAndPlay (10); }
Symbol 505 MovieClip Frame 1
stop();
Symbol 505 MovieClip Frame 204
stop();
Symbol 511 Button
on (release) { gotoAndPlay (10); }
Symbol 512 MovieClip Frame 1
stop();
Symbol 512 MovieClip Frame 376
stop();
Symbol 515 Button
on (release) { gotoAndPlay (10); }
Symbol 516 MovieClip Frame 1
stop();
Symbol 516 MovieClip Frame 268
stop();
Symbol 528 Button
on (release) { gotoAndPlay (10); }
Symbol 529 MovieClip Frame 1
stop();
Symbol 529 MovieClip Frame 737
stop();
Symbol 535 Button
on (release) { gotoAndPlay (10); }
Symbol 536 MovieClip Frame 1
stop();
Symbol 536 MovieClip Frame 376
stop();
Symbol 537 Button
on (release) { gotoAndStop (1167); }
Symbol 562 Button
on (release) { gotoAndPlay (10); }
Symbol 563 MovieClip Frame 1
stop();
Symbol 563 MovieClip Frame 224
stop();
Symbol 566 Button
on (release) { play(); }
Symbol 569 MovieClip Frame 1
stop();
Symbol 569 MovieClip Frame 41
stop();
Symbol 569 MovieClip Frame 71
stop();
Symbol 572 MovieClip Frame 1
stop();
Symbol 572 MovieClip Frame 41
stop();
Symbol 572 MovieClip Frame 71
stop();
Symbol 576 Button
on (release) { play(); }
Symbol 580 Button
on (release) { gotoAndPlay (2640); }
Symbol 586 MovieClip Frame 1
stop(); stop();
Symbol 586 MovieClip Frame 296
stop();
Symbol 593 MovieClip Frame 1
stop();
Symbol 593 MovieClip Frame 32
stop();
Symbol 595 MovieClip Frame 2202
gotoAndPlay (60);
Symbol 598 MovieClip Frame 12
gotoAndPlay (6);
Symbol 599 MovieClip Frame 1
stop();
Symbol 599 MovieClip Frame 2
stop();
Symbol 599 MovieClip Frame 3
stop();
Symbol 600 MovieClip Frame 1
stop();
Symbol 600 MovieClip Frame 2
stop();
Symbol 600 MovieClip Frame 3
stop();
Symbol 602 Button
on (release) { gotoAndStop ("OMG3"); }
Symbol 603 Button
on (release) { gotoAndStop (1220); }
Symbol 609 Button
on (release) { gotoAndPlay (10); }
Symbol 610 MovieClip Frame 1
stop();
Symbol 610 MovieClip Frame 276
stop();
Symbol 616 Button
on (release) { gotoAndPlay (10); }
Symbol 617 MovieClip Frame 1
stop();
Symbol 617 MovieClip Frame 291
stop();
Symbol 623 Button
on (release) { gotoAndPlay (10); }
Symbol 624 MovieClip Frame 1
stop();
Symbol 624 MovieClip Frame 339
stop();
Symbol 630 Button
on (release) { gotoAndPlay (10); }
Symbol 631 MovieClip Frame 1
stop();
Symbol 631 MovieClip Frame 361
stop();
Symbol 655 Button
on (release) { gotoAndPlay (10); }
Symbol 656 MovieClip Frame 1
stop();
Symbol 656 MovieClip Frame 956
stop();
Symbol 665 Button
on (release) { gotoAndPlay (10); }
Symbol 666 MovieClip Frame 1
stop();
Symbol 666 MovieClip Frame 571
stop();
Symbol 667 MovieClip Frame 2701
gotoAndPlay (60);
Symbol 670 Button
on (release) { play(); }
Symbol 673 MovieClip Frame 1
stop();
Symbol 673 MovieClip Frame 37
stop();
Symbol 673 MovieClip Frame 67
stop();
Symbol 675 Button
on (release) { play(); }
Symbol 677 Button
on (release) { play(); }
Symbol 679 Button
on (release) { play(); }
Symbol 681 MovieClip Frame 1
stop();
Symbol 681 MovieClip Frame 32
stop();
Symbol 681 MovieClip Frame 87
stop();
Symbol 688 MovieClip Frame 1
stop();
Symbol 688 MovieClip Frame 32
stop();
Symbol 695 MovieClip Frame 1
stop();
Symbol 695 MovieClip Frame 32
stop();
Symbol 711 MovieClip Frame 335
stop(); stop(); _root.dead = true; _root.gotoAndStop("BYE");
Symbol 713 MovieClip Frame 1
stop();
Symbol 713 MovieClip Frame 2
stop();
Symbol 713 MovieClip Frame 3
stop();
Symbol 713 MovieClip Frame 5
stop();
Symbol 715 Button
on (release) { gotoAndStop ("OMG4"); }
Symbol 724 Button
on (release) { gotoAndPlay (10); }
Symbol 725 MovieClip Frame 1
stop();
Symbol 725 MovieClip Frame 351
stop();
Symbol 731 Button
on (release) { gotoAndPlay (10); }
Symbol 732 MovieClip Frame 1
stop();
Symbol 732 MovieClip Frame 323
stop();
Symbol 738 Button
on (release) { gotoAndPlay (10); }
Symbol 739 MovieClip Frame 1
stop();
Symbol 739 MovieClip Frame 292
stop();
Symbol 740 MovieClip Frame 2076
gotoAndPlay (60);
Symbol 742 MovieClip Frame 28
stop();
Symbol 744 MovieClip Frame 1
stop();
Symbol 744 MovieClip Frame 2
stop();
Symbol 744 MovieClip Frame 3
stop();
Symbol 747 Button
on (release) { play(); }
Symbol 750 MovieClip Frame 1
stop();
Symbol 750 MovieClip Frame 42
stop();
Symbol 758 MovieClip Frame 1
stop();
Symbol 758 MovieClip Frame 71
stop();
Symbol 761 Button
on (release) { play(); }
Symbol 763 MovieClip Frame 1
stop();
Symbol 763 MovieClip Frame 57
stop();
Symbol 764 Button
on (release) { play(); }
Symbol 768 MovieClip Frame 1
stop();
Symbol 768 MovieClip Frame 71
stop();
Symbol 771 MovieClip Frame 1
stop();
Symbol 771 MovieClip Frame 2
stop();
Symbol 771 MovieClip Frame 3
stop();
Symbol 771 MovieClip Frame 5
stop();
Symbol 772 MovieClip Frame 1
stop();
Symbol 772 MovieClip Frame 2
stop();
Symbol 776 Button
on (release) { gotoAndStop ("OMG5"); }
Symbol 780 Button
on (release) { gotoAndPlay (10); }
Symbol 781 MovieClip Frame 1
stop();
Symbol 781 MovieClip Frame 197
stop();
Symbol 787 Button
on (release) { gotoAndPlay (10); }
Symbol 788 MovieClip Frame 1
stop();
Symbol 788 MovieClip Frame 337
stop();
Symbol 797 Button
on (release) { gotoAndPlay (10); }
Symbol 798 MovieClip Frame 1
stop();
Symbol 798 MovieClip Frame 513
stop();
Symbol 802 Button
on (release) { play(); }
Symbol 805 MovieClip Frame 1
stop();
Symbol 808 MovieClip Frame 1
stop();
Symbol 808 MovieClip Frame 33
stop();
Symbol 810 MovieClip Frame 5142
gotoAndPlay (60);
Symbol 812 Button
on (release) { gotoAndStop ("OMG55"); }
Symbol 814 Button
on (release) { gotoAndStop (1391); }
Symbol 821 MovieClip Frame 1
stop();
Symbol 838 Button
on (release) { gotoAndPlay (10); }
Symbol 839 MovieClip Frame 1
stop();
Symbol 839 MovieClip Frame 489
stop();
Symbol 840 MovieClip Frame 6484
gotoAndPlay (60);
Symbol 853 MovieClip Frame 1
stop();
Symbol 853 MovieClip Frame 260
stop();
Symbol 856 Button
on (release) { gotoAndStop ("OMG5"); }
Symbol 857 Button
on (release) { gotoAndStop (1444); }
Symbol 860 Button
on (release) { gotoAndPlay (10); }
Symbol 861 MovieClip Frame 1
stop();
Symbol 861 MovieClip Frame 171
stop();
Symbol 870 Button
on (release) { gotoAndPlay (10); }
Symbol 871 MovieClip Frame 1
stop();
Symbol 871 MovieClip Frame 426
stop();
Symbol 887 MovieClip Frame 11
stop();
Symbol 889 MovieClip Frame 1
stop();
Symbol 889 MovieClip Frame 255
stop();
Symbol 892 Button
on (release) { gotoAndPlay (10); }
Symbol 893 MovieClip Frame 1
stop();
Symbol 893 MovieClip Frame 258
stop();
Symbol 902 Button
on (release) { gotoAndPlay (10); }
Symbol 903 MovieClip Frame 1
stop();
Symbol 903 MovieClip Frame 611
stop();
Symbol 909 Button
on (release) { gotoAndPlay (10); }
Symbol 910 MovieClip Frame 1
stop();
Symbol 910 MovieClip Frame 255
stop();
Symbol 912 MovieClip Frame 1
stop();
Symbol 912 MovieClip Frame 2
stop();
Symbol 919 MovieClip Frame 1
stop();
Symbol 919 MovieClip Frame 30
stop();
Symbol 921 Button
on (release) { play(); }
Symbol 925 MovieClip Frame 1
stop();
Symbol 937 MovieClip Frame 1
stop();
Symbol 937 MovieClip Frame 304
stop();
Symbol 940 MovieClip Frame 1
stop();
Instance of Symbol 939 MovieClip in Symbol 940 MovieClip Frame 1
on (release) { _root.health = _root.health - 100; }
Symbol 940 MovieClip Frame 2
stop();
Symbol 940 MovieClip Frame 3
stop();
Symbol 940 MovieClip Frame 4
stop();
Symbol 941 MovieClip Frame 2918
gotoAndPlay (60);
Symbol 942 Button
on (release) { gotoAndStop (4); dead = true; }
Symbol 943 MovieClip Frame 1
stop();
Symbol 943 MovieClip Frame 2
stop();
Symbol 943 MovieClip Frame 3
stop();
Symbol 943 MovieClip Frame 4
stop(); this.visible = false;
Symbol 944 Button
on (release) { dead = true; }
Symbol 945 MovieClip Frame 1
stop();
Symbol 945 MovieClip Frame 2
stop();
Symbol 945 MovieClip Frame 3
stop();
Symbol 948 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; } parentColor.setTransform(camColor.getTransform()); this._visible = true; 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;
Instance of Symbol 234 MovieClip "healthBar" in Symbol 948 MovieClip Frame 1
onClipEvent (enterFrame) { this._width = _root.health; }
Symbol 950 Button
on (release) { gotoAndStop ("OMG7"); }
Symbol 951 Button
on (release) { gotoAndStop (1586); }
Symbol 963 Button
on (release) { _root.health = _root.health - 50; }
Symbol 964 MovieClip Frame 1
stop();
Symbol 965 MovieClip Frame 6425
gotoAndPlay (60);
Symbol 971 Button
on (release) { gotoAndStop ("OMG8"); }
Symbol 972 Button
on (release) { gotoAndStop (1639); }
Symbol 978 MovieClip Frame 1
stop();
Instance of Symbol 975 MovieClip in Symbol 978 MovieClip Frame 1
on (release) { play(); }
Symbol 981 MovieClip Frame 1
stop();
Instance of Symbol 975 MovieClip in Symbol 981 MovieClip Frame 1
on (release) { play(); }
Symbol 981 MovieClip Frame 51
stop();
Instance of Symbol 975 MovieClip in Symbol 981 MovieClip Frame 51
on (release) { play(); }
Symbol 985 MovieClip Frame 1
stop();
Instance of Symbol 975 MovieClip in Symbol 985 MovieClip Frame 1
on (release) { play(); }
Instance of Symbol 978 MovieClip in Symbol 986 MovieClip Frame 1
on (release) { play(); }
Instance of Symbol 981 MovieClip in Symbol 986 MovieClip Frame 1
on (release) { play(); }
Instance of Symbol 985 MovieClip in Symbol 986 MovieClip Frame 1
on (release) { play(); }
Symbol 990 Button
on (release) { gotoAndStop ("OMG85"); }
Symbol 1001 Button
on (release) { gotoAndPlay (10); }
Symbol 1002 MovieClip Frame 1
stop();
Symbol 1002 MovieClip Frame 411
stop();
Symbol 1008 Button
on (release) { gotoAndPlay (10); }
Symbol 1009 MovieClip Frame 1
stop();
Symbol 1009 MovieClip Frame 259
stop();
Symbol 1015 Button
on (release) { gotoAndPlay (10); }
Symbol 1016 MovieClip Frame 1
stop();
Symbol 1016 MovieClip Frame 259
stop();
Symbol 1018 Button
on (release) { gotoAndStop (1692); }
Symbol 1021 MovieClip Frame 4409
gotoAndPlay (60);
Symbol 1023 Button
on (release) { gotoAndStop ("OMG9"); }
Symbol 1025 Button
on (release) { gotoAndStop (1745); }
Symbol 1027 MovieClip Frame 1
stop();
Symbol 1027 MovieClip Frame 2
stop();
Symbol 1028 MovieClip Frame 1
stop();
Symbol 1028 MovieClip Frame 2
stop();
Symbol 1028 MovieClip Frame 3
stop();
Symbol 1030 MovieClip Frame 877
stop();
Symbol 1033 Button
on (release) { gotoAndPlay (10); }
Symbol 1034 MovieClip Frame 1
stop();
Symbol 1034 MovieClip Frame 230
stop();
Symbol 1050 Button
on (release) { gotoAndPlay (10); }
Symbol 1051 MovieClip Frame 1
stop();
Symbol 1051 MovieClip Frame 899
stop();
Symbol 1060 Button
on (release) { gotoAndPlay (10); }
Symbol 1061 MovieClip Frame 1
stop();
Symbol 1061 MovieClip Frame 620
stop();
Symbol 1076 Button
on (release) { gotoAndPlay (10); }
Symbol 1077 MovieClip Frame 1
stop();
Symbol 1077 MovieClip Frame 909
stop();
Symbol 1087 Button
on (release) { gotoAndPlay (10); }
Symbol 1088 MovieClip Frame 1
stop();
Symbol 1088 MovieClip Frame 511
stop();
Symbol 1089 MovieClip Frame 4203
gotoAndPlay (60);
Symbol 1090 MovieClip Frame 1
stop();
Symbol 1094 MovieClip Frame 260
stop();
Symbol 1096 Button
on (release) { gotoAndStop ("OMG12"); }
Symbol 1100 Button
on (release) { gotoAndPlay (10); }
Symbol 1101 MovieClip Frame 1
stop();
Symbol 1101 MovieClip Frame 240
stop();
Symbol 1104 Button
on (release) { gotoAndPlay (10); }
Symbol 1105 MovieClip Frame 1
stop();
Symbol 1105 MovieClip Frame 240
stop();
Symbol 1110 Button
on (release) { gotoAndStop (1798); }
Symbol 1218 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; } parentColor.setTransform(camColor.getTransform()); this._visible = true; 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;
Instance of Symbol 234 MovieClip "healthBar" in Symbol 1218 MovieClip Frame 1
onClipEvent (enterFrame) { this._width = _root.health; }
Symbol 1218 MovieClip Frame 41
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; } parentColor.setTransform(camColor.getTransform()); this._visible = true; 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 1220 Button
on (release) { gotoAndStop ("OMG13"); }
Symbol 1234 MovieClip Frame 9243
stop();

Library Items

Symbol 1 GraphicUsed by:37 93 144 157 168 184 191 197 225 238 242 267 270 278 288 298 304 315 322 332 335 338 346 354 362 373 380 390 398 405 410 417 424 430 435 458 461 463 483 484 489 496 505 512 516 529 536 563 566 569 572 595 610 617 624 631 656 666 667 670 673 675 677 679 681 688 725 732 739 740 747 750 758 761 763 764 768 781 788 798 802 805 808 810 839 840 853 861 871 889 893 903 910 919 937 941 965 975 978 981 985 1002 1009 1016 1021 1034 1051 1061 1077 1088 1089 1094 1101 1105 1234  Timeline
Symbol 2 GraphicUsed by:8 119 143 148 156 167 190 234 249 256 266 277 287 297 314 348 361 372 379 389 390 397 404 409 416 423 429 434 495 499 501 504 511 515 528 535 562 602 609 616 623 630 655 665 715 724 731 738 776 780 787 797 812 838 856 860 870 892 902 909 945 950 971 990 1001 1008 1015 1023 1027 1033 1050 1060 1076 1087 1096 1100 1104 1220 1234
Symbol 3 FontUsed by:4 9 94 104 170 746 759 1231
Symbol 4 EditableTextUses:3Used by:8
Symbol 5 GraphicUsed by:8
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClipUses:6Used by:8
Symbol 8 MovieClipUses:2 4 5 7Used by:Timeline
Symbol 9 EditableTextUses:3Used by:Timeline
Symbol 10 GraphicUsed by:11
Symbol 11 MovieClipUses:10Used by:Timeline
Symbol 12 GraphicUsed by:52
Symbol 13 GraphicUsed by:52
Symbol 14 GraphicUsed by:15
Symbol 15 MovieClipUses:14Used by:52
Symbol 16 GraphicUsed by:18 52
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:16 17Used by:52
Symbol 19 GraphicUsed by:52
Symbol 20 GraphicUsed by:52
Symbol 21 GraphicUsed by:52
Symbol 22 GraphicUsed by:29 39
Symbol 23 GraphicUsed by:29 39
Symbol 24 GraphicUsed by:29 39
Symbol 25 GraphicUsed by:29 39
Symbol 26 GraphicUsed by:29 39
Symbol 27 GraphicUsed by:29 39
Symbol 28 GraphicUsed by:29 39
Symbol 29 MovieClipUses:22 23 24 25 26 27 28Used by:52
Symbol 30 GraphicUsed by:52
Symbol 31 GraphicUsed by:35 97
Symbol 32 GraphicUsed by:35 97
Symbol 33 GraphicUsed by:35 97
Symbol 34 GraphicUsed by:35 97
Symbol 35 MovieClipUses:31 32 33 34Used by:52 97
Symbol 36 GraphicUsed by:52
Symbol 37 ButtonUses:1Used by:52
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:22 23 24 25 26 27 28 38Used by:52
Symbol 40 ShapeTweeningUsed by:52
Symbol 41 ShapeTweeningUsed by:52
Symbol 42 ShapeTweeningUsed by:52
Symbol 43 GraphicUsed by:52
Symbol 44 GraphicUsed by:51
Symbol 45 GraphicUsed by:51
Symbol 46 GraphicUsed by:51
Symbol 47 GraphicUsed by:49
Symbol 48 GraphicUsed by:49
Symbol 49 MovieClipUses:47 48Used by:51
Symbol 50 GraphicUsed by:51
Symbol 51 ButtonUses:44 45 46 49 50Used by:52
Symbol 52 MovieClipUses:12 13 15 18 19 20 21 29 30 35 36 37 39 40 16 41 42 43 51Used by:Timeline
Symbol 53 GraphicUsed by:54
Symbol 54 MovieClipUses:53Used by:71 74 75 86 228 321 596 598 711
Symbol 55 GraphicUsed by:56
Symbol 56 MovieClipUses:55Used by:71 74 75 86 228 321 596 598 711
Symbol 57 GraphicUsed by:58
Symbol 58 MovieClipUses:57Used by:71 74 75 86 228 321 596 598 711
Symbol 59 GraphicUsed by:60
Symbol 60 MovieClipUses:59Used by:71 74 75 86 228 321 596 598 711
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClipUses:61Used by:71 74 75 86 228 321 596 598 711
Symbol 63 GraphicUsed by:64
Symbol 64 MovieClipUses:63Used by:71 74 75 86 228 321 596 598 711
Symbol 65 GraphicUsed by:66
Symbol 66 MovieClipUses:65Used by:71 228
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:71 74 75 86 228 321 596 598 711
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClipUses:69Used by:71 74 75 86 228 321 596 598 711
Symbol 71 MovieClipUses:54 56 58 60 62 64 66 68 70Used by:88
Symbol 72 GraphicUsed by:73
Symbol 73 MovieClipUses:72Used by:74 75 86
Symbol 74 MovieClipUses:54 56 58 60 62 64 73 68 70Used by:88 230 940 1030
Symbol 75 MovieClipUses:58 60 54 56 73 62 64 68 70Used by:88 230 771 940 1030
Symbol 76 ShapeTweeningUsed by:78
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:76 77Used by:86
Symbol 79 GraphicUsed by:86
Symbol 80 GraphicUsed by:86
Symbol 81 GraphicUsed by:86
Symbol 82 GraphicUsed by:85
Symbol 83 GraphicUsed by:85
Symbol 84 GraphicUsed by:85
Symbol 85 MovieClipUses:82 83 84Used by:86 87
Symbol 86 MovieClipUses:54 56 58 60 62 64 73 68 70 78 79 80 81 85Used by:88
Symbol 87 MovieClipUses:85Used by:88
Symbol 88 MovieClipUses:71 74 75 86 87Used by:Timeline
Symbol 89 GraphicUsed by:90
Symbol 90 MovieClipUses:89Used by:Timeline
Symbol 91 FontUsed by:92 142 146 147 248 326 339 459 486 967 968 969 987 988 1238 1239
Symbol 92 EditableTextUses:91Used by:93
Symbol 93 ButtonUses:1 92Used by:Timeline
Symbol 94 EditableTextUses:3Used by:Timeline
Symbol 95 GraphicUsed by:96 97
Symbol 96 MovieClipUses:95Used by:97
Symbol 97 ButtonUses:35 96 31 32 33 34 95Used by:Timeline
Symbol 98 ShapeTweeningUsed by:Timeline
Symbol 99 GraphicUsed by:278 398 410 435 529 656 939 944 963 1088 1090 1234  Timeline
Symbol 100 ShapeTweeningUsed by:Timeline
Symbol 101 GraphicUsed by:Timeline
Symbol 102 ShapeTweeningUsed by:Timeline
Symbol 103 GraphicUsed by:853 925  Timeline
Symbol 104 EditableTextUses:3Used by:Timeline
Symbol 105 ShapeTweeningUsed by:Timeline
Symbol 106 ShapeTweeningUsed by:Timeline
Symbol 107 ShapeTweeningUsed by:Timeline
Symbol 108 GraphicUsed by:117
Symbol 109 GraphicUsed by:117
Symbol 110 GraphicUsed by:117
Symbol 111 GraphicUsed by:117
Symbol 112 GraphicUsed by:117
Symbol 113 GraphicUsed by:117
Symbol 114 GraphicUsed by:117
Symbol 115 GraphicUsed by:117
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClipUses:108 109 110 111 112 113 114 115 116Used by:Timeline
Symbol 118 GraphicUsed by:Timeline
Symbol 119 MovieClipUses:2Used by:144 157 168 184 191 197 257 267 278 288 298 315 354 362 373 380 390 398 405 410 417 424 430 435 496 505 512 516 529 536 563 610 617 624 631 656 666 725 732 739 781 788 798 839 861 871 889 893 903 910 1002 1009 1016 1034 1051 1061 1077 1088 1101 1105 1107 1109
Symbol 120 GraphicUsed by:144 157 168 184 191 197 257 267 278 288 298 315 354 362 373 380 390 398 405 410 417 424 430 435 496 505 512 516 529 536 563 610 617 624 631 656 666 725 732 739 781 788 798 839 861 871 889 893 903 910 1002 1009 1016 1034 1051 1061 1077 1088 1101 1105 1107 1109
Symbol 121 GraphicUsed by:144
Symbol 122 GraphicUsed by:144 157 168 184 191 197 257 267 278 288 298 315 354 362 373 380 390 398 405 410 417 424 430 435 496 505 512 516 529 536 563 610 617 624 631 656 666 725 732 739 781 788 798 839 861 871 889 893 903 910 961 1002 1009 1016 1034 1051 1061 1077 1088 1101 1105  Timeline
Symbol 123 GraphicUsed by:144 157 168 184 191 197 257 267 278 288 298 315 354 362 373 380 390 398 405 410 417 424 430 435 496 505 512 516 529 536 563 610 617 624 631 656 666 725 732 739 781 788 798 839 861 871 889 893 903 910 1002 1009 1016 1034 1051 1061 1077 1088 1101 1105  Timeline
Symbol 124 GraphicUsed by:144 157 168 184 191 197 257 267 278 288 298 315 354 362 373 380 390 398 405 410 417 424 430 435 496 505 512 516 529 536 563 610 617 624 631 656 666 725 732 739 781 788 798 839 861 871 889 893 903 910 1002 1009 1016 1034 1051 1061 1077 1088 1101 1105  Timeline
Symbol 125 GraphicUsed by:144 157 168 191 197 257 267 278 288 298 315 354 362 373 380 390 398 405 410 417 424 430 435 496 505 512 516 529 536 563 610 617 624 631 656 666 725 732 739 781 788 798 839 861 871 889 893 903 910 1002 1009 1016 1034 1051 1061 1077 1088 1101 1105
Symbol 126 ShapeTweeningUsed by:144
Symbol 127 ShapeTweeningUsed by:144
Symbol 128 GraphicUsed by:144
Symbol 129 ShapeTweeningUsed by:144
Symbol 130 ShapeTweeningUsed by:144
Symbol 131 GraphicUsed by:144
Symbol 132 ShapeTweeningUsed by:144
Symbol 133 ShapeTweeningUsed by:144
Symbol 134 GraphicUsed by:144
Symbol 135 ShapeTweeningUsed by:144
Symbol 136 ShapeTweeningUsed by:144
Symbol 137 GraphicUsed by:144
Symbol 138 ShapeTweeningUsed by:144
Symbol 139 ShapeTweeningUsed by:141
Symbol 140 GraphicUsed by:141
Symbol 141 MovieClipUses:139 140Used by:143 156 167 190 249 256 266 277 287 297 314 348 361 372 379 389 397 404 409 416 423 429 434 495 501 504 511 515 528 535 562 602 609 616 623 630 655 665 715 724 731 738 776 780 787 797 812 838 856 860 870 892 902 909 950 971 990 1001 1008 1015 1023 1033 1050 1060 1076 1087 1096 1100 1104 1220
Symbol 142 EditableTextUses:91Used by:143 156 167 190 256 266 277 287 297 314 361 372 379 389 397 404 409 416 423 429 434 495 504 511 515 528 535 562 609 616 623 630 655 665 724 731 738 780 787 797 838 860 870 892 902 909 1001 1008 1015 1033 1050 1060 1076 1087 1100 1104
Symbol 143 ButtonUses:141 2 142Used by:144
Symbol 144 MovieClipUses:119 1 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 143Used by:Timeline
Symbol 145 GraphicUsed by:157
Symbol 146 EditableTextUses:91Used by:148
Symbol 147 EditableTextUses:91Used by:148
Symbol 148 ButtonUses:146 2 147Used by:157 168 184 191 197 257 267 288 298 315 354 362 373 380 390 405 417 424 430 496 505 512 516 536 563 610 617 624 631 666 725 732 739 781 788 798 839 861 871 889 893 903 910 1002 1009 1016 1034 1051 1061 1077 1101 1105
Symbol 149 ShapeTweeningUsed by:157
Symbol 150 ShapeTweeningUsed by:157
Symbol 151 GraphicUsed by:157
Symbol 152 ShapeTweeningUsed by:157
Symbol 153 ShapeTweeningUsed by:157
Symbol 154 GraphicUsed by:157
Symbol 155 ShapeTweeningUsed by:157
Symbol 156 ButtonUses:141 2 142Used by:157
Symbol 157 MovieClipUses:119 1 120 145 148 122 123 124 125 149 150 151 152 153 154 155 156Used by:Timeline
Symbol 158 GraphicUsed by:168
Symbol 159 ShapeTweeningUsed by:168
Symbol 160 ShapeTweeningUsed by:168
Symbol 161 GraphicUsed by:165
Symbol 162 GraphicUsed by:165
Symbol 163 GraphicUsed by:165
Symbol 164 GraphicUsed by:165
Symbol 165 MovieClipUses:161 162 163 164Used by:168
Symbol 166 ShapeTweeningUsed by:168
Symbol 167 ButtonUses:141 2 142Used by:168
Symbol 168 MovieClipUses:119 1 120 158 148 122 123 124 125 159 160 165 166 167Used by:Timeline
Symbol 169 GraphicUsed by:171 1232 1233
Symbol 170 EditableTextUses:3Used by:171
Symbol 171 MovieClipUses:169 170Used by:173 250 355 537 603 814 857 951 972 1018 1025 1110  Timeline
Symbol 172 GraphicUsed by:173 250 355 537 603 814 857 951 972 1018 1025 1110
Symbol 173 ButtonUses:171 172Used by:Timeline
Symbol 174 GraphicUsed by:184
Symbol 175 ShapeTweeningUsed by:184
Symbol 176 ShapeTweeningUsed by:184
Symbol 177 GraphicUsed by:182
Symbol 178 GraphicUsed by:182
Symbol 179 GraphicUsed by:182
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClipUses:177 178 179 180 181Used by:183 184
Symbol 183 MovieClipUses:182Used by:184 1234
Symbol 184 MovieClipUses:119 1 120 174 148 122 123 124 175 176 182 183Used by:Timeline
Symbol 185 GraphicUsed by:191
Symbol 186 ShapeTweeningUsed by:191
Symbol 187 ShapeTweeningUsed by:191
Symbol 188 GraphicUsed by:191
Symbol 189 ShapeTweeningUsed by:191
Symbol 190 ButtonUses:141 2 142Used by:191
Symbol 191 MovieClipUses:119 1 120 185 148 122 123 124 125 186 187 188 189 190Used by:Timeline
Symbol 192 GraphicUsed by:197
Symbol 193 ShapeTweeningUsed by:197
Symbol 194 ShapeTweeningUsed by:197
Symbol 195 GraphicUsed by:197
Symbol 196 ShapeTweeningUsed by:197
Symbol 197 MovieClipUses:119 1 120 192 148 193 194 195 125 122 124 123 196Used by:Timeline
Symbol 198 GraphicUsed by:199
Symbol 199 MovieClipUses:198Used by:Timeline
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClipUses:200Used by:223 318 497 742 743
Symbol 202 GraphicUsed by:203
Symbol 203 MovieClipUses:202Used by:223 318 497 742 743
Symbol 204 GraphicUsed by:205
Symbol 205 MovieClipUses:204Used by:223 318 497 742 743
Symbol 206 GraphicUsed by:207
Symbol 207 MovieClipUses:206Used by:223 318 497 742 743
Symbol 208 GraphicUsed by:209
Symbol 209 MovieClipUses:208Used by:223 318 497 742 743
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:223 318 497 742 743
Symbol 212 GraphicUsed by:218 316
Symbol 213 GraphicUsed by:217
Symbol 214 GraphicUsed by:217
Symbol 215 GraphicUsed by:217
Symbol 216 GraphicUsed by:217
Symbol 217 MovieClipUses:213 214 215 216Used by:218 316 320
Symbol 218 MovieClipUses:212 217Used by:223 497 742 743
Symbol 219 GraphicUsed by:220
Symbol 220 MovieClipUses:219Used by:223 318 497 742 743
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:221Used by:223 317 497 742 743
Symbol 223 MovieClipUses:201 203 205 207 209 211 218 220 222Used by:224 744 1234
Symbol 224 MovieClipUses:223Used by:225
Symbol 225 MovieClipUses:224 1Used by:Timeline
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClipUses:226Used by:Timeline
Symbol 228 MovieClipUses:54 56 58 60 62 64 66 68 70Used by:230 770 940 1030 1234
Symbol 229 GraphicUsed by:230 257 474 599 600 713 771 772 912 940 943 1028 1234
Symbol 230 MovieClipUses:228 74 75 229Used by:Timeline
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:231Used by:Timeline
Symbol 233 GraphicUsed by:235 948
Symbol 234 MovieClipUses:2Used by:235 948 1218
Symbol 235 MovieClipUses:233 234Used by:Timeline
Symbol 236 FontUsed by:237 303 488
Symbol 237 TextUses:236Used by:238
Symbol 238 MovieClipUses:1 237 SS2Used by:Timeline
Symbol 239 ShapeTweeningUsed by:242
Symbol 240 ShapeTweeningUsed by:242
Symbol 241 GraphicUsed by:242
Symbol 242 MovieClipUses:239 1 240 241 SS3Used by:Timeline
Symbol 243 GraphicUsed by:244
Symbol 244 MovieClipUses:243Used by:245
Symbol 245 MovieClipUses:244Used by:Timeline
Symbol 246 GraphicUsed by:Timeline
Symbol 247 ShapeTweeningUsed by:Timeline
Symbol 248 EditableTextUses:91Used by:249 348 501 602 715 776 812 856 950 971 990 1023 1096 1220
Symbol 249 ButtonUses:141 2 248Used by:Timeline
Symbol 250 ButtonUses:171 172Used by:Timeline
Symbol 251 GraphicUsed by:257
Symbol 252 ShapeTweeningUsed by:257
Symbol 253 ShapeTweeningUsed by:257
Symbol 254 GraphicUsed by:257
Symbol 255 ShapeTweeningUsed by:257
Symbol 256 ButtonUses:141 2 142Used by:257
Symbol 257 MovieClipUses:119 229 120 251 148 122 123 124 125 252 253 254 255 256Used by:Timeline
Symbol 258 GraphicUsed by:267
Symbol 259 ShapeTweeningUsed by:267
Symbol 260 ShapeTweeningUsed by:267
Symbol 261 GraphicUsed by:267
Symbol 262 ShapeTweeningUsed by:267
Symbol 263 ShapeTweeningUsed by:267
Symbol 264 GraphicUsed by:267
Symbol 265 ShapeTweeningUsed by:267
Symbol 266 ButtonUses:141 2 142Used by:267
Symbol 267 MovieClipUses:119 1 120 258 148 122 123 124 125 259 260 261 262 263 264 265 266Used by:Timeline
Symbol 268 FontUsed by:269
Symbol 269 TextUses:268Used by:270
Symbol 270 ButtonUses:269 1Used by:278 398 410 435 529 656 1088
Symbol 271 GraphicUsed by:278
Symbol 272 ShapeTweeningUsed by:278
Symbol 273 ShapeTweeningUsed by:278
Symbol 274 ShapeTweeningUsed by:278
Symbol 275 GraphicUsed by:278
Symbol 276 ShapeTweeningUsed by:278
Symbol 277 ButtonUses:141 2 142Used by:278
Symbol 278 MovieClipUses:119 120 1 270 271 272 99 273 274 275 125 122 124 123 276 277Used by:Timeline
Symbol 279 GraphicUsed by:288
Symbol 280 ShapeTweeningUsed by:288
Symbol 281 ShapeTweeningUsed by:288
Symbol 282 GraphicUsed by:288
Symbol 283 ShapeTweeningUsed by:288
Symbol 284 ShapeTweeningUsed by:288
Symbol 285 GraphicUsed by:288
Symbol 286 ShapeTweeningUsed by:288
Symbol 287 ButtonUses:141 2 142Used by:288
Symbol 288 MovieClipUses:119 1 120 279 148 122 123 124 280 281 282 283 284 285 125 286 287Used by:Timeline
Symbol 289 GraphicUsed by:298
Symbol 290 ShapeTweeningUsed by:298
Symbol 291 ShapeTweeningUsed by:298
Symbol 292 ShapeTweeningUsed by:298
Symbol 293 GraphicUsed by:298
Symbol 294 ShapeTweeningUsed by:298
Symbol 295 ShapeTweeningUsed by:298
Symbol 296 ShapeTweeningUsed by:298
Symbol 297 ButtonUses:141 2 142Used by:298
Symbol 298 MovieClipUses:119 1 120 289 148 122 123 124 125 290 291 292 293 294 295 296 297Used by:Timeline
Symbol 299 GraphicUsed by:300
Symbol 300 MovieClipUses:299Used by:Timeline
Symbol 301 GraphicUsed by:302
Symbol 302 MovieClipUses:301Used by:Timeline
Symbol 303 TextUses:236Used by:304
Symbol 304 MovieClipUses:1 303 SS4Used by:Timeline
Symbol 305 GraphicUsed by:315
Symbol 306 ShapeTweeningUsed by:315
Symbol 307 ShapeTweeningUsed by:315
Symbol 308 GraphicUsed by:315
Symbol 309 ShapeTweeningUsed by:315
Symbol 310 GraphicUsed by:315
Symbol 311 ShapeTweeningUsed by:315
Symbol 312 GraphicUsed by:315
Symbol 313 ShapeTweeningUsed by:315
Symbol 314 ButtonUses:141 2 142Used by:315
Symbol 315 MovieClipUses:119 1 120 305 148 122 123 124 306 307 308 309 310 311 312 125 313 314Used by:Timeline
Symbol 316 MovieClipUses:212 217Used by:318
Symbol 317 MovieClipUses:222Used by:318
Symbol 318 MovieClipUses:201 203 205 207 209 211 316 220 317Used by:322 1234
Symbol 319 GraphicUsed by:320
Symbol 320 MovieClipUses:319 217Used by:321 596 598 711
Symbol 321 MovieClipUses:54 56 58 60 62 64 320 68 70Used by:322 599 600 713 771 943 1028 1030
Symbol 322 MovieClipUses:318 321 1Used by:Timeline
Symbol 323 GraphicUsed by:Timeline
Symbol 324 GraphicUsed by:340
Symbol 325 GraphicUsed by:329 333
Symbol 326 EditableTextUses:91Used by:327
Symbol 327 MovieClipUses:326Used by:329
Symbol 328 GraphicUsed by:329 333  Timeline
Symbol 329 ButtonUses:325 327 328Used by:332
Symbol 330 ShapeTweeningUsed by:332
Symbol 331 ShapeTweeningUsed by:332
Symbol 332 MovieClipUses:329 330 1 331Used by:340
Symbol 333 ButtonUses:325 328Used by:338
Symbol 334 ShapeTweeningUsed by:338
Symbol 335 ButtonUses:1Used by:338
Symbol 336 ShapeTweeningUsed by:338
Symbol 337 ShapeTweeningUsed by:338
Symbol 338 MovieClipUses:333 334 1 335 336 337Used by:340
Symbol 339 EditableTextUses:91Used by:340
Symbol 340 MovieClipUses:324 332 338 339Used by:Timeline
Symbol 341 GraphicUsed by:Timeline
Symbol 342 ShapeTweeningUsed by:346
Symbol 343 ShapeTweeningUsed by:346
Symbol 344 ShapeTweeningUsed by:346
Symbol 345 GraphicUsed by:346
Symbol 346 MovieClipUses:342 1 343 344 345 SS5Used by:Timeline
Symbol 347 ShapeTweeningUsed by:Timeline
Symbol 348 ButtonUses:141 2 248Used by:Timeline
Symbol 349 GraphicUsed by:354
Symbol 350 ShapeTweeningUsed by:354
Symbol 351 ShapeTweeningUsed by:354
Symbol 352 GraphicUsed by:354
Symbol 353 ShapeTweeningUsed by:354
Symbol 354 MovieClipUses:119 1 120 349 148 122 123 124 125 350 351 352 353Used by:Timeline
Symbol 355 ButtonUses:171 172Used by:Timeline
Symbol 356 GraphicUsed by:362
Symbol 357 ShapeTweeningUsed by:362
Symbol 358 ShapeTweeningUsed by:362
Symbol 359 GraphicUsed by:362
Symbol 360 ShapeTweeningUsed by:362
Symbol 361 ButtonUses:141 2 142Used by:362
Symbol 362 MovieClipUses:119 1 120 356 148 122 123 124 125 357 358 359 360 361Used by:Timeline
Symbol 363 GraphicUsed by:373
Symbol 364 ShapeTweeningUsed by:373
Symbol 365 ShapeTweeningUsed by:373
Symbol 366 ShapeTweeningUsed by:373
Symbol 367 ShapeTweeningUsed by:373
Symbol 368 GraphicUsed by:373
Symbol 369 ShapeTweeningUsed by:373
Symbol 370 ShapeTweeningUsed by:373
Symbol 371 ShapeTweeningUsed by:373
Symbol 372 ButtonUses:141 2 142Used by:373
Symbol 373 MovieClipUses:119 1 120 363 148 122 123 124 125 364 365 366 367 368 369 370 371 372Used by:Timeline
Symbol 374 GraphicUsed by:380
Symbol 375 ShapeTweeningUsed by:380
Symbol 376 ShapeTweeningUsed by:380
Symbol 377 GraphicUsed by:380
Symbol 378 ShapeTweeningUsed by:380
Symbol 379 ButtonUses:141 2 142Used by:380
Symbol 380 MovieClipUses:119 1 120 374 148 122 123 124 125 375 376 377 378 379Used by:Timeline
Symbol 381 GraphicUsed by:390
Symbol 382 ShapeTweeningUsed by:390
Symbol 383 ShapeTweeningUsed by:390
Symbol 384 GraphicUsed by:390
Symbol 385 ShapeTweeningUsed by:390
Symbol 386 ShapeTweeningUsed by:390
Symbol 387 GraphicUsed by:390
Symbol 388 ShapeTweeningUsed by:390
Symbol 389 ButtonUses:141 2 142Used by:390
Symbol 390 MovieClipUses:2 1 120 381 148 122 123 124 125 382 383 384 385 386 387 119 388 389Used by:Timeline
Symbol 391 GraphicUsed by:398
Symbol 392 ShapeTweeningUsed by:398
Symbol 393 GraphicUsed by:398
Symbol 394 GraphicUsed by:398
Symbol 395 GraphicUsed by:398
Symbol 396 ShapeTweeningUsed by:398
Symbol 397 ButtonUses:141 2 142Used by:398
Symbol 398 MovieClipUses:119 120 391 1 270 392 99 393 394 395 125 122 124 123 396 397Used by:Timeline
Symbol 399 GraphicUsed by:405
Symbol 400 ShapeTweeningUsed by:405
Symbol 401 ShapeTweeningUsed by:405
Symbol 402 GraphicUsed by:405
Symbol 403 ShapeTweeningUsed by:405
Symbol 404 ButtonUses:141 2 142Used by:405
Symbol 405 MovieClipUses:119 1 120 399 148 122 123 124 125 400 401 402 403 404Used by:Timeline
Symbol 406 GraphicUsed by:410
Symbol 407 ShapeTweeningUsed by:410
Symbol 408 ShapeTweeningUsed by:410
Symbol 409 ButtonUses:141 2 142Used by:410
Symbol 410 MovieClipUses:119 120 1 270 406 407 99 125 122 124 123 408 409Used by:Timeline
Symbol 411 GraphicUsed by:417
Symbol 412 ShapeTweeningUsed by:417
Symbol 413 ShapeTweeningUsed by:417
Symbol 414 GraphicUsed by:417
Symbol 415 ShapeTweeningUsed by:417
Symbol 416 ButtonUses:141 2 142Used by:417
Symbol 417 MovieClipUses:119 1 120 411 148 122 123 124 125 412 413 414 415 416Used by:Timeline
Symbol 418 GraphicUsed by:424
Symbol 419 ShapeTweeningUsed by:424
Symbol 420 ShapeTweeningUsed by:424
Symbol 421 GraphicUsed by:424 430
Symbol 422 ShapeTweeningUsed by:424
Symbol 423 ButtonUses:141 2 142Used by:424
Symbol 424 MovieClipUses:119 1 120 418 148 122 123 124 125 419 420 421 422 423Used by:Timeline
Symbol 425 GraphicUsed by:430
Symbol 426 ShapeTweeningUsed by:430
Symbol 427 ShapeTweeningUsed by:430
Symbol 428 ShapeTweeningUsed by:430
Symbol 429 ButtonUses:141 2 142Used by:430
Symbol 430 MovieClipUses:119 1 120 425 148 122 123 124 125 426 427 421 428 429Used by:Timeline
Symbol 431 GraphicUsed by:435
Symbol 432 ShapeTweeningUsed by:435
Symbol 433 ShapeTweeningUsed by:435
Symbol 434 ButtonUses:141 2 142Used by:435
Symbol 435 MovieClipUses:119 120 1 270 431 432 99 125 122 124 123 433 434Used by:Timeline
Symbol 436 GraphicUsed by:487
Symbol 437 GraphicUsed by:443
Symbol 438 GraphicUsed by:439
Symbol 439 ButtonUses:438Used by:443 586 593 688 695 758 853 919 937
Symbol 440 GraphicUsed by:443
Symbol 441 ShapeTweeningUsed by:443
Symbol 442 GraphicUsed by:443
Symbol 443 MovieClipUses:437 439 440 441 442Used by:487
Symbol 444 GraphicUsed by:487
Symbol 445 GraphicUsed by:449
Symbol 446 FontUsed by:447
Symbol 447 EditableTextUses:446Used by:448
Symbol 448 MovieClipUses:447Used by:449
Symbol 449 ButtonUses:445 448Used by:453
Symbol 450 ShapeTweeningUsed by:453
Symbol 451 GraphicUsed by:453
Symbol 452 ShapeTweeningUsed by:453
Symbol 453 MovieClipUses:449 450 451 452Used by:487
Symbol 454 GraphicUsed by:455
Symbol 455 ButtonUses:454Used by:458
Symbol 456 ShapeTweeningUsed by:458
Symbol 457 ShapeTweeningUsed by:458
Symbol 458 MovieClipUses:455 456 1 457Used by:487
Symbol 459 EditableTextUses:91Used by:460 461
Symbol 460 MovieClipUses:459Used by:461
Symbol 461 ButtonUses:1 460 459Used by:463
Symbol 462 ShapeTweeningUsed by:463
Symbol 463 MovieClipUses:461 462 1Used by:487
Symbol 464 GraphicUsed by:465 469
Symbol 465 ButtonUses:464Used by:469
Symbol 466 ShapeTweeningUsed by:469
Symbol 467 GraphicUsed by:469
Symbol 468 ShapeTweeningUsed by:469
Symbol 469 MovieClipUses:465 466 467 468 464Used by:487
Symbol 470 GraphicUsed by:471
Symbol 471 ButtonUses:470Used by:478
Symbol 472 GraphicUsed by:478
Symbol 473 ShapeTweeningUsed by:478
Symbol 474 MovieClipUses:229Used by:478
Symbol 475 GraphicUsed by:478
Symbol 476 ShapeTweeningUsed by:478
Symbol 477 GraphicUsed by:478
Symbol 478 MovieClipUses:471 472 473 474 475 476 477Used by:487 594 696 769 809
Symbol 479 GraphicUsed by:480 481
Symbol 480 ButtonUses:479Used by:482
Symbol 481 ButtonUses:479Used by:482
Symbol 482 MovieClipUses:480 481Used by:487
Symbol 483 ButtonUses:1Used by:485
Symbol 484 ButtonUses:1Used by:485
Symbol 485 MovieClipUses:483 484Used by:487
Symbol 486 EditableTextUses:91Used by:487
Symbol 487 MovieClipUses:436 443 444 453 458 463 469 478 482 485 486Used by:Timeline
Symbol 488 TextUses:236Used by:489 595 667 740 810 840 941 965 1021 1089
Symbol 489 MovieClipUses:1 488 SS6Used by:Timeline
Symbol 490 GraphicUsed by:496
Symbol 491 ShapeTweeningUsed by:496
Symbol 492 ShapeTweeningUsed by:496
Symbol 493 GraphicUsed by:496
Symbol 494 ShapeTweeningUsed by:496
Symbol 495 ButtonUses:141 2 142Used by:496
Symbol 496 MovieClipUses:119 1 120 490 148 122 123 124 125 491 492 493 494 495Used by:Timeline
Symbol 497 MovieClipUses:201 203 205 207 209 211 218 220 222Used by:499 945 1027
Symbol 498 GraphicUsed by:499
Symbol 499 MovieClipUses:497 498 2Used by:Timeline
Symbol 500 ShapeTweeningUsed by:Timeline
Symbol 501 ButtonUses:141 2 248Used by:Timeline
Symbol 502 GraphicUsed by:505
Symbol 503 ShapeTweeningUsed by:505
Symbol 504 ButtonUses:141 2 142Used by:505
Symbol 505 MovieClipUses:119 1 120 502 148 122 123 124 125 503 504Used by:Timeline
Symbol 506 GraphicUsed by:512
Symbol 507 ShapeTweeningUsed by:512
Symbol 508 ShapeTweeningUsed by:512
Symbol 509 GraphicUsed by:512
Symbol 510 ShapeTweeningUsed by:512
Symbol 511 ButtonUses:141 2 142Used by:512
Symbol 512 MovieClipUses:119 1 120 506 148 122 123 124 125 507 508 509 510 511Used by:Timeline
Symbol 513 GraphicUsed by:516
Symbol 514 ShapeTweeningUsed by:516
Symbol 515 ButtonUses:141 2 142Used by:516
Symbol 516 MovieClipUses:119 1 120 513 148 122 123 124 125 514 515Used by:Timeline
Symbol 517 GraphicUsed by:529
Symbol 518 ShapeTweeningUsed by:529
Symbol 519 GraphicUsed by:529
Symbol 520 GraphicUsed by:529
Symbol 521 GraphicUsed by:529
Symbol 522 GraphicUsed by:529
Symbol 523 GraphicUsed by:529
Symbol 524 GraphicUsed by:529
Symbol 525 GraphicUsed by:529
Symbol 526 GraphicUsed by:529
Symbol 527 ShapeTweeningUsed by:529
Symbol 528 ButtonUses:141 2 142Used by:529
Symbol 529 MovieClipUses:119 120 1 270 517 518 99 519 520 521 522 523 524 525 526 125 122 124 123 527 528Used by:Timeline
Symbol 530 GraphicUsed by:536
Symbol 531 ShapeTweeningUsed by:536
Symbol 532 ShapeTweeningUsed by:536
Symbol 533 GraphicUsed by:536
Symbol 534 ShapeTweeningUsed by:536
Symbol 535 ButtonUses:141 2 142Used by:536
Symbol 536 MovieClipUses:119 1 120 530 148 122 123 124 125 531 532 533 534 535Used by:Timeline
Symbol 537 ButtonUses:171 172Used by:Timeline
Symbol 538 GraphicUsed by:563
Symbol 539 GraphicUsed by:563
Symbol 540 GraphicUsed by:563
Symbol 541 GraphicUsed by:563
Symbol 542 GraphicUsed by:563
Symbol 543 GraphicUsed by:563
Symbol 544 GraphicUsed by:563
Symbol 545 GraphicUsed by:563
Symbol 546 GraphicUsed by:563
Symbol 547 GraphicUsed by:563
Symbol 548 GraphicUsed by:563
Symbol 549 GraphicUsed by:563
Symbol 550 GraphicUsed by:563
Symbol 551 GraphicUsed by:563
Symbol 552 GraphicUsed by:563
Symbol 553 GraphicUsed by:563
Symbol 554 GraphicUsed by:563
Symbol 555 GraphicUsed by:563
Symbol 556 GraphicUsed by:563
Symbol 557 GraphicUsed by:563
Symbol 558 ShapeTweeningUsed by:563
Symbol 559 ShapeTweeningUsed by:563
Symbol 560 GraphicUsed by:563
Symbol 561 ShapeTweeningUsed by:563
Symbol 562 ButtonUses:141 2 142Used by:563
Symbol 563 MovieClipUses:119 1 120 148 122 123 124 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 125 561 562Used by:Timeline
Symbol 564 GraphicUsed by:Timeline
Symbol 565 GraphicUsed by:594
Symbol 566 ButtonUses:1Used by:569 572
Symbol 567 ShapeTweeningUsed by:569
Symbol 568 ShapeTweeningUsed by:569
Symbol 569 MovieClipUses:566 567 1 568Used by:594
Symbol 570 ShapeTweeningUsed by:572
Symbol 571 ShapeTweeningUsed by:572
Symbol 572 MovieClipUses:566 570 1 571Used by:594
Symbol 573 GraphicUsed by:586
Symbol 574 GraphicUsed by:576 580
Symbol 575 GraphicUsed by:576 580
Symbol 576 ButtonUses:574 575Used by:586
Symbol 577 GraphicUsed by:586
Symbol 578 GraphicUsed by:586
Symbol 579 ShapeTweeningUsed by:586
Symbol 580 ButtonUses:574 575Used by:586
Symbol 581 ShapeTweeningUsed by:586
Symbol 582 ShapeTweeningUsed by:586
Symbol 583 GraphicUsed by:586
Symbol 584 ShapeTweeningUsed by:586
Symbol 585 ShapeTweeningUsed by:586
Symbol 586 MovieClipUses:573 439 576 577 578 579 580 581 582 583 584 585Used by:594
Symbol 587 GraphicUsed by:593
Symbol 588 GraphicUsed by:593
Symbol 589 GraphicUsed by:593
Symbol 590 ShapeTweeningUsed by:593
Symbol 591 ShapeTweeningUsed by:593
Symbol 592 GraphicUsed by:593
Symbol 593 MovieClipUses:587 439 588 589 590 591 592Used by:594
Symbol 594 MovieClipUses:565 569 572 586 478 593Used by:Timeline
Symbol 595 MovieClipUses:1 488 SS7Used by:Timeline
Symbol 596 MovieClipUses:58 60 54 56 320 62 64 68 70Used by:599 600 943 1028
Symbol 597 GraphicUsed by:599 942 1234
Symbol 598 MovieClipUses:54 56 58 60 62 64 320 68 70Used by:599
Symbol 599 MovieClipUses:596 597 598 229 321Used by:Timeline
Symbol 600 MovieClipUses:596 321 229Used by:Timeline
Symbol 601 ShapeTweeningUsed by:Timeline
Symbol 602 ButtonUses:141 2 248Used by:Timeline
Symbol 603 ButtonUses:171 172Used by:Timeline
Symbol 604 GraphicUsed by:610
Symbol 605 ShapeTweeningUsed by:610
Symbol 606 ShapeTweeningUsed by:610
Symbol 607 GraphicUsed by:610
Symbol 608 ShapeTweeningUsed by:610
Symbol 609 ButtonUses:141 2 142Used by:610
Symbol 610 MovieClipUses:119 1 120 604 148 122 123 124 125 605 606 607 608 609Used by:Timeline
Symbol 611 GraphicUsed by:617
Symbol 612 ShapeTweeningUsed by:617
Symbol 613 ShapeTweeningUsed by:617
Symbol 614 GraphicUsed by:617
Symbol 615 ShapeTweeningUsed by:617
Symbol 616 ButtonUses:141 2 142Used by:617
Symbol 617 MovieClipUses:119 1 120 611 148 122 123 124 125 612 613 614 615 616Used by:Timeline
Symbol 618 GraphicUsed by:624
Symbol 619 ShapeTweeningUsed by:624
Symbol 620 ShapeTweeningUsed by:624
Symbol 621 GraphicUsed by:624
Symbol 622 ShapeTweeningUsed by:624
Symbol 623 ButtonUses:141 2 142Used by:624
Symbol 624 MovieClipUses:119 1 120 618 148 122 123 124 125 619 620 621 622 623Used by:Timeline
Symbol 625 GraphicUsed by:631
Symbol 626 ShapeTweeningUsed by:631
Symbol 627 ShapeTweeningUsed by:631
Symbol 628 GraphicUsed by:631
Symbol 629 ShapeTweeningUsed by:631
Symbol 630 ButtonUses:141 2 142Used by:631
Symbol 631 MovieClipUses:119 1 120 625 148 122 123 124 125 626 627 628 629 630Used by:Timeline
Symbol 632 GraphicUsed by:656
Symbol 633 ShapeTweeningUsed by:656
Symbol 634 GraphicUsed by:656
Symbol 635 GraphicUsed by:656
Symbol 636 GraphicUsed by:656
Symbol 637 GraphicUsed by:656
Symbol 638 GraphicUsed by:656
Symbol 639 GraphicUsed by:656
Symbol 640 GraphicUsed by:656
Symbol 641 GraphicUsed by:656
Symbol 642 GraphicUsed by:656
Symbol 643 GraphicUsed by:656
Symbol 644 GraphicUsed by:656
Symbol 645 GraphicUsed by:656
Symbol 646 GraphicUsed by:656
Symbol 647 GraphicUsed by:656
Symbol 648 GraphicUsed by:656
Symbol 649 GraphicUsed by:656
Symbol 650 GraphicUsed by:656
Symbol 651 GraphicUsed by:656
Symbol 652 GraphicUsed by:656
Symbol 653 GraphicUsed by:656
Symbol 654 ShapeTweeningUsed by:656
Symbol 655 ButtonUses:141 2 142Used by:656
Symbol 656 MovieClipUses:119 120 1 270 632 633 99 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 125 122 124 123 654 655Used by:Timeline
Symbol 657 GraphicUsed by:666
Symbol 658 ShapeTweeningUsed by:666
Symbol 659 ShapeTweeningUsed by:666
Symbol 660 GraphicUsed by:666
Symbol 661 ShapeTweeningUsed by:666
Symbol 662 ShapeTweeningUsed by:666
Symbol 663 GraphicUsed by:666
Symbol 664 ShapeTweeningUsed by:666
Symbol 665 ButtonUses:141 2 142Used by:666
Symbol 666 MovieClipUses:119 1 120 657 148 122 123 124 125 658 659 660 661 662 663 664 665Used by:Timeline
Symbol 667 MovieClipUses:1 488 SS8Used by:Timeline
Symbol 668 GraphicUsed by:Timeline
Symbol 669 GraphicUsed by:696
Symbol 670 ButtonUses:1Used by:673
Symbol 671 ShapeTweeningUsed by:673
Symbol 672 ShapeTweeningUsed by:673
Symbol 673 MovieClipUses:670 671 1 672Used by:696
Symbol 674 GraphicUsed by:696
Symbol 675 ButtonUses:1Used by:681
Symbol 676 ShapeTweeningUsed by:681
Symbol 677 ButtonUses:1Used by:681
Symbol 678 ShapeTweeningUsed by:681
Symbol 679 ButtonUses:1Used by:681
Symbol 680 ShapeTweeningUsed by:681
Symbol 681 MovieClipUses:675 676 1 677 678 679 680Used by:696
Symbol 682 GraphicUsed by:688
Symbol 683 GraphicUsed by:688
Symbol 684 GraphicUsed by:688
Symbol 685 ShapeTweeningUsed by:688
Symbol 686 ShapeTweeningUsed by:688
Symbol 687 GraphicUsed by:688
Symbol 688 MovieClipUses:682 439 683 684 685 686 687 1Used by:696
Symbol 689 GraphicUsed by:695
Symbol 690 GraphicUsed by:695
Symbol 691 GraphicUsed by:695
Symbol 692 ShapeTweeningUsed by:695
Symbol 693 ShapeTweeningUsed by:695
Symbol 694 GraphicUsed by:695
Symbol 695 MovieClipUses:689 439 690 691 692 693 694Used by:696
Symbol 696 MovieClipUses:669 478 673 674 681 688 695Used by:Timeline
Symbol 697 ShapeTweeningUsed by:710
Symbol 698 ShapeTweeningUsed by:710
Symbol 699 ShapeTweeningUsed by:710
Symbol 700 ShapeTweeningUsed by:710
Symbol 701 ShapeTweeningUsed by:710
Symbol 702 ShapeTweeningUsed by:710
Symbol 703 ShapeTweeningUsed by:710
Symbol 704 ShapeTweeningUsed by:710
Symbol 705 ShapeTweeningUsed by:710
Symbol 706 ShapeTweeningUsed by:710
Symbol 707 ShapeTweeningUsed by:710
Symbol 708 ShapeTweeningUsed by:710
Symbol 709 GraphicUsed by:710
Symbol 710 MovieClipUses:697 698 699 700 701 702 703 704 705 706 707 708 709Used by:711
Symbol 711 MovieClipUses:54 56 58 60 62 64 320 68 70 710Used by:713 1234
Symbol 712 GraphicUsed by:713 771
Symbol 713 MovieClipUses:711 321 229 712Used by:Timeline
Symbol 714 ShapeTweeningUsed by:Timeline
Symbol 715 ButtonUses:141 2 248Used by:Timeline
Symbol 716 GraphicUsed by:725
Symbol 717 ShapeTweeningUsed by:725
Symbol 718 ShapeTweeningUsed by:725
Symbol 719 GraphicUsed by:725
Symbol 720 ShapeTweeningUsed by:725
Symbol 721 ShapeTweeningUsed by:725
Symbol 722 GraphicUsed by:725
Symbol 723 ShapeTweeningUsed by:725
Symbol 724 ButtonUses:141 2 142Used by:725
Symbol 725 MovieClipUses:119 1 120 716 148 122 123 124 125 717 718 719 720 721 722 723 724Used by:Timeline
Symbol 726 GraphicUsed by:732
Symbol 727 ShapeTweeningUsed by:732
Symbol 728 ShapeTweeningUsed by:732
Symbol 729 GraphicUsed by:732 739
Symbol 730 ShapeTweeningUsed by:732
Symbol 731 ButtonUses:141 2 142Used by:732
Symbol 732 MovieClipUses:119 1 120 726 148 122 123 124 125 727 728 729 730 731Used by:Timeline
Symbol 733 GraphicUsed by:739
Symbol 734 ShapeTweeningUsed by:739
Symbol 735 ShapeTweeningUsed by:739
Symbol 736 GraphicUsed by:739
Symbol 737 ShapeTweeningUsed by:739
Symbol 738 ButtonUses:141 2 142Used by:739
Symbol 739 MovieClipUses:119 1 120 733 148 122 123 124 125 734 735 729 736 737 738Used by:Timeline
Symbol 740 MovieClipUses:1 488 SS9Used by:Timeline
Symbol 741 GraphicUsed by:Timeline
Symbol 742 MovieClipUses:201 203 205 207 209 211 218 220 222Used by:744
Symbol 743 MovieClipUses:201 203 205 207 209 211 218 220 222Used by:744
Symbol 744 MovieClipUses:223 742 743Used by:Timeline
Symbol 745 GraphicUsed by:769
Symbol 746 EditableTextUses:3Used by:769
Symbol 747 ButtonUses:1Used by:750 763
Symbol 748 ShapeTweeningUsed by:750
Symbol 749 ShapeTweeningUsed by:750
Symbol 750 MovieClipUses:747 748 1 749Used by:769
Symbol 751 GraphicUsed by:769
Symbol 752 GraphicUsed by:758
Symbol 753 GraphicUsed by:758
Symbol 754 ShapeTweeningUsed by:758
Symbol 755 ShapeTweeningUsed by:758
Symbol 756 GraphicUsed by:758
Symbol 757 ShapeTweeningUsed by:758
Symbol 758 MovieClipUses:752 439 1 753 754 755 756 757Used by:769
Symbol 759 EditableTextUses:3Used by:769
Symbol 760 ShapeTweeningUsed by:763
Symbol 761 ButtonUses:1Used by:763
Symbol 762 ShapeTweeningUsed by:763
Symbol 763 MovieClipUses:747 760 1 761 762Used by:769
Symbol 764 ButtonUses:1Used by:768
Symbol 765 ShapeTweeningUsed by:768
Symbol 766 ShapeTweeningUsed by:768
Symbol 767 ShapeTweeningUsed by:768
Symbol 768 MovieClipUses:764 765 766 1 767Used by:769
Symbol 769 MovieClipUses:745 746 750 751 758 478 759 763 768Used by:Timeline
Symbol 770 MovieClipUses:228Used by:771
Symbol 771 MovieClipUses:75 770 229 321 712Used by:Timeline
Symbol 772 MovieClipUses:229Used by:Timeline
Symbol 773 GraphicUsed by:774
Symbol 774 MovieClipUses:773Used by:Timeline
Symbol 775 ShapeTweeningUsed by:Timeline
Symbol 776 ButtonUses:141 2 248Used by:Timeline
Symbol 777 ShapeTweeningUsed by:Timeline
Symbol 778 GraphicUsed by:781
Symbol 779 ShapeTweeningUsed by:781
Symbol 780 ButtonUses:141 2 142Used by:781
Symbol 781 MovieClipUses:119 1 120 778 148 122 123 124 125 779 780Used by:Timeline
Symbol 782 GraphicUsed by:788
Symbol 783 ShapeTweeningUsed by:788
Symbol 784 ShapeTweeningUsed by:788
Symbol 785 GraphicUsed by:788
Symbol 786 ShapeTweeningUsed by:788
Symbol 787 ButtonUses:141 2 142Used by:788
Symbol 788 MovieClipUses:119 1 120 782 148 122 123 124 125 783 784 785 786 787Used by:Timeline
Symbol 789 GraphicUsed by:798
Symbol 790 ShapeTweeningUsed by:798
Symbol 791 ShapeTweeningUsed by:798
Symbol 792 GraphicUsed by:798
Symbol 793 ShapeTweeningUsed by:798
Symbol 794 ShapeTweeningUsed by:798
Symbol 795 GraphicUsed by:798
Symbol 796 ShapeTweeningUsed by:798
Symbol 797 ButtonUses:141 2 142Used by:798
Symbol 798 MovieClipUses:119 1 120 789 148 122 123 124 125 790 791 792 793 794 795 796 797Used by:Timeline
Symbol 799 GraphicUsed by:Timeline
Symbol 800 GraphicUsed by:Timeline
Symbol 801 GraphicUsed by:809
Symbol 802 ButtonUses:1Used by:805 808
Symbol 803 ShapeTweeningUsed by:805
Symbol 804 ShapeTweeningUsed by:805
Symbol 805 MovieClipUses:802 803 1 804Used by:809
Symbol 806 ShapeTweeningUsed by:808
Symbol 807 ShapeTweeningUsed by:808
Symbol 808 MovieClipUses:802 806 1 807Used by:809
Symbol 809 MovieClipUses:801 478 805 808Used by:Timeline
Symbol 810 MovieClipUses:1 488 SS10Used by:Timeline
Symbol 811 ShapeTweeningUsed by:Timeline
Symbol 812 ButtonUses:141 2 248Used by:Timeline
Symbol 813 ShapeTweeningUsed by:Timeline
Symbol 814 ButtonUses:171 172Used by:Timeline
Symbol 815 GraphicUsed by:816
Symbol 816 MovieClipUses:815Used by:Timeline
Symbol 817 BitmapUsed by:818
Symbol 818 GraphicUses:817Used by:821
Symbol 819 BitmapUsed by:820
Symbol 820 GraphicUses:819Used by:821
Symbol 821 MovieClipUses:818 820Used by:Timeline
Symbol 822 GraphicUsed by:823
Symbol 823 MovieClipUses:822Used by:Timeline
Symbol 824 FontUsed by:825 829 831 844 845
Symbol 825 TextUses:824Used by:Timeline
Symbol 826 BitmapUsed by:827
Symbol 827 GraphicUses:826Used by:828
Symbol 828 MovieClipUses:827Used by:832
Symbol 829 TextUses:824Used by:832
Symbol 830 GraphicUsed by:832
Symbol 831 TextUses:824Used by:832
Symbol 832 MovieClipUses:828 829 830 831Used by:Timeline
Symbol 833 GraphicUsed by:839
Symbol 834 ShapeTweeningUsed by:839
Symbol 835 ShapeTweeningUsed by:839
Symbol 836 GraphicUsed by:839
Symbol 837 ShapeTweeningUsed by:839
Symbol 838 ButtonUses:141 2 142Used by:839
Symbol 839 MovieClipUses:119 1 120 833 148 122 123 124 834 835 836 125 837 838Used by:Timeline
Symbol 840 MovieClipUses:1 488 SS11Used by:Timeline
Symbol 841 GraphicUsed by:Timeline
Symbol 842 GraphicUsed by:843
Symbol 843 MovieClipUses:842Used by:Timeline
Symbol 844 TextUses:824Used by:Timeline
Symbol 845 TextUses:824Used by:Timeline
Symbol 846 GraphicUsed by:854
Symbol 847 GraphicUsed by:853
Symbol 848 ShapeTweeningUsed by:853
Symbol 849 GraphicUsed by:853
Symbol 850 ShapeTweeningUsed by:853
Symbol 851 ShapeTweeningUsed by:853
Symbol 852 GraphicUsed by:853
Symbol 853 MovieClipUses:847 439 848 1 849 850 851 852 103Used by:854
Symbol 854 MovieClipUses:846 853Used by:Timeline
Symbol 855 ShapeTweeningUsed by:Timeline
Symbol 856 ButtonUses:141 2 248Used by:Timeline
Symbol 857 ButtonUses:171 172Used by:Timeline
Symbol 858 GraphicUsed by:861
Symbol 859 ShapeTweeningUsed by:861
Symbol 860 ButtonUses:141 2 142Used by:861
Symbol 861 MovieClipUses:119 1 120 858 148 122 123 124 125 859 860Used by:Timeline
Symbol 862 GraphicUsed by:871
Symbol 863 ShapeTweeningUsed by:871
Symbol 864 ShapeTweeningUsed by:871
Symbol 865 GraphicUsed by:871
Symbol 866 ShapeTweeningUsed by:871
Symbol 867 ShapeTweeningUsed by:871
Symbol 868 GraphicUsed by:871
Symbol 869 ShapeTweeningUsed by:871
Symbol 870 ButtonUses:141 2 142Used by:871
Symbol 871 MovieClipUses:119 1 120 862 148 122 123 124 125 863 864 865 866 867 868 869 870Used by:Timeline
Symbol 872 GraphicUsed by:889
Symbol 873 ShapeTweeningUsed by:889
Symbol 874 ShapeTweeningUsed by:889
Symbol 875 GraphicUsed by:889
Symbol 876 GraphicUsed by:887
Symbol 877 GraphicUsed by:887
Symbol 878 GraphicUsed by:887
Symbol 879 GraphicUsed by:887
Symbol 880 GraphicUsed by:887
Symbol 881 GraphicUsed by:887
Symbol 882 GraphicUsed by:887
Symbol 883 GraphicUsed by:887
Symbol 884 GraphicUsed by:887
Symbol 885 GraphicUsed by:887
Symbol 886 GraphicUsed by:887
Symbol 887 MovieClipUses:876 877 878 879 880 881 882 883 884 885 886Used by:889
Symbol 888 ShapeTweeningUsed by:889
Symbol 889 MovieClipUses:119 1 120 872 148 122 123 124 125 873 874 875 887 888Used by:Timeline
Symbol 890 GraphicUsed by:893
Symbol 891 ShapeTweeningUsed by:893
Symbol 892 ButtonUses:141 2 142Used by:893
Symbol 893 MovieClipUses:119 1 120 890 148 122 123 124 125 891 892Used by:Timeline
Symbol 894 GraphicUsed by:903
Symbol 895 ShapeTweeningUsed by:903
Symbol 896 ShapeTweeningUsed by:903
Symbol 897 GraphicUsed by:903
Symbol 898 ShapeTweeningUsed by:903
Symbol 899 ShapeTweeningUsed by:903
Symbol 900 GraphicUsed by:903
Symbol 901 ShapeTweeningUsed by:903
Symbol 902 ButtonUses:141 2 142Used by:903
Symbol 903 MovieClipUses:119 1 120 894 148 122 123 124 125 895 896 897 898 899 900 901 902Used by:Timeline
Symbol 904 GraphicUsed by:910
Symbol 905 ShapeTweeningUsed by:910
Symbol 906 ShapeTweeningUsed by:910
Symbol 907 GraphicUsed by:910
Symbol 908 ShapeTweeningUsed by:910
Symbol 909 ButtonUses:141 2 142Used by:910
Symbol 910 MovieClipUses:119 1 120 904 148 122 123 124 125 905 906 907 908 909Used by:Timeline
Symbol 911 GraphicUsed by:Timeline
Symbol 912 MovieClipUses:229Used by:Timeline
Symbol 913 GraphicUsed by:938
Symbol 914 GraphicUsed by:919
Symbol 915 GraphicUsed by:919
Symbol 916 ShapeTweeningUsed by:919
Symbol 917 ShapeTweeningUsed by:919
Symbol 918 GraphicUsed by:919
Symbol 919 MovieClipUses:914 439 1 915 916 917 918Used by:938
Symbol 920 GraphicUsed by:921
Symbol 921 ButtonUses:920Used by:925
Symbol 922 ShapeTweeningUsed by:925
Symbol 923 ShapeTweeningUsed by:925
Symbol 924 ShapeTweeningUsed by:925
Symbol 925 MovieClipUses:921 922 103 923 924Used by:938
Symbol 926 GraphicUsed by:937
Symbol 927 GraphicUsed by:937
Symbol 928 GraphicUsed by:937
Symbol 929 ShapeTweeningUsed by:937
Symbol 930 GraphicUsed by:937
Symbol 931 ShapeTweeningUsed by:937
Symbol 932 ShapeTweeningUsed by:937
Symbol 933 ShapeTweeningUsed by:937
Symbol 934 ShapeTweeningUsed by:937
Symbol 935 ShapeTweeningUsed by:937
Symbol 936 ShapeTweeningUsed by:937
Symbol 937 MovieClipUses:926 439 927 1 928 929 930 931 932 933 934 935 936Used by:938
Symbol 938 MovieClipUses:913 919 925 937Used by:Timeline
Symbol 939 MovieClipUses:99Used by:940
Symbol 940 MovieClipUses:228 939 74 75 229Used by:Timeline
Symbol 941 MovieClipUses:1 488 SS12Used by:Timeline
Symbol 942 ButtonUses:597Used by:943
Symbol 943 MovieClipUses:596 942 321 229Used by:Timeline
Symbol 944 ButtonUses:99Used by:945
Symbol 945 MovieClipUses:497 944 2Used by:Timeline
Symbol 946 GraphicUsed by:947
Symbol 947 MovieClipUses:946Used by:948
Symbol 948 MovieClipUses:233 234 947Used by:Timeline
Symbol 949 ShapeTweeningUsed by:Timeline
Symbol 950 ButtonUses:141 2 248Used by:Timeline
Symbol 951 ButtonUses:171 172Used by:Timeline
Symbol 952 GraphicUsed by:Timeline
Symbol 953 GraphicUsed by:954
Symbol 954 MovieClipUses:953Used by:Timeline
Symbol 955 GraphicUsed by:956
Symbol 956 MovieClipUses:955Used by:Timeline
Symbol 957 GraphicUsed by:Timeline
Symbol 958 GraphicUsed by:963
Symbol 959 GraphicUsed by:960
Symbol 960 MovieClipUses:959Used by:963
Symbol 961 MovieClipUses:122Used by:963
Symbol 962 GraphicUsed by:963
Symbol 963 ButtonUses:958 960 961 962 99Used by:964
Symbol 964 MovieClipUses:963Used by:Timeline
Symbol 965 MovieClipUses:1 488 SS13Used by:Timeline
Symbol 966 GraphicUsed by:Timeline
Symbol 967 EditableTextUses:91Used by:Timeline
Symbol 968 EditableTextUses:91Used by:Timeline
Symbol 969 EditableTextUses:91Used by:Timeline
Symbol 970 ShapeTweeningUsed by:Timeline
Symbol 971 ButtonUses:141 2 248Used by:Timeline
Symbol 972 ButtonUses:171 172Used by:Timeline
Symbol 973 GraphicUsed by:Timeline
Symbol 974 GraphicUsed by:986
Symbol 975 MovieClipUses:1Used by:978 981 985
Symbol 976 ShapeTweeningUsed by:978
Symbol 977 ShapeTweeningUsed by:978
Symbol 978 MovieClipUses:975 976 1 977Used by:986
Symbol 979 ShapeTweeningUsed by:981
Symbol 980 ShapeTweeningUsed by:981
Symbol 981 MovieClipUses:975 979 1 980Used by:986
Symbol 982 ShapeTweeningUsed by:985
Symbol 983 ShapeTweeningUsed by:985
Symbol 984 ShapeTweeningUsed by:985
Symbol 985 MovieClipUses:975 982 1 983 984Used by:986
Symbol 986 MovieClipUses:974 978 981 985Used by:Timeline
Symbol 987 EditableTextUses:91Used by:Timeline
Symbol 988 EditableTextUses:91Used by:Timeline
Symbol 989 ShapeTweeningUsed by:Timeline
Symbol 990 ButtonUses:141 2 248Used by:Timeline
Symbol 991 GraphicUsed by:1002 1009
Symbol 992 ShapeTweeningUsed by:1002
Symbol 993 GraphicUsed by:1002 1009
Symbol 994 ShapeTweeningUsed by:1002
Symbol 995 ShapeTweeningUsed by:1002
Symbol 996 GraphicUsed by:1002 1009
Symbol 997 ShapeTweeningUsed by:1002
Symbol 998 ShapeTweeningUsed by:1002
Symbol 999 GraphicUsed by:1002 1009
Symbol 1000 ShapeTweeningUsed by:1002
Symbol 1001 ButtonUses:141 2 142Used by:1002
Symbol 1002 MovieClipUses:119 1 120 991 148 122 123 124 125 992 993 994 995 996 997 998 999 1000 1001Used by:Timeline
Symbol 1003 GraphicUsed by:1009
Symbol 1004 ShapeTweeningUsed by:1009
Symbol 1005 ShapeTweeningUsed by:1009
Symbol 1006 GraphicUsed by:1009
Symbol 1007 ShapeTweeningUsed by:1009
Symbol 1008 ButtonUses:141 2 142Used by:1009
Symbol 1009 MovieClipUses:119 1 120 1003 148 122 123 124 125 991 993 1004 1005 996 1006 999 1007 1008Used by:Timeline
Symbol 1010 GraphicUsed by:1016
Symbol 1011 ShapeTweeningUsed by:1016
Symbol 1012 GraphicUsed by:1016
Symbol 1013 ShapeTweeningUsed by:1016
Symbol 1014 ShapeTweeningUsed by:1016
Symbol 1015 ButtonUses:141 2 142Used by:1016
Symbol 1016 MovieClipUses:119 1 120 1010 148 122 123 124 125 1011 1012 1013 1014 1015Used by:Timeline
Symbol 1017 GraphicUsed by:Timeline
Symbol 1018 ButtonUses:171 172Used by:Timeline
Symbol 1019 GraphicUsed by:1020
Symbol 1020 MovieClipUses:1019Used by:Timeline
Symbol 1021 MovieClipUses:1 488 SS14Used by:Timeline
Symbol 1022 ShapeTweeningUsed by:Timeline
Symbol 1023 ButtonUses:141 2 248Used by:Timeline
Symbol 1024 GraphicUsed by:Timeline
Symbol 1025 ButtonUses:171 172Used by:Timeline
Symbol 1026 GraphicUsed by:1027
Symbol 1027 MovieClipUses:497 1026 2Used by:1030
Symbol 1028 MovieClipUses:596 321 229Used by:1029
Symbol 1029 MovieClipUses:1028Used by:1030
Symbol 1030 MovieClipUses:228 1027 1029 75 74 321Used by:Timeline
Symbol 1031 GraphicUsed by:1034
Symbol 1032 ShapeTweeningUsed by:1034
Symbol 1033 ButtonUses:141 2 142Used by:1034
Symbol 1034 MovieClipUses:119 1 120 1031 148 122 123 124 125 1032 1033Used by:Timeline
Symbol 1035 GraphicUsed by:1051
Symbol 1036 ShapeTweeningUsed by:1051
Symbol 1037 ShapeTweeningUsed by:1051
Symbol 1038 GraphicUsed by:1051
Symbol 1039 ShapeTweeningUsed by:1051
Symbol 1040 ShapeTweeningUsed by:1051
Symbol 1041 GraphicUsed by:1051
Symbol 1042 ShapeTweeningUsed by:1051
Symbol 1043 ShapeTweeningUsed by:1051
Symbol 1044 GraphicUsed by:1051
Symbol 1045 ShapeTweeningUsed by:1051
Symbol 1046 ShapeTweeningUsed by:1051
Symbol 1047 ShapeTweeningUsed by:1051
Symbol 1048 GraphicUsed by:1051
Symbol 1049 ShapeTweeningUsed by:1051
Symbol 1050 ButtonUses:141 2 142Used by:1051
Symbol 1051 MovieClipUses:119 1 120 1035 148 122 123 124 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 125 1049 1050Used by:Timeline
Symbol 1052 GraphicUsed by:1061
Symbol 1053 ShapeTweeningUsed by:1061
Symbol 1054 ShapeTweeningUsed by:1061
Symbol 1055 GraphicUsed by:1061
Symbol 1056 ShapeTweeningUsed by:1061
Symbol 1057 ShapeTweeningUsed by:1061
Symbol 1058 GraphicUsed by:1061
Symbol 1059 ShapeTweeningUsed by:1061
Symbol 1060 ButtonUses:141 2 142Used by:1061
Symbol 1061 MovieClipUses:119 1 120 1052 148 122 123 124 1053 1054 1055 1056 1057 1058 125 1059 1060Used by:Timeline
Symbol 1062 GraphicUsed by:1077
Symbol 1063 ShapeTweeningUsed by:1077
Symbol 1064 ShapeTweeningUsed by:1077
Symbol 1065 GraphicUsed by:1077
Symbol 1066 ShapeTweeningUsed by:1077
Symbol 1067 ShapeTweeningUsed by:1077
Symbol 1068 GraphicUsed by:1077
Symbol 1069 ShapeTweeningUsed by:1077
Symbol 1070 ShapeTweeningUsed by:1077
Symbol 1071 GraphicUsed by:1077
Symbol 1072 ShapeTweeningUsed by:1077
Symbol 1073 ShapeTweeningUsed by:1077
Symbol 1074 GraphicUsed by:1077
Symbol 1075 ShapeTweeningUsed by:1077
Symbol 1076 ButtonUses:141 2 142Used by:1077
Symbol 1077 MovieClipUses:119 1 120 1062 148 122 123 124 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 125 1075 1076Used by:Timeline
Symbol 1078 GraphicUsed by:1088
Symbol 1079 ShapeTweeningUsed by:1088
Symbol 1080 ShapeTweeningUsed by:1088
Symbol 1081 ShapeTweeningUsed by:1088
Symbol 1082 GraphicUsed by:1088
Symbol 1083 ShapeTweeningUsed by:1088
Symbol 1084 ShapeTweeningUsed by:1088
Symbol 1085 GraphicUsed by:1088
Symbol 1086 ShapeTweeningUsed by:1088
Symbol 1087 ButtonUses:141 2 142Used by:1088
Symbol 1088 MovieClipUses:119 120 1 270 1078 1079 99 1080 1081 1082 1083 1084 1085 125 122 124 123 1086 1087Used by:Timeline
Symbol 1089 MovieClipUses:1 488 SS15Used by:Timeline
Symbol 1090 MovieClipUses:99Used by:Timeline
Symbol 1091 GraphicUsed by:1092
Symbol 1092 MovieClipUses:1091Used by:Timeline
Symbol 1093 ShapeTweeningUsed by:1094
Symbol 1094 MovieClipUses:1 1093Used by:Timeline
Symbol 1095 ShapeTweeningUsed by:Timeline
Symbol 1096 ButtonUses:141 2 248Used by:Timeline
Symbol 1097 GraphicUsed by:Timeline
Symbol 1098 GraphicUsed by:1101
Symbol 1099 ShapeTweeningUsed by:1101
Symbol 1100 ButtonUses:141 2 142Used by:1101
Symbol 1101 MovieClipUses:119 1 120 1098 148 122 123 124 125 1099 1100Used by:Timeline
Symbol 1102 GraphicUsed by:1105
Symbol 1103 ShapeTweeningUsed by:1105
Symbol 1104 ButtonUses:141 2 142Used by:1105
Symbol 1105 MovieClipUses:119 1 120 1102 148 122 123 124 125 1103 1104Used by:Timeline
Symbol 1106 GraphicUsed by:1107
Symbol 1107 MovieClipUses:119 120 1106Used by:Timeline
Symbol 1108 GraphicUsed by:1109
Symbol 1109 MovieClipUses:119 120 1108Used by:Timeline
Symbol 1110 ButtonUses:171 172Used by:Timeline
Symbol 1111 GraphicUsed by:1112
Symbol 1112 MovieClipUses:1111Used by:Timeline
Symbol 1113 GraphicUsed by:1218
Symbol 1114 GraphicUsed by:1218
Symbol 1115 GraphicUsed by:1218
Symbol 1116 GraphicUsed by:1218
Symbol 1117 GraphicUsed by:1218
Symbol 1118 GraphicUsed by:1218
Symbol 1119 GraphicUsed by:1218
Symbol 1120 GraphicUsed by:1218
Symbol 1121 GraphicUsed by:1218
Symbol 1122 GraphicUsed by:1218
Symbol 1123 GraphicUsed by:1218
Symbol 1124 GraphicUsed by:1218
Symbol 1125 GraphicUsed by:1218
Symbol 1126 GraphicUsed by:1218
Symbol 1127 GraphicUsed by:1218
Symbol 1128 GraphicUsed by:1218
Symbol 1129 GraphicUsed by:1218
Symbol 1130 GraphicUsed by:1218
Symbol 1131 GraphicUsed by:1218
Symbol 1132 GraphicUsed by:1218
Symbol 1133 GraphicUsed by:1218
Symbol 1134 GraphicUsed by:1218
Symbol 1135 GraphicUsed by:1218
Symbol 1136 GraphicUsed by:1218
Symbol 1137 GraphicUsed by:1218
Symbol 1138 GraphicUsed by:1218
Symbol 1139 GraphicUsed by:1218
Symbol 1140 GraphicUsed by:1218
Symbol 1141 GraphicUsed by:1218
Symbol 1142 GraphicUsed by:1218
Symbol 1143 GraphicUsed by:1218
Symbol 1144 GraphicUsed by:1218
Symbol 1145 GraphicUsed by:1218
Symbol 1146 GraphicUsed by:1218
Symbol 1147 GraphicUsed by:1218
Symbol 1148 GraphicUsed by:1218
Symbol 1149 GraphicUsed by:1218
Symbol 1150 GraphicUsed by:1218
Symbol 1151 GraphicUsed by:1218
Symbol 1152 GraphicUsed by:1218
Symbol 1153 GraphicUsed by:1218
Symbol 1154 GraphicUsed by:1218
Symbol 1155 GraphicUsed by:1218
Symbol 1156 GraphicUsed by:1218
Symbol 1157 GraphicUsed by:1218
Symbol 1158 GraphicUsed by:1218
Symbol 1159 GraphicUsed by:1218
Symbol 1160 GraphicUsed by:1218
Symbol 1161 GraphicUsed by:1218
Symbol 1162 GraphicUsed by:1218
Symbol 1163 GraphicUsed by:1218
Symbol 1164 GraphicUsed by:1218
Symbol 1165 GraphicUsed by:1218
Symbol 1166 GraphicUsed by:1218
Symbol 1167 GraphicUsed by:1218
Symbol 1168 GraphicUsed by:1218
Symbol 1169 GraphicUsed by:1218
Symbol 1170 GraphicUsed by:1218
Symbol 1171 GraphicUsed by:1218
Symbol 1172 GraphicUsed by:1218
Symbol 1173 GraphicUsed by:1218
Symbol 1174 GraphicUsed by:1218
Symbol 1175 GraphicUsed by:1218
Symbol 1176 GraphicUsed by:1218
Symbol 1177 GraphicUsed by:1218
Symbol 1178 GraphicUsed by:1218
Symbol 1179 GraphicUsed by:1218
Symbol 1180 GraphicUsed by:1218
Symbol 1181 GraphicUsed by:1218
Symbol 1182 GraphicUsed by:1218
Symbol 1183 GraphicUsed by:1218
Symbol 1184 GraphicUsed by:1218
Symbol 1185 GraphicUsed by:1218
Symbol 1186 GraphicUsed by:1218
Symbol 1187 GraphicUsed by:1218
Symbol 1188 GraphicUsed by:1218
Symbol 1189 GraphicUsed by:1218
Symbol 1190 GraphicUsed by:1218
Symbol 1191 GraphicUsed by:1218
Symbol 1192 GraphicUsed by:1218
Symbol 1193 GraphicUsed by:1218
Symbol 1194 GraphicUsed by:1218
Symbol 1195 GraphicUsed by:1218
Symbol 1196 GraphicUsed by:1218
Symbol 1197 GraphicUsed by:1218
Symbol 1198 GraphicUsed by:1218
Symbol 1199 GraphicUsed by:1218
Symbol 1200 GraphicUsed by:1218
Symbol 1201 GraphicUsed by:1218
Symbol 1202 GraphicUsed by:1218
Symbol 1203 GraphicUsed by:1218
Symbol 1204 GraphicUsed by:1218
Symbol 1205 GraphicUsed by:1218
Symbol 1206 GraphicUsed by:1218
Symbol 1207 GraphicUsed by:1218
Symbol 1208 GraphicUsed by:1218
Symbol 1209 GraphicUsed by:1218
Symbol 1210 GraphicUsed by:1218
Symbol 1211 GraphicUsed by:1218
Symbol 1212 GraphicUsed by:1218
Symbol 1213 GraphicUsed by:1218
Symbol 1214 GraphicUsed by:1218
Symbol 1215 GraphicUsed by:1218
Symbol 1216 GraphicUsed by:1218
Symbol 1217 GraphicUsed by:1218
Symbol 1218 MovieClipUses:1113 234 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 SS16Used by:Timeline
Symbol 1219 ShapeTweeningUsed by:Timeline
Symbol 1220 ButtonUses:141 2 248Used by:Timeline
Symbol 1221 GraphicUsed by:1234
Symbol 1222 GraphicUsed by:1234
Symbol 1223 ShapeTweeningUsed by:1234
Symbol 1224 ShapeTweeningUsed by:1234
Symbol 1225 ShapeTweeningUsed by:1234
Symbol 1226 ShapeTweeningUsed by:1234
Symbol 1227 GraphicUsed by:1234
Symbol 1228 ShapeTweeningUsed by:1234
Symbol 1229 ShapeTweeningUsed by:1234
Symbol 1230 ShapeTweeningUsed by:1234
Symbol 1231 EditableTextUses:3Used by:1232 1233
Symbol 1232 MovieClipUses:169 1231Used by:1233
Symbol 1233 ButtonUses:1232 169 1231Used by:1234
Symbol 1234 MovieClipUses:1221 1 229 2 223 1222 228 183 1223 1224 1225 318 99 711 1226 1227 1228 597 1229 1230 1233 SS17Used by:Timeline
Symbol 1235 GraphicUsed by:1236
Symbol 1236 MovieClipUses:1235Used by:Timeline
Symbol 1237 GraphicUsed by:Timeline
Symbol 1238 EditableTextUses:91Used by:Timeline
Symbol 1239 EditableTextUses:91Used by:Timeline
Symbol 1240 GraphicUsed by:Timeline
Symbol 1241 GraphicUsed by:1242
Symbol 1242 MovieClipUses:1241Used by:Timeline
Streaming Sound 1Used by:Timeline
Streaming Sound 2Used by:Symbol 238 MovieClip
Streaming Sound 3Used by:Symbol 242 MovieClip
Streaming Sound 4Used by:Symbol 304 MovieClip
Streaming Sound 5Used by:Symbol 346 MovieClip
Streaming Sound 6Used by:Symbol 489 MovieClip
Streaming Sound 7Used by:Symbol 595 MovieClip
Streaming Sound 8Used by:Symbol 667 MovieClip
Streaming Sound 9Used by:Symbol 740 MovieClip
Streaming Sound 10Used by:Symbol 810 MovieClip
Streaming Sound 11Used by:Symbol 840 MovieClip
Streaming Sound 12Used by:Symbol 941 MovieClip
Streaming Sound 13Used by:Symbol 965 MovieClip
Streaming Sound 14Used by:Symbol 1021 MovieClip
Streaming Sound 15Used by:Symbol 1089 MovieClip
Streaming Sound 16Used by:Symbol 1218 MovieClip
Streaming Sound 17Used by:Symbol 1234 MovieClip

Instance Names

"ground"Frame 1Symbol 11 MovieClip
"player"Frame 1Symbol 88 MovieClip
"ground"Frame 687Symbol 199 MovieClip
"enemy"Frame 687Symbol 225 MovieClip
"player"Frame 687Symbol 230 MovieClip
"ground"Frame 738Symbol 340 MovieClip
"player"Frame 738Symbol 230 MovieClip
"ground"Frame 789Symbol 487 MovieClip
"player"Frame 789Symbol 230 MovieClip
"ground"Frame 1114Symbol 594 MovieClip
"player"Frame 1114Symbol 230 MovieClip
"ground"Frame 1167Symbol 696 MovieClip
"player"Frame 1167Symbol 230 MovieClip
"door"Frame 1220Symbol 171 MovieClip
"player"Frame 1220Symbol 744 MovieClip
"ground"Frame 1220Symbol 769 MovieClip
"notplayer"Frame 1220Symbol 771 MovieClip
"wall"Frame 1220Symbol 772 MovieClip
"door"Frame 1279Symbol 171 MovieClip
"player"Frame 1279Symbol 744 MovieClip
"ground"Frame 1279Symbol 809 MovieClip
"notplayer"Frame 1279Symbol 771 MovieClip
"wall"Frame 1279Symbol 772 MovieClip
"ground"Frame 1338Symbol 854 MovieClip
"player"Frame 1338Symbol 230 MovieClip
"wall"Frame 1391Symbol 912 MovieClip
"ground"Frame 1391Symbol 938 MovieClip
"player"Frame 1391Symbol 940 MovieClip
"ground"Frame 1444Symbol 954 MovieClip
"ground2"Frame 1444Symbol 956 MovieClip
"player"Frame 1444Symbol 230 MovieClip
"player"Frame 1444Symbol 964 MovieClip
"player"Frame 1536Symbol 230 MovieClip
"ground"Frame 1586Symbol 986 MovieClip
"player"Frame 1586Symbol 230 MovieClip
"player"Frame 1586Symbol 964 MovieClip
"player"Frame 1589Symbol 230 MovieClip
"player"Frame 1639Symbol 230 MovieClip
"ground"Frame 1639Symbol 1020 MovieClip
"lost"Frame 1692Symbol 1030 MovieClip
"player"Frame 1692Symbol 1090 MovieClip
"ground"Frame 1692Symbol 1092 MovieClip
"wall"Frame 1745Symbol 772 MovieClip
"wall2"Frame 1745Symbol 772 MovieClip
"wall1"Frame 1745Symbol 772 MovieClip
"wall5"Frame 1745Symbol 772 MovieClip
"wall4"Frame 1745Symbol 772 MovieClip
"wall3"Frame 1745Symbol 772 MovieClip
"ground"Frame 1745Symbol 1112 MovieClip
"player"Frame 1745Symbol 230 MovieClip
"ground"Frame 1798Symbol 1236 MovieClip
"player"Frame 1798Symbol 230 MovieClip
"ground"Frame 10483Symbol 1242 MovieClip
"player"Frame 10483Symbol 230 MovieClip
"bar"Symbol 52 MovieClip Frame 1Symbol 15 MovieClip
"bargfx"Symbol 52 MovieClip Frame 1Symbol 18 MovieClip
"tankLogo"Symbol 52 MovieClip Frame 1Symbol 35 MovieClip
"bargfx"Symbol 52 MovieClip Frame 2Symbol 18 MovieClip
"loadingText"Symbol 52 MovieClip Frame 2Symbol 39 MovieClip
"bargfx"Symbol 52 MovieClip Frame 20Symbol 18 MovieClip
"att1"Symbol 86 MovieClip Frame 16Symbol 85 MovieClip
"att1"Symbol 88 MovieClip Frame 5Symbol 87 MovieClip
"healthBar"Symbol 235 MovieClip Frame 1Symbol 234 MovieClip
"enemy"Symbol 322 MovieClip Frame 2Symbol 321 MovieClip
"enemy"Symbol 599 MovieClip Frame 2Symbol 598 MovieClip
"enemy"Symbol 599 MovieClip Frame 3Symbol 321 MovieClip
"enemy"Symbol 600 MovieClip Frame 2Symbol 321 MovieClip
"enemy"Symbol 771 MovieClip Frame 2Symbol 770 MovieClip
"enemy"Symbol 771 MovieClip Frame 3Symbol 321 MovieClip
"enemy"Symbol 943 MovieClip Frame 2Symbol 321 MovieClip
"healthBar"Symbol 948 MovieClip Frame 1Symbol 234 MovieClip
"enemy"Symbol 1028 MovieClip Frame 2Symbol 321 MovieClip
"enemy"Symbol 1030 MovieClip Frame 700Symbol 321 MovieClip
"healthBar"Symbol 1218 MovieClip Frame 1Symbol 234 MovieClip

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
Protect (24)Timeline Frame 10 bytes ""

Labels

"OMG"Frame 687
"D"Frame 688
"R2"Frame 737
"OMG1"Frame 738
"D1"Frame 739
"---"Frame 788
"OMG2"Frame 789
"D2"Frame 1064
"OMG3"Frame 1114
"D3"Frame 1117
"OMG4"Frame 1167
"D4"Frame 1170
"OMG5"Frame 1220
"D5"Frame 1222
"next"Frame 1272
"OMG55"Frame 1279
"D55"Frame 1281
"next2"Frame 1331
"OMG6"Frame 1338
"D6"Frame 1341
"OMG7"Frame 1391
"D7"Frame 1394
"OMG8"Frame 1444
"D8"Frame 1536
"OMG85"Frame 1586
"D85"Frame 1589
"OMG9"Frame 1639
"D9"Frame 1642
"OMG12"Frame 1692
"D12"Frame 1695
"OMG13"Frame 1745
"D13"Frame 1748
"LOAD"Symbol 52 MovieClip Frame 1
"COMPLETE_STOP"Symbol 52 MovieClip Frame 2
"BYE"Symbol 713 MovieClip Frame 5
"BYE"Symbol 771 MovieClip Frame 5




http://swfchan.com/9/44190/info.shtml
Created: 8/5 -2019 07:54:54 Last modified: 8/5 -2019 07:54:54 Server time: 23/06 -2024 03:10:28