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

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

TKFB The Game.swf

This is the info page for
Flash #123389

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


Text
10%

L O A D I N G

N A M E :

ilovekawaiigirls

SUBMITTING
...

SUCCESS!

ERROR!

LEVEL
COMPLETED

CONTINUE >>

- Attack (also used to skip dialogues)

M

- Movement

- Hides/Shows player (ex. for screenshot)

- Hides/Shows HUD

- Hides/Shows levels effects

- Dis/Enables debug mode (Cheat1)

- Dis/Enables god mode (Cheat2)

- Skips to the next level (Cheat3)

Game features 3 sets of secrets:
Set 1: Cheat 1, Secret Level 1 - To unlock it beat the final level (either by LOAD or
single run PLAY).
Set 2: Cheat 2, Secret Level 2 along with second player design - To unlock, beat
the first secret level or again the final fight level (Set 1 needs to be unlocked).
Set 3: Cheat 3, Secret Level 3 along with third player desing - Unlocked by
beating the second secret level or yet again the final fight.

Note that using any of the cheats will instantly disable the run times submitting.
That goes for best stage run and top100 times.
Also you wont be able to unlock additional secret levels.
All that untill you restart, that is.

Some object throughout the game are
breakable and can be destroy to obtain
items, clear the path or just smashed for
no reason at all.

To destroy a given object, simple
"attack" it. Note that on levels where
attacking is disallowed, you will be
permited to do it, upon touching the
breakable object.
Refere to the next page for more info.

The majority of game's levels allows
player's attack key.

However, there are times when it's
disabled - on a level where attacking is
disallowed, it will be re-enabled if:
You're fighing with a boss,
Or if you're standing beside a breakable
object.
Stay sharp for the attack key status.

Special effects status - notifies about level's additional effect that
most likely will decrease game's performance on slower machines.
You can hide this effect by pressing the "E" key.

FPS counter - the game is designed to run at 28-29 frames per second
at 2GHz CPU. For slower machines it will probably be a good idea to
turn down the quality (right mouse button -> quality).
Note that no frames are skipped and thus for players with less FPS it
will take longer to finish a level.

Saving - the game auto-saves player's status as much as it can, however to do
that, Flash needs to be setted up first to allow a saving of information localy.
To do that, right click and choose "Settings...", than on the Local Storage tab
set the "unlimited" amount (but probably 10KB would be enough).

<p align="center"><font face="Arial" size="13" color="#990000" letterSpacing="0.000000" kerning="1"><b><i>TEST ABC WARNING SIGN</i></b></font></p>

99:99.99

30

<p align="left"></p>

<p align="left"></p>

<p align="left"></p>

Project lead: Strife
Sprites: Strife
Animations: 4as
Programming: 4as
Script: Strife
Levels design: 4as
Backgrounds design: 4as
Sounds lookup: 4as, Strife
Sounds modding: 4as



Tools used:
Macromedia Flash Professional 8
Paint Shop Pro
GoldWave



Sounds from:
freesound.iua.upf.edu
www.flashkit.com
www.coolastudios.com
www.freesfx.co.uk
www.pacdv.com



Made from love to TKFB!


Thank you for playing!

"Secret Level 1" unlocked!

ilovekawaiigirls

99:99.99

ActionScript [AS1/AS2]

Frame 1
_root.stop();
Instance of Symbol 22 MovieClip in Frame 1
onClipEvent (load) { var nProc = 0; this.LText.text = "0%"; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); } onClipEvent (enterFrame) { if (_root._currentframe < 2) { if (_root.getBytesLoaded() < _root.getBytesTotal()) { this.nProc = _root.getBytesLoaded() / _root.getBytesTotal(); this.LBar._x = -120 + Math.floor(this.nProc * 130); this.LText.text = ("" + Math.floor(this.nProc * 100)) + "%"; } else { this._alpha = this._alpha - 10; if (this._alpha <= 0) { _root.pChar.nLeftX = _root.pChar.nLeftX - 50; _root.pChar.nRightX = _root.pChar.nRightX + 50; _root.pChar.mcParent = null; _root.aPlates = new Array(); this.removeMovieClip(); this.unloadMovie(); removeMovieClip(this); _root.gotoAndStop(2); } } } }
Frame 2
var jumpToLevel = -1; function noMenu(o, i) { _root.inter._visible = !_root.inter._visible; } function noEffect(o, i) { _root.setEffect(); } function startGame() { _root.gotoAndStop(_root.nGameStartFrame); _root.bTimeRun = true; _root.nTotalTime = 0; } function loadGame(l) { _root.bTimeRun = false; _root.nTotalTime = -1; _root.gotoAndStop((_root.nGameStartFrame + l) - 1); } function getParent(mc) { if (mc._parent == _root.game) { return(mc); } return(_root.getParent(mc._parent)); } function removeMovie(mc) { mc.removeMovieClip(); mc.unloadMovie(); removeMovieClip(mc); var _local2 = 0; while (_local2 < _root.aPlates.length) { if (_root.aPlates[_local2] == mc) { _root.aPlates.splice(_local2, 1); return(undefined); } _local2++; } } function attachHPBar(mc) { var _local5 = _root.game.getNextHighestDepth(); var _local3 = _root.game.createEmptyMovieClip("hpbar" + _local5, _local5); _local3.mc = mc; _local3.ll = 0; _local3.ml = mc.nLife; _local3.onEnterFrame = function () { this._x = this.mc._x - 25; this._y = (this.mc._y - 20) - this.mc._height; var _local2 = 50 * (this.mc.nLife / this.ml); this.clear(); this.beginFill(1170705, 100); this.moveTo(0, 0); this.lineTo(_local2, 0); this.lineTo(_local2, 5); this.lineTo(0, 5); this.endFill(); this.beginFill(11145489, 100); this.moveTo(_local2, 0); this.lineTo(50, 0); this.lineTo(50, 5); this.lineTo(_local2, 5); this.endFill(); this.lineStyle(1, 65280, 100); this.moveTo(0, 0); this.lineTo(50, 0); this.lineTo(50, 5); this.lineTo(0, 5); this.lineTo(0, 0); if (this.mc.nLife > this.ll) { this.ml = this.mc.nLife; this.ll = this.mc.nLife; } else { this.ll = this.mc.nLife; } }; } function showMessage(s, nx, ny, fun) { var _local5 = _root.game.getNextHighestDepth(); var _local3 = _root.game.createEmptyMovieClip("mess" + _local5, _local5); var _local4 = new TextFormat(); _local4.color = 4473924 /* 0x444444 */; _local4.font = "EFont"; _local4.bold = true; _local4.size = 12; _local4.align = "center"; _local3._x = nx; _local3._y = ny; _local3.createTextField("msg", 0, 0, 0, 100, 10); _local3.msg.border = true; _local3.msg.borderColor = 4473924 /* 0x444444 */; _local3.msg.background = true; _local3.msg.backgroundColor = 16777215 /* 0xFFFFFF */; _local3.msg.wordWrap = true; _local3.msg.multiline = true; _local3.msg.autoSize = "center"; _local3.msg.embedFonts = true; _local3.msg.setTextFormat(_local4); _local3.msg.setNewTextFormat(_local4); _local3.msg.text = s; _local3.msg._x = (-_local3.msg._width) - 10; _local3.msg._y = (-_local3.msg._height) - 10; _local3.lineStyle(1, 4473924, 100); _local3.beginFill(16777215, 100); _local3.moveTo(-10, -20); _local3.lineTo(0, 0); _local3.lineTo(-20, -10); _local3.endFill(); _local3.t = s.length * 2; if (_local3.t < 30) { _local3.t = 30; } _local3.f = fun; _local3.onEnterFrame = function () { if (((this.t > 0) && (!Key.isDown(_root.nKeyS))) && (!_root.bRemoveMess)) { this.t--; } else { if (!_root.bRemoveMess) { this.f(); } else { _root.bRemoveMess = false; } _root.removeMovie(this); delete this.onEnterFrame; } }; } function ShowText(s) { var _local2 = _root.attachMovie("ArrowText", "ArrowText", _root.getNextHighestDepth()); _local2._x = 550 - _local2._width; _local2._y = 0; _local2.tfMess.text = s; } function endLevel() { _root.bDebugBox = false; _root.deMess.text = ""; curTime = getTimer() - _root.nTimed; _root.bTimerStop = true; if (_root.bTimeRun) { _root.nTotalTime = _root.nTotalTime + curTime; _root.inter.timer.updateTime(_root.nTotalTime); } _root.inter.stimer.updateTime(curTime); var _local4 = _root.getNextHighestDepth(); var _local3 = _root.attachMovie("Stats", "Stats", _local4); _local3._x = Stage.width / 2; _local3._y = Stage.height / 2; _local3.gotoAndStop(1); _local3.onEnterFrame = function () { if (this.getStats != null) { this.getStats(); delete this.onEnterFrame; } }; } function nextLevel() { if (!_root.bCheated) { if ((!_root.bGameEnded) && (_root.nLevelsDone < ((_root._currentframe - _root.nGameStartFrame) + 1))) { _root.nLevelsDone++; } _root.soShared.data.sUserName = _root.sUserName; if (((_root.soShared.data.nLevelsDone == null) || (_root.soShared.data.nLevelsDone == undefined)) || (_root.soShared.data.nLevelsDone < _root.nLevelsDone)) { _root.soShared.data.nLevelsDone = _root.nLevelsDone; } _root.soShared.flush(); } stopAllSounds(); _root.curTime = 0; if (_root.bGameEnded) { _root.gotoAndStop(_root.nGameFinal); } else { _root.nextFrame(); } _root.removeMovie(this._parent); } function endGame(n, l) { if ((l != null) && (l != undefined)) { if (_root.nLevelsDone < l) { _root.nLevelsDone = l; } } else if (_root.nLevelsDone < 10) { _root.nLevelsDone++; } _root.nGameFinal = n; _root.bGameEnded = true; _root.endLevel(); } function submitLapTime(t) { var _local3 = new LoadVars(); _local3.onLoad = function (success) { if (success) { _root.stats.submit.gotoAndStop(3); } else { _root.stats.submit.gotoAndStop(4); } }; var _local2 = new LoadVars(); _local2.type = "lap"; _local2.name = _root.sUserName; _local2.time = t; _local2.level = (_root._currentframe - _root.nGameStartFrame) + 1; _local2.sendAndLoad(_root.sScoreURL, _local3, "POST"); _root.stats.submit.gotoAndStop(2); } function submitTotalTime(t) { var _local3 = new LoadVars(); _local3.onLoad = function (success) { if (success) { _root.submit.gotoAndStop(3); } else { _root.submit.gotoAndStop(4); } }; var _local2 = new LoadVars(); _local2.type = "total"; _local2.name = _root.sUserName; _local2.life = _root.nLife; _local2.time = t; _local2.sendAndLoad(_root.sScoreURL, _local3, "POST"); _root.submit.gotoAndStop(2); } _root.stop(); System.security.allowDomain("*"); System.security.loadPolicyFile("http://tkfbthegame.110mb.com/crossdomain.xml"); var bInLoad = false; var bTimeRun = false; var sScoreURL = "http://tkfbthegame.110mb.com/hiscore/hisubmit.php"; var soShared = SharedObject.getLocal("TKFBGame", "/"); var sUserName = soShared.data.sUserName; var nLevelsDone = soShared.data.nLevelsDone; if (sUserName == null) { sUserName = ""; } if (nLevelsDone == null) { nLevelsDone = 0; } var ciItemNM = new ContextMenuItem("No HUD", _root.noMenu); var ciItemNE = new ContextMenuItem("No Effects", _root.noEffect); ciItemNE.visible = false; ciItemNM.visible = false; var cmContext = new ContextMenu(); cmContext.hideBuiltInItems(); cmContext.builtInItems.quality = true; cmContext.customItems.push(ciItemNE); cmContext.customItems.push(ciItemNM); this.menu = cmContext; var nKeyU = 38; var nKeyD = 40; var nKeyR = 39; var nKeyL = 37; var nKeyS = "Z".charCodeAt(0); var nGameStartFrame = 3; var nGameMenuFrame = 2; var nSpeed = 15; var nEnemySpeed = 4; var nJumpAmp = 1.01; var nGrav = 1; var bAllowAttack = false; var bNearItem = false; var nFallX = 157; var nFallY = -3; var nCamState = 2; var nTimed = 0; var nSecrets = 0; var nMaxSecrets = 0; var nResetDepth = 550; var bCheated = false; var nTotalTime = 0; var bTimerStop = true; var sndSound = new Sound(); var nLife = 3; var nInterAlpha = 50; var aPlates = new Array(); var player; var stats; if (oRootListen == undefined) { var oRootListen = new Object(); oRootListen.onKeyDown = function () { if (Key.isDown("B".charCodeAt(0)) && (_root.nLevelsDone > 7)) { _root.bCheated = true; _root.bTimeRun = false; _root.bDebugBox = !_root.bDebugBox; if (_root.bDebugBox) { if ((_root.game.mcPlayerVec == null) || (_root.game.mcPlayerVec == undefined)) { _root.game.createEmptyMovieClip("mcPlayerVec", _root.game.getNextHighestDepth()); _root.game.mcPlayerVec.lineStyle(5, 16776960); _root.game.mcPlayerVec.moveTo(0, 0); _root.game.mcPlayerVec.lineTo(1, 1); } else { _root.game.mcPlayerVec._visible = true; } _root.deMess.text = "Debug Mode"; var _local2; for (sIter in _root.aPlates) { if (_root.aPlates[sIter].debugBox == undefined) { _root.aPlates[sIter].createEmptyMovieClip("debugBox", _root.aPlates[sIter].getNextHighestDepth()); _root.aPlates[sIter].debugBox.beginFill(16711935, 100); _local2 = _root.aPlates[sIter].box.getBounds(_root.aPlates[sIter]); _root.aPlates[sIter].debugBox.moveTo(_local2.xMin, _local2.yMin); _root.aPlates[sIter].debugBox.lineTo(_local2.xMax, _local2.yMin); _root.aPlates[sIter].debugBox.lineTo(_local2.xMax, _local2.yMax); _root.aPlates[sIter].debugBox.lineTo(_local2.xMin, _local2.yMax); _root.aPlates[sIter].debugBox.lineTo(_local2.xMin, _local2.yMin); } else { _root.aPlates[sIter].debugBox._visible = true; } } } else { _root.deMess.text = ""; _root.game.mcPlayerVec._visible = false; for (sIter in _root.aPlates) { if (_root.aPlates[sIter].debugBox != undefined) { _root.aPlates[sIter].debugBox._visible = false; } } } } if (Key.isDown("N".charCodeAt(0)) && (_root.nLevelsDone > 8)) { _root.bCheated = true; _root.bTimeRun = false; _root.bCheat = !_root.bCheat; if (_root.bCheat) { _root.chMess.text = "God Mode"; } else { _root.chMess.text = ""; } } if (Key.isDown("M".charCodeAt(0))) { _root.player._visible = !_root.player._visible; _root.player.bMove = !_root.player.bMove; } if (Key.isDown("H".charCodeAt(0))) { _root.noMenu(); } if (Key.isDown("E".charCodeAt(0))) { _root.noEffect(); } if (Key.isDown(32) && (_root.nLevelsDone > 9)) { _root.bCheated = true; _root.bTimeRun = false; if (_root._currentframe > 2) { _root.bDebugBox = false; _root.deMess.text = ""; if (_root.jumpToLevel > 0) { _root.gotoAndStop(_root.nGameStartFrame + _root.jumpToLevel); } else if ((_root._currentframe > _root.nGameMenuFrame) && (_root._currentframe < (_root.nGameMenuFrame + 11))) { _root.nextFrame(); } } } if (Key.isDown(13)) { if (_root.nLife < 0) { stopAllSounds(); _root.removeMovie(_root.d_msg); _root.removeMovie(_root.game); _root.gotoAndStop(_root.nGameMenuFrame); } } }; Key.addListener(oRootListen); } var bRemoveMess = false; var curTime = 0; var bGameEnded = false; var nGameFinal = 0;
Instance of Symbol 45 MovieClip in Frame 2
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 54 MovieClip "pChar" in Frame 2
onClipEvent (load) { var nLeftX = (this._x - 120); var nRightX = (this._x + 120); if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 191 MovieClip in Frame 2
onClipEvent (load) { _root.removeMovie(this); }
Instance of Symbol 195 MovieClip "fadeBG" in Frame 2
onClipEvent (load) { var bFade = false; } onClipEvent (enterFrame) { if (!this.bFade) { if (this._visible) { this._alpha = this._alpha - 10; if (this._alpha <= 0) { this._visible = false; } } } else { this._visible = true; if (this._alpha < 100) { this._alpha = this._alpha + 5; } else { _root.startGame(); } } }
Instance of Symbol 235 MovieClip in Frame 2
onClipEvent (load) { this.gotoAndStop(1); _root.removeMovie(this); }
Instance of Symbol 274 MovieClip "loadscreen" in Frame 2
onClipEvent (load) { function doSwitch() { switch (_root.nLevelsDone) { case 9 : _root.loadscreen.l10._visible = true; case 8 : _root.loadscreen.l9._visible = true; case 7 : _root.loadscreen.l8._visible = true; case 6 : _root.loadscreen.l7._visible = true; case 5 : _root.loadscreen.l6._visible = true; case 4 : _root.loadscreen.l5._visible = true; case 3 : _root.loadscreen.l4._visible = true; case 2 : _root.loadscreen.l3._visible = true; case 1 : _root.loadscreen.l2._visible = true; } } if (_root.nLevelsDone > 9) { _root.loadscreen.l11._visible = true; _root.loadscreen.l10._visible = true; _root.loadscreen.l9._visible = true; _root.loadscreen.l8._visible = true; _root.loadscreen.l7._visible = true; _root.loadscreen.l6._visible = true; _root.loadscreen.l5._visible = true; _root.loadscreen.l4._visible = true; _root.loadscreen.l3._visible = true; _root.loadscreen.l2._visible = true; } else { _root.loadscreen.l11._visible = false; _root.loadscreen.l10._visible = false; _root.loadscreen.l9._visible = false; _root.loadscreen.l8._visible = false; _root.loadscreen.l7._visible = false; _root.loadscreen.l6._visible = false; _root.loadscreen.l5._visible = false; _root.loadscreen.l4._visible = false; _root.loadscreen.l3._visible = false; _root.loadscreen.l2._visible = false; } this._visible = false; }
Instance of Symbol 313 MovieClip "infoscreen" in Frame 2
onClipEvent (load) { var fFormat = new TextFormat(); this.fFormat.font = "EFont"; this.bBack._visible = false; this.stop(); }
Frame 3
var fFormat = new TextFormat(); fFormat.font = "EFont"; this.chMess.setTextFormat(fFormat); this.chMess.setNewTextFormat(fFormat); this.chMess.embedFonts = true; this.deMess.setTextFormat(fFormat); this.deMess.setNewTextFormat(fFormat); this.deMess.embedFonts = true; _root.ciItemNM.visible = true; _root.stop(); bAllowAttack = true; nFallX = 157; nFallY = -3; nCamState = 2; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 1; bTimerStop = false; aPlates = new Array(); _root.BG.gotoAndStop(2); _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Instance of Symbol 324 MovieClip "BG" in Frame 3
onClipEvent (load) { this.gotoAndStop(2); var nOldX = this._x; }
Instance of Symbol 593 MovieClip "inter" in Frame 3
onClipEvent (load) { if (_root.nInterAlpha <= 0) { this._visible = false; } else if (_root.nInterAlpha >= 100) { this._alpha = 100; this._visible = true; } else { this._alpha = _root.nInterAlpha; this._visible = true; } }
Frame 4
_root.aPlates = new Array(); bAllowAttack = true; nFallX = 195; nFallY = 85; _root.BG.gotoAndStop(3); nCamState = 2; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 1; bTimerStop = false; _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Frame 5
function setEffect() { this.bFog = !this.bFog; _root.inter.effect._visible = !_root.inter.effect._visible; _root.fog1._visible = this.bFog; _root.fog2._visible = this.bFog; } _root.aPlates = new Array(); bAllowAttack = true; nFallX = 500; nFallY = 135; _root.BG.gotoAndStop(4); nCamState = 2; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 0; bTimerStop = false; _root.ciItemNE.visible = true; _root.inter.effect._visible = true; var bFog = true;
Instance of Symbol 1006 MovieClip "fog1" in Frame 5
onClipEvent (enterFrame) { this._x--; if (this._x < -550) { this._x = 549; } _root.fog2._x--; if (_root.fog2._x < -550) { _root.fog2._x = 549; } }
Frame 6
_root.aPlates = new Array(); bAllowAttack = true; nFallX = 235; nFallY = 175; _root.BG.gotoAndStop(5); nCamState = 3; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 0; bTimerStop = false; nResetDepth = 4000; _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Frame 7
_root.aPlates = new Array(); bAllowAttack = false; nFallX = 2685; nFallY = 165; _root.BG.gotoAndStop(6); nCamState = 2; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 1; bTimerStop = false; _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Frame 8
_root.aPlates = new Array(); bAllowAttack = true; nFallX = 265; nFallY = 35; _root.BG.gotoAndStop(8); nCamState = 1; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 2; nResetDepth = 4000; bTimerStop = false; _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Frame 9
function setEffect() { _root.effect._visible = !_root.effect._visible; _root.game.effect2._visible = !_root.game.effect2._visible; _root.inter.effect._visible = !_root.inter.effect._visible; } _root.aPlates = new Array(); bAllowAttack = true; nFallX = _root.plane._x; nFallY = _root.plane._y - 100; _root.BG.gotoAndStop(7); nCamState = 2; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 1; bTimerStop = false; _root.inter.effect._visible = true; _root.ciItemNE.visible = true;
Instance of Symbol 1626 MovieClip "keypad" in Frame 9
onClipEvent (load) { function nextState() { _root.keypad.nState++; } function makeFail() { _root.keypad.bStart = false; _root.keypad.nResult = 0; } function killPlayer() { if (!_root.bCheat) { _root.nLife--; } if (_root.nLife < 0) { _root.keypad.onEnterFrame = function () { if (_root.d_msg == null) { _root.attachMovie("Death_Message", "d_msg", _root.getNextHighestDepth()); _root.d_msg._x = Stage.width / 2; _root.d_msg._y = Stage.height / 2; } if (Key.isDown(32)) { _root.d_msg.removeMovieClip(); _root.d_msg.unloadMovie(); removeMovieClip(_root.d_msg); _root.gotoAndStop(2); } }; } else { _root.bAllowAttack = false; _root.endLevel(); } } function startOwn(keys) { _root.keypad.nCurKey = 0; _root.keypad.nKeyDone = 0; _root.keypad.nTOut = 0; _root.keypad.aKeys = keys; _root.keypad.bStart = true; _root.keypad._visible = true; } function startAuto(k) { _root.keypad.nCurKey = 0; _root.keypad.nKeyDone = 0; _root.keypad.nTOut = 0; _root.keypad.aKeys = new Array(); var _local2 = 0; while (_local2 < k) { _root.keypad.aKeys.push(2 + Math.floor(Math.random() * 14)); _local2++; } _root.keypad.bStart = true; _root.keypad._visible = true; } function checkKey() { if (((((((Key.isDown(68) || (Key.isDown(87))) || (Key.isDown(65))) || (Key.isDown(83))) || (Key.isDown(39))) || (Key.isDown(37))) || (Key.isDown(38))) || (Key.isDown(40))) { switch (_root.keypad.aKeys[_root.keypad.nKeyDone]) { case 2 : if (!Key.isDown(39)) { _root.keypad.makeFail(); return(undefined); } break; case 3 : if (!Key.isDown(38)) { _root.keypad.makeFail(); return(undefined); } break; case 4 : if (!Key.isDown(37)) { _root.keypad.makeFail(); return(undefined); } break; case 5 : if (!Key.isDown(40)) { _root.keypad.makeFail(); return(undefined); } break; case 6 : if (!Key.isDown(68)) { _root.keypad.makeFail(); return(undefined); } break; case 7 : if (!Key.isDown(87)) { _root.keypad.makeFail(); return(undefined); } break; case 8 : if (!Key.isDown(65)) { _root.keypad.makeFail(); return(undefined); } break; case 9 : if (!Key.isDown(83)) { _root.keypad.makeFail(); return(undefined); } break; case 10 : if ((!Key.isDown(68)) && (!Key.isDown(39))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(68) && (Key.isDown(39))) { break; } if (Key.isDown(68) || (Key.isDown(39))) { return(undefined); } break; case 11 : if ((!Key.isDown(87)) && (!Key.isDown(38))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(87) && (Key.isDown(38))) { } else { if (Key.isDown(87) || (Key.isDown(38))) { return(undefined); } break; if ((!Key.isDown(65)) && (!Key.isDown(37))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(65) && (Key.isDown(37))) { } else { if (Key.isDown(65) || (Key.isDown(37))) { return(undefined); } break; if ((!Key.isDown(83)) && (!Key.isDown(40))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(83) && (Key.isDown(40))) { } else { if (Key.isDown(83) || (Key.isDown(40))) { return(undefined); } break; if ((!Key.isDown(65)) && (!Key.isDown(39))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(65) && (Key.isDown(39))) { } else { if (Key.isDown(65) || (Key.isDown(39))) { return(undefined); } break; if ((!Key.isDown(68)) && (!Key.isDown(37))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(68) && (Key.isDown(37))) { } else { if (Key.isDown(68) || (Key.isDown(37))) { return(undefined); } break; return(undefined); } } } } } case 12 : if ((!Key.isDown(65)) && (!Key.isDown(37))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(65) && (Key.isDown(37))) { } else { if (Key.isDown(65) || (Key.isDown(37))) { return(undefined); } break; if ((!Key.isDown(83)) && (!Key.isDown(40))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(83) && (Key.isDown(40))) { } else { if (Key.isDown(83) || (Key.isDown(40))) { return(undefined); } break; if ((!Key.isDown(65)) && (!Key.isDown(39))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(65) && (Key.isDown(39))) { } else { if (Key.isDown(65) || (Key.isDown(39))) { return(undefined); } break; if ((!Key.isDown(68)) && (!Key.isDown(37))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(68) && (Key.isDown(37))) { } else { if (Key.isDown(68) || (Key.isDown(37))) { return(undefined); } break; return(undefined); } } } } case 13 : if ((!Key.isDown(83)) && (!Key.isDown(40))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(83) && (Key.isDown(40))) { } else { if (Key.isDown(83) || (Key.isDown(40))) { return(undefined); } break; if ((!Key.isDown(65)) && (!Key.isDown(39))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(65) && (Key.isDown(39))) { } else { if (Key.isDown(65) || (Key.isDown(39))) { return(undefined); } break; if ((!Key.isDown(68)) && (!Key.isDown(37))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(68) && (Key.isDown(37))) { } else { if (Key.isDown(68) || (Key.isDown(37))) { return(undefined); } break; return(undefined); } } } case 14 : if ((!Key.isDown(65)) && (!Key.isDown(39))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(65) && (Key.isDown(39))) { } else { if (Key.isDown(65) || (Key.isDown(39))) { return(undefined); } break; if ((!Key.isDown(68)) && (!Key.isDown(37))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(68) && (Key.isDown(37))) { } else { if (Key.isDown(68) || (Key.isDown(37))) { return(undefined); } break; return(undefined); } } case 15 : if ((!Key.isDown(68)) && (!Key.isDown(37))) { _root.keypad.makeFail(); return(undefined); } if (Key.isDown(68) && (Key.isDown(37))) { } else { if (Key.isDown(68) || (Key.isDown(37))) { return(undefined); } break; return(undefined); } default : return(undefined); } snd2.start(); _root.keypad.nKeyDone++; if (_root.keypad.nKeyDone > (_root.keypad.aKeys.length - 1)) { _root.keypad.bStart = false; _root.keypad.nResult = 1; } } } this._alpha = 0; this._visible = false; this.gotoAndStop(1); var snd = new Sound(this); snd.attachSound("power-shot"); var snd2 = new Sound(this); snd2.attachSound("beep"); snd2.setVolume(60); var nState = 0; var bStart = false; var bPressed = false; var nResult = -1; var aKeys; var nCurKey = 0; var nKeyDone = 0; var nTOut = 0; var nTMax = 30; this.onEnterFrame = function () { if (this.bStart) { if (this._alpha < 100) { this._alpha = this._alpha + 10; } else { this.gotoAndStop(this.aKeys[this.nCurKey]); this.nTOut++; if (this.nTOut > this.nTMax) { this._alpha = 60; this.gotoAndStop(1); this.nTOut = 0; this.nCurKey++; if (this.nCurKey > (this.aKeys.length - 1)) { this.nCurKey = 0; this.bStart = false; } } } } else if (this._visible) { if (this._alpha > 0) { this._alpha = this._alpha - 10; } else { if (this.nResult == -1) { this.nResult = 0; } if (this.nResult == 0) { this.snd.setPan(0); this.snd.setVolume(100); this.snd.start(); _root.fireFail.render(); } else if (this.nResult == 1) { this.snd.setPan(100); this.snd.setVolume(70); this.snd.start(); _root.firePass.render(); } this._visible = false; this.gotoAndStop(1); } } }; var oListen = new Object(); oListen.onKeyDown = function () { _root.keypad.checkKey(); }; Key.addListener(oListen); } onClipEvent (enterFrame) { _root.tfLife.text = _root.nLife; switch (this.nState) { case 0 : _root.showMessage("Okay, its almost time for a final showdown! But first, we need to land where 4as and Strife are and thay aint making it easy", _root.player._x, _root.player._y - 50, _root.keypad.nextState); this.nState++; break; case 2 : _root.showMessage("Help me control this cloud and avoid fireballs by tapping the right keys", _root.player._x, _root.player._y - 50, _root.keypad.nextState); this.nState++; break; case 4 : _root.showMessage("There's one comming straight at us, right now! Okay, use the ARROW and W/S/A/D keys and just follow my instructions!", _root.player._x, _root.player._y - 50, _root.keypad.nextState); this.nState++; break; case 6 : this.startOwn(new Array(5, 7)); this.nState++; break; case 8 : if (this.nResult == 0) { nState = 9; } else if (this.nResult == 1) { nState = 13; } break; case 9 : _root.showMessage("Lets try again. Remember, just press the right keys in the right order, one mistake and its all over!", _root.player._x, _root.player._y - 50, _root.keypad.nextState); this.nState++; break; case 11 : this.nState = 6; break; case 13 : _root.showMessage("Great! Now lets try something harder! Another one is comming this way!", _root.player._x, _root.player._y - 50, _root.keypad.nextState); this.nState++; break; case 15 : this.startOwn(new Array(2, 6, 5, 7, 15)); this.nState++; break; case 17 : if (this.nResult == 0) { nState = 18; } else if (this.nResult == 1) { nState = 22; } this.nResult = -1; break; case 18 : _root.showMessage("Lets try again. Remember, you dont have to press the keys in the right time but you need to finish the whole sequence before the scene ends", _root.player._x, _root.player._y - 50, _root.keypad.nextState); this.nState++; break; case 20 : this.nState = 15; break; case 22 : _root.showMessage("Thats it! Now you're ready! But be warned, every sequence, from now on, will be random! And the closer we are, the harder it gets!", _root.player._x, _root.player._y - 50, _root.keypad.nextState); this.nTMax = 30; this.nState++; break; case 24 : _root.bAllowAttack = true; this.startAuto(4); this.nState++; break; case 26 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 27; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 27 : this.startAuto(5); this.nState++; break; case 29 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 30; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 30 : this.startAuto(6); this.nState++; break; case 32 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 33; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 33 : this.startAuto(7); this.nState++; break; case 35 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 36; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 36 : this.startAuto(8); this.nState++; break; case 38 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 39; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 39 : _root.showMessage("Nows the chance! I can land here, but I see a 1-up heart further ahead! Press RIGHT/UP if you want to go for it, or DOWN/LEFT if you want to land now", _root.player._x, _root.player._y - 50, _root.keypad.nextState); _root.bAllowAttack = false; this.nState++; break; case 40 : if (Key.isDown(40) || (Key.isDown(37))) { this.nState = 58; Key.removeListener(this.oListen); _root.endLevel(); } else if (Key.isDown(38) || (Key.isDown(39))) { this.nState = 42; _root.bRemoveMess = true; } this.nTMax = 20; break; case 41 : this.nState = 39; break; case 42 : _root.bAllowAttack = true; this.startAuto(6); this.nState++; break; case 44 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 45; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 45 : this.startAuto(7); this.nState++; break; case 47 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 48; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 48 : this.startAuto(8); this.nState++; break; case 50 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 51; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 51 : this.startAuto(9); this.nState++; break; case 53 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 54; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 54 : this.startAuto(10); this.nState++; break; case 56 : if (this.nResult == 0) { this.killPlayer(); } else if (this.nResult == 1) { this.nState = 57; } this.nResult = -1; this.nTMax = this.nTMax - 2; break; case 57 : _root.nLife++; _root.nSecrets++; _root.endLevel(); _root.bAllowAttack = false; this.nState++; } }
Instance of Symbol 1631 MovieClip "fireFail" in Frame 9
onClipEvent (load) { function render() { _visible = true; gotoAndPlay (1); } this._visible = false; this.gotoAndStop(1); }
Instance of Symbol 1635 MovieClip "firePass" in Frame 9
onClipEvent (load) { function render() { _visible = true; gotoAndPlay (1); } this.gotoAndStop(1); this._visible = false; }
Frame 10
_root.aPlates = new Array(); bAllowAttack = true; nFallX = 1065; nFallY = 455; _root.BG.gotoAndStop(7); nCamState = 1; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 0; nResetDepth = 4000; bTimerStop = false; _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Instance of Symbol 1831 MovieClip "chat" in Frame 10
onClipEvent (load) { function send4as(nt, tn, tn2) { this.tNr1 = tn; this.tNr2 = tn2; this.bStrife = true; _root.game.boss2.bToAnswer = true; this.tf3.textColor = this.tf2.textColor; this.tf3.text = this.tf2.text; this.tf2.textColor = this.tf1.textColor; this.tf2.text = this.tf1.text; this.tf1.textColor = 65280; this.tf1.text = nt; this.tf1._alpha = 100; this.resend = this.resendTime; } function send4as2(t) { this.tf3.textColor = this.tf2.textColor; this.tf3.text = this.tf2.text; this.tf2.textColor = this.tf1.textColor; this.tf2.text = this.tf1.text; this.tf1.textColor = 65280; this.tf1.text = t; this.tf1._alpha = 100; } function sendStrife(nt, tn, tn2) { this.tNr1 = tn; this.tNr2 = tn2; this.bStrife = false; _root.game.boss1.bToAnswer = true; this.tf3.textColor = this.tf2.textColor; this.tf3.text = this.tf2.text; this.tf2.textColor = this.tf1.textColor; this.tf2.text = this.tf1.text; this.tf1.textColor = 13369344 /* 0xCC0000 */; this.tf1.text = nt; this.tf1._alpha = 100; this.resend = this.resendTime; } function sendStrife2(t) { this.tf3.textColor = this.tf2.textColor; this.tf3.text = this.tf2.text; this.tf2.textColor = this.tf1.textColor; this.tf2.text = this.tf1.text; this.tf1.textColor = 13369344 /* 0xCC0000 */; this.tf1.text = t; this.tf1._alpha = 100; } this.tf1.setTextFormat(_root.fFormat); this.tf1.setNewTextFormat(_root.fFormat); this.tf1.embedFonts = true; this.tf2.setTextFormat(_root.fFormat); this.tf2.setNewTextFormat(_root.fFormat); this.tf2.embedFonts = true; this.tf3.setTextFormat(_root.fFormat); this.tf3.setNewTextFormat(_root.fFormat); this.tf3.embedFonts = true; var resend = -1; var resendTime = 90; var bStrife = false; var tNr1 = 0; var tNr2 = 0; this.onEnterFrame = function () { if (this.resend == 0) { this.resend--; if (this.bStrife) { _root.game.boss2.answer(this.tNr1, this.tNr2); } else { _root.game.boss1.answer(this.tNr1, this.tNr2); } } else { this.resend--; } }; }
Frame 11
_root.aPlates = new Array(); bAllowAttack = false; nFallX = 265; nFallY = 815; _root.BG.gotoAndStop(9); nCamState = 1; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 0; nResetDepth = 1900; bTimerStop = false; _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Instance of Symbol 1848 MovieClip "game" in Frame 11
onClipEvent (load) { var lw = _root.game._width; var lh = _root.game._height; this.onEnterFrame = function () { if (_root._currentframe == (_root.nGameMenuFrame + 9)) { _root.game._x = 240 - _root.player._x; _root.game._y = 230 - _root.player._y; _root.nCamState = 1; if (_root.game._x > 0) { _root.game._x = 0; _root.nCamState = 3; } else if ((_root.game._x + _root.game.lw) < Stage.width) { _root.game._x = (-_root.game.lw) + Stage.width; _root.nCamState = 3; } if (_root.game._y > 0) { _root.game._y = 0; _root.nCamState = ((_root.nCamState == 1) ? 2 : 0); } else if ((_root.game._y + _root.game.lh) < Stage.height) { _root.game._y = (-_root.game.lh) + Stage.height; _root.nCamState = ((_root.nCamState == 1) ? 2 : 0); } } else { delete this.onEnterFrame; } }; }
Frame 12
_root.aPlates = new Array(); bAllowAttack = false; nFallX = -525; nFallY = 1055; _root.BG.gotoAndStop(9); nCamState = 1; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 0; nResetDepth = 5000; bTimerStop = false; _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Frame 13
_root.aPlates = new Array(); bAllowAttack = true; nFallX = 215; nFallY = 270; _root.BG.gotoAndStop(10); nCamState = 1; nTimed = getTimer(); nSecrets = 0; nMaxSecrets = 0; nResetDepth = 800; bTimerStop = false; _root.ciItemNE.visible = false; _root.inter.effect._visible = false;
Instance of Symbol 2119 MovieClip "game" in Frame 13
onClipEvent (load) { var lh = 585; this.onEnterFrame = function () { if (_root._currentframe == (_root.nGameMenuFrame + 11)) { _root.game._x = 240 - _root.player._x; _root.game._y = 230 - _root.player._y; _root.nCamState = 1; if ((_root.game._y + _root.game.lh) < Stage.height) { _root.game._y = (-_root.game.lh) + Stage.height; _root.nCamState = 2; } } else { delete this.onEnterFrame; } }; }
Frame 14
_root.BG.gotoAndStop(9); this.tfCredits.setTextFormat(_root.fFormat); this.tfCredits.setNewTextFormat(_root.fFormat); this.tfCredits.embedFonts = true; this.onEnterFrame = function () { this.tfCredits._y--; if ((this.tfCredits._y + this.tfCredits._height) < 0) { delete this.onEnterFrame; if ((!_root.bCheated) && (_root.nTotalTime > 0)) { _root.nextFrame(); } else { _root.gotoAndStop(_root.nGameMenuFrame); } } }; this.tfSecret.setTextFormat(_root.fFormat); this.tfSecret.setNewTextFormat(_root.fFormat); this.tfSecret.embedFonts = true; this.tfSecret.text = ""; if (!_root.bCheated) { switch (_root.nLevelsDone) { case 8 : this.tfSecret.text = "\"Secret Level 1\" unlocked! \"Debug key\" unlocked!"; break; case 9 : this.tfSecret.text = "\"Secret Level 2\" unlocked! \"God-mode key\" unlocked!"; break; case 10 : this.tfSecret.text = "\"Secret Level 3\" unlocked! \"Skip level key\" unlocked!"; } } else { this.tfSecret.text = ""; }
Frame 15
var sec = 0; var min = 0; var t = 0; sec = _root.nTotalTime / 1000; min = Math.floor(Math.floor(sec) / 60); t = sec - (min * 60); if (t < 10) { _root.tfTime.text = (("" + min) + ":0") + t; } else { _root.tfTime.text = (("" + min) + ":") + t; } _root.submit.gotoAndStop(1); _root.submit.tfName.text = _root.sUserName;
Frame 16
_root.gotoAndStop(_root.nGameMenuFrame);
Symbol 7 MovieClip [blood] Frame 6
this.removeMovieClip(); this.unloadMovie(); removeMovieClip(this);
Symbol 12 MovieClip Frame 1
this._visible = false;
Instance of Symbol 25 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.1; if (this._x > Stage.width) { this._x = -this._width; } }
Instance of Symbol 25 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (enterFrame) { this._x = this._x + 0.2; if (this._x > Stage.width) { this._x = -this._width; } }
Instance of Symbol 36 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (load) { this.onPress = function () { if (!_root.bInLoad) { _root.fadeBG.bFade = true; _root.pChar.nRightX = _root.pChar.nRightX + 600; _root.pChar.nDir = 12; _root.pChar._xscale = 100; } }; }
Instance of Symbol 38 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (load) { this.onPress = function () { if (!_root.bInLoad) { _root.loadscreen.doSwitch(); _root.loadscreen._visible = true; _root.loadscreen._x = -50; _root.loadscreen._y = -50; _root.bInLoad = true; } }; }
Instance of Symbol 41 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (load) { this.onPress = function () { if (!_root.bInLoad) { getURL ("http://tkfbthegame.glt.pl/hiscore/hiscore.php", "_blank"); } }; }
Instance of Symbol 43 MovieClip in Symbol 45 MovieClip Frame 1
onClipEvent (load) { this.onPress = function () { if (!_root.bInLoad) { _root.infoscreen._visible = true; _root.infoscreen._x = -50; _root.infoscreen._y = -50; _root.bInLoad = true; } }; }
Symbol 65 Button
on (press) { if ((_root.stats.submit.tfName.text != "") && (_root.stats.submit.tfName.text != undefined)) { _root.sUserName = _root.stats.submit.tfName.text; _root.submitLapTime(_root.curTime); } }
Symbol 67 Button
on (press) { _root.stats.gotoAndStop(3); }
Symbol 72 Button
on (press) { _root.stats.nRecord = _root.curTime; _root.stats.gotoAndStop(3); }
Symbol 74 Button
on (press) { _root.stats.gotoAndStop(3); }
Symbol 76 Button
on (press) { _root.submitLapTime(_root.curTime); }
Symbol 86 MovieClip [Stats] Frame 1
function getStats() { _root.stats = this; nRecord = 0; var _local4 = new LoadVars(); _local4.onLoad = function (success) { if (success) { _root.stats.nRecord = this.time; _root.stats.gotoAndStop(2); } else { _root.stats.nRecord = -1; _root.stats.gotoAndStop(3); } }; var _local3 = new LoadVars(); _local3.type = "get"; _local3.level = (_root._currentframe - _root.nGameStartFrame) + 1; _local3.sendAndLoad(_root.sScoreURL, _local4, "POST"); } if (this.nRecord == undefined) { var nRecord = 0; }
Symbol 86 MovieClip [Stats] Frame 2
this.submit.gotoAndStop(1); if (((_root.stats.nRecord == 0) || (_root.curTime < _root.stats.nRecord)) && (!_root.bCheated)) { this.submit.tfName.text = _root.sUserName; } else { _root.stats.gotoAndStop(3); }
Symbol 86 MovieClip [Stats] Frame 3
var form = new TextFormat(); form.color = 16777215 /* 0xFFFFFF */; form.align = "left"; form.size = 9; this.texted1.setNewTextFormat(form); var sec = (Math.floor(_root.curTime) / 1000); var min = Math.floor(sec / 60); var t = (sec - (min * 60)); if (t < 10) { this.texted1.text = (("Your time: " + min) + ":0") + t; } else { this.texted1.text = (("Your time: " + min) + ":") + t; } this.texted2.setNewTextFormat(form); if (this.nRecord == -1) { this.texted2.text = "Best time: Failed to connect"; } else if (this.nRecord == 0) { this.texted2.text = "Best time: None submitted yet"; } else { sec = Math.floor(_root.stats.nRecord) / 1000; min = Math.floor(sec / 60); t = sec - (min * 60); if (t < 10) { this.texted2.text = (("Best time: " + min) + ":0") + t; } else { this.texted2.text = (("Best time: " + min) + ":") + t; } } this.texted3.setNewTextFormat(form); this.texted3.text = (("Secrets: " + _root.nSecrets) + "/") + _root.nMaxSecrets; this.conbut.onPress = _root.nextLevel;
Symbol 179 MovieClip [LapRecord] Frame 5
stop();
Symbol 190 MovieClip [bf2_laser] Frame 1
var tx = 0; var ty = 0;
Symbol 190 MovieClip [bf2_laser] Frame 20
stop();
Symbol 194 Button
on (press) { if (!_root.bInLoad) { getURL ("http://tkfbthegame.glt.pl", "tkfb-main"); } }
Symbol 241 Button
on (press) { _root.loadGame(1); }
Symbol 244 Button
on (press) { _root.loadGame(2); }
Symbol 247 Button
on (press) { _root.loadGame(3); }
Symbol 250 Button
on (press) { _root.loadGame(4); }
Symbol 253 Button
on (press) { _root.loadGame(5); }
Symbol 256 Button
on (press) { _root.loadGame(6); }
Symbol 259 Button
on (press) { _root.loadGame(7); }
Symbol 261 Button
on (press) { _root.bInLoad = false; _root.loadscreen._visible = false; _root.loadscreen._x = -1000; }
Symbol 264 Button
on (press) { _root.loadGame(8); }
Symbol 267 Button
on (press) { _root.loadGame(10); }
Symbol 270 Button
on (press) { _root.loadGame(9); }
Symbol 273 Button
on (press) { _root.loadGame(11); }
Symbol 276 Button
on (press) { _root.bInLoad = false; _root.infoscreen._visible = false; _root.infoscreen._x = -1000; }
Symbol 278 Button
on (press) { this.nextFrame(); this.bBack._visible = true; if (this._currentframe >= this._totalframes) { this.bNext._visible = false; } }
Symbol 280 Button
on (press) { this.prevFrame(); this.bNext._visible = true; if (this._currentframe <= 1) { this.bBack._visible = false; } }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 1
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "Z"; }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 1
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "<"; }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 1
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "^"; }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 1
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = ">"; }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 2
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "M"; }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 2
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "H"; }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 2
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "E"; }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 2
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "B"; }
Instance of Symbol 284 MovieClip in Symbol 313 MovieClip Frame 2
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "N"; }
Instance of Symbol 293 MovieClip in Symbol 313 MovieClip Frame 2
onClipEvent (load) { this.tfKey.setTextFormat(_parent.fFormat); this.tfKey.setNewTextFormat(_parent.fFormat); this.tfKey.embedFonts = true; this.tfKey.text = "N"; }
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 1
onClipEvent (load) { var t = Math.floor(41 * Math.random()); if (this.t > 20) { this._alpha = (this.t - 20) * 5; } else { this._alpha = this.t * 20; } this._x = 180 * Math.random(); this._y = 20 * Math.random(); } onClipEvent (enterFrame) { if (this.t <= 0) { this._x = 180 * Math.random(); this._y = 20 * Math.random(); this.t = 40; this._alpha = 0; } else if (this.t > 20) { this._alpha = this._alpha + 5; } else { this._alpha = this._alpha - 5; } this.t--; }
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 1
onClipEvent (load) { var t = Math.floor(41 * Math.random()); if (this.t > 20) { this._alpha = (this.t - 20) * 5; } else { this._alpha = this.t * 20; } this._x = 180 * Math.random(); this._y = 20 * Math.random(); } onClipEvent (enterFrame) { if (this.t <= 0) { this._x = 180 * Math.random(); this._y = 20 * Math.random(); this.t = 40; this._alpha = 0; } else if (this.t > 20) { this._alpha = this._alpha + 5; } else { this._alpha = this._alpha - 5; } this.t--; }
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 1
onClipEvent (load) { var t = Math.floor(41 * Math.random()); if (this.t > 20) { this._alpha = (this.t - 20) * 5; } else { this._alpha = this.t * 20; } this._x = 180 * Math.random(); this._y = 20 * Math.random(); } onClipEvent (enterFrame) { if (this.t <= 0) { this._x = 180 * Math.random(); this._y = 20 * Math.random(); this.t = 40; this._alpha = 0; } else if (this.t > 20) { this._alpha = this._alpha + 5; } else { this._alpha = this._alpha - 5; } this.t--; }
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 1
onClipEvent (load) { var t = Math.floor(41 * Math.random()); if (this.t > 20) { this._alpha = (this.t - 20) * 5; } else { this._alpha = this.t * 20; } this._x = 180 * Math.random(); this._y = 20 * Math.random(); } onClipEvent (enterFrame) { if (this.t <= 0) { this._x = 180 * Math.random(); this._y = 20 * Math.random(); this.t = 40; this._alpha = 0; } else if (this.t > 20) { this._alpha = this._alpha + 5; } else { this._alpha = this._alpha - 5; } this.t--; }
Instance of Symbol 331 MovieClip in Symbol 332 MovieClip Frame 1
onClipEvent (load) { var t = Math.floor(41 * Math.random()); if (this.t > 20) { this._alpha = (this.t - 20) * 5; } else { this._alpha = this.t * 20; } this._x = 180 * Math.random(); this._y = 20 * Math.random(); } onClipEvent (enterFrame) { if (this.t <= 0) { this._x = 180 * Math.random(); this._y = 20 * Math.random(); this.t = 40; this._alpha = 0; } else if (this.t > 20) { this._alpha = this._alpha + 5; } else { this._alpha = this._alpha - 5; } this.t--; }
Symbol 366 MovieClip Frame 9
this.stop();
Symbol 367 MovieClip Frame 1
var X1 = -20; var X2 = 20; var Y1 = -44; var Y2 = 0;
Symbol 367 MovieClip Frame 3
this.nAnim = 2;
Symbol 395 MovieClip Frame 1
var tf = new TextFormat(); tf.font = "EFont"; this.sign.embedFonts = true; this.sign.setTextFormat(tf); this.sign.setNewTextFormat(tf);
Symbol 423 MovieClip Frame 9
this._parent.gotoAndStop(1);
Symbol 436 MovieClip Frame 13
this._parent.gotoAndStop(4);
Symbol 467 MovieClip Frame 15
stop();
Symbol 468 MovieClip Frame 1
if (X1 == undefined) { var X1 = -19; var X2 = 19; var Y1 = -37; var Y2 = 0; var nVecX = 0; var nVecY = 0; var nInvi = 0; var bRun = true; var mcChild = null; var mcWall = null; var mcWallNot = null; var oTmp; var sIter; var nAnimFrame; var bTouch = false; var bMove = true; _root.player = _root.game.player; if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; if (this.nInvi <= 30) { this.gotoAndStop(this.nAnimFrame); } } this.nVecX = 0; if (this.bTouch) { this.nAnimFrame = 1; if (this.bRun && (this.bMove)) { if (Key.isDown(_root.nKeyR)) { this.nVecX = _root.nSpeed; this._xscale = 100; if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 7; } else { this.nAnimFrame = 2; } } else if (Key.isDown(_root.nKeyL)) { this.nVecX = -_root.nSpeed; this._xscale = -100; if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 7; } else { this.nAnimFrame = 2; } } else if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 5; } _root.bNearItem = false; if (Key.isDown(_root.nKeyU)) { this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this.nAnimFrame = 3; } } } else { this.nAnimFrame = 4; if (this.bRun && (this.bMove)) { if (Key.isDown(_root.nKeyU)) { if ((this.mcWall != this.mcWallNot) && (this.hitTest(this.mcWall))) { if (Key.isDown(_root.nKeyR) && (this.mcWall._x < this._x)) { this.mcWallNot = this.mcWall; this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this._xscale = 100; } else if (Key.isDown(_root.nKeyL) && (this.mcWall._x > this._x)) { this.mcWallNot = this.mcWall; this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this._xscale = -100; } } } if (Key.isDown(_root.nKeyR)) { this.nVecX = _root.nSpeed; this._xscale = 100; } if (Key.isDown(_root.nKeyL)) { this.nVecX = -_root.nSpeed; this._xscale = -100; } if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 6; } _root.bNearItem = false; } } if ((this._currentframe < 5) || (this._currentframe == 7)) { this.gotoAndStop(this.nAnimFrame); } this.bTouch = false; this.nVecY = this.nVecY + _root.nGrav; for (sIter in _root.aPlates) { this.TestHit(_root.aPlates[sIter]); } if (this.nVecX < 0) { if (((this._x + this.X1) + _root.game._x) > 0) { this._x = this._x + this.nVecX; } } else if (((this._x + this.X2) + _root.game._x) < 550) { this._x = this._x + this.nVecX; } this._y = this._y + this.nVecY; if ((this._y - _root.game._y) > _root.nResetDepth) { this._y = _root.nFallY; this._x = _root.nFallX; } if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); if (_root.bDebugBox) { _root.game.mcPlayerVec._x = this._x + this.nVecX; _root.game.mcPlayerVec._y = this._y + this.nVecY; } }; var TestHit = function (mc) { if (!mc._visible) { return(undefined); } this.oTmp = mc.box.getBounds(_root.game); if (this.thisTestHit(this._x, (this._y + this.Y1) + this.nVecY)) { if (this.nVecY < 1) { this.nVecY = 1; } } if (this.thisTestHit(this._x + this.nVecX, this._y + (this.Y1 / 2)) || (this.thisTestHit(this._x + this.nVecX, this._y - 10))) { this.mcWall = mc; if (this._x >= this.oTmp.xMax) { this._x = this.oTmp.xMax + 1; } else if (this._x <= this.oTmp.xMin) { this._x = this.oTmp.xMin - 1; } else if (Math.abs(this._x - this.oTmp.xMin) < Math.abs(this._x - this.oTmp.xMax)) { this._x = this.oTmp.xMin - 1; } else { this._x = this.oTmp.xMax + 1; } this.nVecX = 0; } else if (this.thisTestHit(this._x, this._y + this.nVecY)) { this.nVecY = 0; this.mcChild = mc; this.mcWallNot = null; this.mcWall = null; this.bTouch = true; this._y = this.oTmp.yMin; } }; var thisTestHit = function (nPointX, nPointY) { if ((this.oTmp.xMin <= nPointX) && (this.oTmp.xMax >= nPointX)) { if ((this.oTmp.yMin <= nPointY) && ((this.oTmp.yMax + this.nVecY) >= nPointY)) { return(true); } } return(false); }; var hit = function () { if (this.bRun) { if (this.nInvi <= 0) { this.nInvi = 60; if (!_root.bCheat) { _root.nLife--; } if (_root.nLife < 0) { this.nAnimFrame = 10; this.gotoAndStop(this.nAnimFrame); this.onEnterFrame = function () { if (_root.d_msg == null) { _root.bTimerStop = true; _root.attachMovie("Death_Message", "d_msg", _root.getNextHighestDepth()); _root.d_msg._x = Stage.width / 2; _root.d_msg._y = Stage.height / 2; } this.bTouch = false; this.nVecY = this.nVecY + _root.nGrav; if ((this._y - _root.game._y) > _root.nResetDepth) { this._y = _root.nFallY; this._x = _root.nFallX; } for (sIter in _root.aPlates) { var _local3 = _root.aPlates[sIter].box.getBounds(_root.game); if ((((this._y + this.Y2) + this.nVecY) >= _local3.yMin) && ((this._y + this.Y2) <= (_local3.yMax + this.nVecY))) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this.nVecY = 0; this._y = _local3.yMin; } } } if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); }; this.mcChild = null; } else if (this.bTouch) { this.nAnimFrame = 8; this.gotoAndStop(this.nAnimFrame); } else { this.nAnimFrame = 9; this.gotoAndStop(this.nAnimFrame); } } } }; }
Symbol 477 MovieClip Frame 1
var X1 = -11; var X2 = 11; var Y1 = -38; var Y2 = 0;
Symbol 486 MovieClip Frame 1
var X1 = -11; var X2 = 11; var Y1 = -38; var Y2 = 0;
Symbol 495 MovieClip Frame 1
var X1 = -11; var X2 = 11; var Y1 = -38; var Y2 = 0;
Symbol 504 MovieClip Frame 1
var X1 = -11; var X2 = 11; var Y1 = -38; var Y2 = 0;
Symbol 522 MovieClip Frame 11
_parent.sendShot();
Symbol 522 MovieClip Frame 20
_parent.nAnim = 2; _parent.nShot = (50 * Math.random()) + 10; _parent.gotoAndStop(2);
Symbol 538 MovieClip Frame 13
this.stop(); _root.endLevel();
Symbol 539 MovieClip Frame 1
var X1 = -20; var X2 = 20; var Y1 = -44; var Y2 = 0;
Symbol 539 MovieClip Frame 4
this.nAnim = 2;
Instance of Symbol 328 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 341 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = (this._x + 200); var sw = (this._width / 2); var bs = false; var snd = new Sound(this); snd.attachSound("water2"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if (this._visible) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { snd.stop(); bs = false; } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 50); } } }
Instance of Symbol 343 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var snd = new Sound(this); snd.attachSound("birds"); var of = random(150); } onClipEvent (enterFrame) { if (this._visible) { of--; if (of <= 0) { snd.setVolume(30 + random(30)); snd.setPan(random(201) - 100); snd.start(); of = random(150) + 60; } } }
Instance of Symbol 367 MovieClip "boss2" in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var bRun = false; var nLeftX = (this._x - 360); var nRightX = (this._x + 90); var bGround = false; var nVecY = 0; var nDir = -3; var nLife = 2; var nAnim = 2; var nInvi = 0; this.gotoAndStop(1); _root.attachHPBar(this); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; } if (!this.bGround) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { this.gotoAndStop(this.nAnim); this._x = this._x + this.nDir; if ((this._x < this.nLeftX) || (this._x > this.nRightX)) { this.nDir = this.nDir * -1; this._xscale = this._xscale * -1; } if (this.nInvi <= 0) { if (this.hitTest(_root.player)) { if (((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) && (_root.player._y > (this._y + this.Y1))) { this.hit(); } } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.bGround = true; return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnim = 4; this.gotoAndStop(4); this.bRun = false; } else { this.nInvi = 60; this.nAnim = 3; this.gotoAndStop(3); } } }; }
Instance of Symbol 371 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 373 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = (this._x + (this._width / 2)); var sw = (this._width / 2); var bs = false; var snd = new Sound(this); var span = 0; var sp = 1; snd.attachSound("snowwind"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } span = span + sp; if ((span == 100) || (span == -100)) { sp = sp * -1; } snd.setPan(span); snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 100); } }
Instance of Symbol 375 MovieClip "chata" in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var bBoss = false; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var fText1 = function () { _root.showMessage("Hola, hola!", _root.game.boss._x, (_root.game.boss._y - (_root.game.boss._height / 2)) - 10, _root.game.chata.fText2); }; var fText2 = function () { _root.showMessage("Wanna play?", _root.player._x, _root.player._y - (_root.player._height / 2), _root.game.chata.fText3); }; var fText3 = function () { _root.showMessage("You're looking for trouble? Sux me. You don't understand me and my problems.", _root.game.boss2._x, (_root.game.boss2._y - (_root.game.boss2._height / 2)) - 20, _root.game.chata.fText4); }; var fText4 = function () { _root.showMessage("Sorry. Guys, what are you doing here with those sweaty black men? You don't belong here.", _root.player._x, _root.player._y - (_root.player._height / 2), _root.game.chata.fText5); }; var fText5 = function () { _root.showMessage("My inner me is black. I listen to Rap. I'm like Eminem, but more hardcore. Thats why you'll die!", _root.game.boss._x, (_root.game.boss._y - (_root.game.boss._height / 2)) - 10, _root.game.chata.fText6); }; var fText6 = function () { _root.showMessage("I'll live, my bad", _root.player._x, _root.player._y - (_root.player._height / 2), _root.game.chata.fText7); }; var fText7 = function () { _root.showMessage("*Gulp*", _root.game.boss._x, (_root.game.boss._y - (_root.game.boss._height / 2)) - 10); _root.showMessage("*Gulp*", _root.game.boss2._x, (_root.game.boss2._y - (_root.game.boss2._height / 2)) - 20, _root.game.chata.fEnd); }; var fEnd = function () { _root.player.bRun = true; _root.game.boss.bRun = true; _root.game.boss2.bRun = true; }; } onClipEvent (enterFrame) { if (!this.bBoss) { if (((this._x + 150) + _root.game._x) < 550) { _root.nCamState = 0; this.bBoss = true; _root.player.bRun = false; this.fText1(); } } }
Instance of Symbol 377 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var sw = (this._width / 2); var bs = false; var snd = new Sound(this); snd.attachSound("birds-stream"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (_x - sw)) || (_root.player._x >= (_x + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - _x) / sw)) * 100); } }
Instance of Symbol 379 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 381 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 381 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 381 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 391 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = ((this._x + this._width) - 100); var sw = (this._width / 2); var bs = false; var snd = new Sound(this); snd.attachSound("torch"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 100); } }
Instance of Symbol 395 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (enterFrame) { this.sign.text = "SZEJDI AND PASZTET >"; }
Instance of Symbol 397 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 477 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 150); var nRightX = (this._x + 150); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 486 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 495 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 504 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 486 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 477 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 486 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 495 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 504 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 539 MovieClip "boss" in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var bRun = false; var nLeftX = (this._x - 400); var nRightX = (this._x + 50); var bGround = false; var nVecY = 0; var nDir = -4; var nLife = 5; var nAnim = 2; var nShot = 30; var nInvi = 0; this.gotoAndStop(1); _root.attachHPBar(this); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; } if (!this.bGround) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { this.nShot--; if (this.nShot <= 0) { this.nAnim = 3; } this.gotoAndStop(this.nAnim); if (this.nAnim != 3) { this._x = this._x + this.nDir; } if (this._x < this.nLeftX) { this.nDir = 4; this._xscale = -100; } else if (this._x > this.nRightX) { this.nDir = -4; this._xscale = 100; } if (this.nInvi <= 0) { if (this.hitTest(_root.player)) { if (((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) && (_root.player._y > (this._y + this.Y1))) { this.hit(); } if (this.testHit2(_root.player)) { _root.player.hit(); } } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.bGround = true; return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && (mc._y <= ((this._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnim = 5; this.gotoAndStop(5); this.bRun = false; _root.player.bRun = false; } else { this.nInvi = 60; this.nAnim = 4; this.gotoAndStop(4); } } }; var sendShot = function () { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("boss1Disk", "boss1Disk" + _local4, _local4); _local3._x = this._x + (this.nDir * 4); _local3._y = this._y - (this._height / 2); _local3.a = Math.atan2((_root.player._y - 20) - _local3._y, _root.player._x - _local3._x); _local3.tout = 120; _local3.onEnterFrame = function () { this.tout--; if (this.tout <= 0) { _root.removeMovie(this); } this._x = this._x + (Math.cos(this.a) * 5); this._y = this._y + (Math.sin(this.a) * 5); if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; }; }
Instance of Symbol 486 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 182 MovieClip [Heart] in Symbol 569 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.nSecrets++; _root.nLife++; _root.removeMovie(this); } }
Instance of Symbol 552 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 554 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 565 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { var nRange = 30; var nMax = 0.5; var nMin = 0.1; var nCX = this._x; var nCY = this._y; var nMoveX = 1; var nMoveY = 1; var nSpeed = 0; var nNextStep = 200; var CalcSpeed = function () { nSpeed = (Math.random() * nMax) + nMin; }; CalcSpeed(); } onClipEvent (enterFrame) { this._xscale = -100 * (nMoveX / Math.abs(nMoveX)); nNextStep--; if (nNextStep <= 0) { nNextStep = 100 + Math.floor(100 * Math.random()); nMoveX = (2 * Math.random()) - 1; nMoveY = (2 * Math.random()) - 1; CalcSpeed(); if (nMoveX == 0) { nMoveX = 0.1; } } if (this._x >= (nCX + nRange)) { nMoveX = -1; CalcSpeed(); } else if (this._x <= (nCX - nRange)) { nMoveX = 1; CalcSpeed(); } else if (this._y >= (nCY + nRange)) { nMoveY = -1; CalcSpeed(); } else if (this._y <= (nCY - nRange)) { nMoveY = 1; CalcSpeed(); } this._x = this._x + (nSpeed * nMoveX); this._y = this._y + (nSpeed * nMoveY); }
Instance of Symbol 568 MovieClip in Symbol 569 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 573 MovieClip in Symbol 593 MovieClip Frame 1
onClipEvent (enterFrame) { if (!(_root.bAllowAttack || (_root.bNearItem))) { (this.gotoAndStop(1));// not popped } else { (this.gotoAndStop(2));// not popped } }
Instance of Symbol 576 MovieClip "stimer" in Symbol 593 MovieClip Frame 1
onClipEvent (load) { function updateTime(nt) { this.sec = nt / 1000; this.min = Math.floor(Math.floor(this.sec) / 60); this.t = this.sec - (this.min * 60); if (this.t < 10) { this.tfTime.text = (("" + this.min) + ":0") + this.t; } else { this.tfTime.text = (("" + this.min) + ":") + this.t; } } var sec = 0; var min = 0; var t = 0; } onClipEvent (enterFrame) { if (this._parent._visible) { if (!_root.bCheated) { if (!_root.bTimerStop) { this.sec = (getTimer() - _root.nTimed) / 1000; this.min = Math.floor(Math.floor(this.sec) / 60); this.t = this.sec - (this.min * 60); if (this.t < 10) { this.tfTime.text = (("" + this.min) + ":0") + this.t; } else { this.tfTime.text = (("" + this.min) + ":") + this.t; } } } else { this._visible = false; } } }
Instance of Symbol 576 MovieClip "timer" in Symbol 593 MovieClip Frame 1
onClipEvent (load) { function updateTime(nt) { this.sec = nt / 1000; this.min = Math.floor(Math.floor(this.sec) / 60); this.t = this.sec - (this.min * 60); if (this.t < 10) { this.tfTime.text = (("" + this.min) + ":0") + this.t; } else { this.tfTime.text = (("" + this.min) + ":") + this.t; } } var sec = 0; var min = 0; var t = 0; } onClipEvent (enterFrame) { if (this._parent._visible) { if (_root.bTimeRun) { if (!_root.bTimerStop) { this.sec = ((_root.nTotalTime + getTimer()) - _root.nTimed) / 1000; this.min = Math.floor(Math.floor(this.sec) / 60); this.t = this.sec - (this.min * 60); if (this.t < 10) { this.tfTime.text = (("" + this.min) + ":0") + this.t; } else { this.tfTime.text = (("" + this.min) + ":") + this.t; } } } else { this._visible = false; } } }
Instance of Symbol 590 MovieClip "heart" in Symbol 593 MovieClip Frame 1
onClipEvent (enterFrame) { if (this._parent._visible) { if (_root.nLife < 0) { this.gotoAndStop(1); } else if (_root.nLife > 9) { this.gotoAndStop(10); } else { this.gotoAndStop(_root.nLife + 1); } } }
Instance of Symbol 592 MovieClip in Symbol 593 MovieClip Frame 1
onClipEvent (load) { var fra = 0; var fdata = 0; var myData = new Date(); var fdata = mc.myData.getSeconds(); } onClipEvent (enterFrame) { if (this._parent._visible) { this.myData = new Date(); if (this.fdata == this.myData.getSeconds()) { this.fra++; } else { this.tfFPS.text = this.fra; this.fra = 0; this.fdata = this.myData.getSeconds(); } } }
Instance of Symbol 646 MovieClip in Symbol 649 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Symbol 691 MovieClip Frame 1
var X1 = -11; var X2 = 15; var Y1 = -22; var Y2 = 0;
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 704 MovieClip in Symbol 706 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Symbol 730 MovieClip Frame 1
var X1 = -12; var X2 = 10; var Y1 = -40; var Y2 = 0;
Symbol 764 MovieClip Frame 1
var X1 = -10; var X2 = 10; var Y1 = -40; var Y2 = 0;
Symbol 782 MovieClip Frame 5
stop();
Symbol 783 MovieClip Frame 1
var X1 = -10; var X2 = 10; var Y1 = -40; var Y2 = 0;
Instance of Symbol 730 MovieClip "anim" in Symbol 784 MovieClip Frame 1
onClipEvent (load) { var nSpeed = 4; var bRun = false; var nVecX = 0; var nVecY = 0; var nLife = 4; var nShotCool = 60; var nDir = -1; var nInvi = 0; var nAnimFrame = 1; this.gotoAndStop(this.nAnimFrame); var sIter; var nLeftX = 8690; var nRightX = 9190; this.onEnterFrame = function () { this._parent.nLife = this.nLife; if (this.nInvi > 0) { if (this.nInvi > 50) { this.nAnimFrame = 2; } else if (this.nAnimFrame == 2) { this.nAnimFrame = 1; } this.nInvi--; this._parent._visible = !this._parent._visible; } if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._parent._y = this._parent._y + this.nVecY; this._parent._x = this._parent._x + this.nVecX; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (this._parent._x >= this.nRightX) { this.nDir = -1; this._parent._xscale = 100; } else if (this._parent._x <= this.nLeftX) { this.nDir = 1; this._parent._xscale = -100; } if (this.nAnimFrame != 4) { this.nShotCool--; if (this.nShotCool < 0) { if (this.nAnimFrame == 3) { if (this.anim._currentframe >= this.anim._totalframes) { this.nAnimFrame = 1; this._parent._xscale = -100 * this.nDir; this.nShotCool = Math.floor(30 + (Math.random() * 30)); } else if (this.anim._currentframe == 11) { this.sendShot(); } } else { this.nAnimFrame = 3; if (this._parent._x <= _root.player._x) { this._parent._xscale = -100; } else { this._parent._xscale = 100; } } } } if (this.nAnimFrame == 1) { this._parent._x = this._parent._x + (this.nSpeed * this.nDir); if (this._parent.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } } } else if (this.nAnimFrame == 4) { if (this.anim._currentframe >= this.anim._totalframes) { this._parent.gotoAndStop(2); } } this.gotoAndStop(this.nAnimFrame); } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._parent._y >= _local3.yMin) && (this._parent._y <= _local3.yMax)) { if ((this._parent._x >= _local3.xMin) && (this._parent._x <= _local3.xMax)) { this._parent._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._parent._x + this.X1)) && (mc._x <= (this._parent._x + this.X2))) { if ((mc._y >= (this._parent._y + this.Y1)) && (mc._y <= ((this._parent._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 4; } else { this.nInvi = 60; } } }; var sendShot = function () { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("bulBossL2", "bulBossL2" + _local4, _local4); _local3._x = this._parent._x + (this._parent._xscale / 6); _local3._y = (this._parent._y - (this._parent._height / 2)) - 3; _local3.dir = (-this._parent._xscale) / 10; _local3._xscale = this._parent._xscale; _local3.tout = 120; _local3.onEnterFrame = function () { this.tout--; if (this.tout <= 0) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; }; }
Instance of Symbol 764 MovieClip "anim" in Symbol 784 MovieClip Frame 2
onClipEvent (load) { var nSpeed = 6; var bRun = true; var nVecX = 0; var nVecY = 0; var nLife = 3; var nShotCool = 60; var nJumpCool = 30; var nDir = -1; this._parent._xscale = 100; var nInvi = 60; var nAnimFrame = 1; var nLastAnim = 0; this.gotoAndStop(this.nAnimFrame); var sIter; var nLeftX = 8690; var nRightX = 9190; this.onEnterFrame = function () { this._parent.nLife = this.nLife; if (this.nAnimFrame != 5) { if (this.nInvi > 0) { if (this.nInvi > 50) { this.nAnimFrame = 2; } this.nInvi--; this._parent._visible = !this._parent._visible; } if (this._parent._x >= this.nRightX) { this.nDir = -1; this.nVecX = 0; this._parent._xscale = 100; } else if (this._parent._x <= this.nLeftX) { this.nVecX = 0; this.nDir = 1; this._parent._xscale = -100; } if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._parent._y = this._parent._y + this.nVecY; this._parent._x = this._parent._x + this.nVecX; for (sIter in _root.aPlates) { if (this.TestHit(_root.aPlates[sIter])) { this.nAnimFrame = 1; this.nLastAnim = 1; this.gotoAndStop(1); break; } } } else { if (this.bRun) { this.nShotCool--; this.nJumpCool--; if (this.nShotCool <= -20) { this.nAnimFrame = 1; this.nShotCool = Math.floor(60 + (Math.random() * 45)); if (Math.random() > 0.5) { this.nDir = 1; } else { this.nDir = -1; } this._parent._xscale = -100 * this.nDir; this.nSpeed = 6; } else if (this.nShotCool == 0) { this.nAnimFrame = 4; this.nSpeed = 8; this.nJumpCool = this.nJumpCool + 30; if (this._parent._x <= _root.player._x) { this.nDir = 1; this._parent._xscale = -100; } else { this.nDir = -1; this._parent._xscale = 100; } } if (this.nJumpCool <= 0) { this.nAnimFrame = 3; this.nVecY = -10; this.mcParent = null; this.nShotCool = this.nShotCool + 30; this.nJumpCool = Math.floor(60 + (Math.random() * 45)); if (this._parent._x <= _root.player._x) { this.nDir = 1; this.nVecX = 6; this._parent._xscale = -100; } else { this.nVecX = -6; this.nDir = -1; this._parent._xscale = 100; } } this._parent._x = this._parent._x + (this.nSpeed * this.nDir); } this.gotoAndStop(this.nAnimFrame); } if (this._parent.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._parent._y = this._parent._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else { this.gotoAndStop(this.nAnimFrame); if (this.anim._currentframe >= this.anim._totalframes) { this._parent.gotoAndStop(3); } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._parent._y >= _local3.yMin) && (this._parent._y <= _local3.yMax)) { if ((this._parent._x >= _local3.xMin) && (this._parent._x <= _local3.xMax)) { this._parent._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._parent._x + this.X1)) && (mc._x <= (this._parent._x + this.X2))) { if ((mc._y >= (this._parent._y + this.Y1)) && (mc._y <= ((this._parent._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; this.nLastAnim = this.nAnimFrame; if ((this.nLife <= 0) && (this.nAnimFrame != 5)) { this.nAnimFrame = 5; } else { this.nInvi = 60; } } }; }
Instance of Symbol 783 MovieClip "anim" in Symbol 784 MovieClip Frame 3
onClipEvent (load) { var nSpeed = 4; var bRun = true; var nVecX = 0; var nLife = 2; var nDir = ((-this._parent._xscale) / 100); var nInvi = 60; var nAnimFrame = 1; this.gotoAndStop(this.nAnimFrame); var sIter; var nLeftX = 8690; var nRightX = 9190; this.onEnterFrame = function () { this._parent.nLife = this.nLife; if (this.nInvi > 0) { if (this.nInvi > 50) { this.nAnimFrame = 2; } else { this.nAnimFrame = 1; } this.nInvi--; this._parent._visible = !this._parent._visible; } if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._parent._y = this._parent._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (this._parent._x >= this.nRightX) { this.nDir = -1; this._parent._xscale = 100; } else if (this._parent._x <= this.nLeftX) { this.nDir = 1; this._parent._xscale = -100; } if (this.nAnimFrame != 3) { this._parent._x = this._parent._x + (this.nSpeed * this.nDir); } else if (_root.player.bRun) { _root.player.bRun = false; _root.endLevel(); } this.gotoAndStop(this.nAnimFrame); } if (this._parent.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } } }; var TestHit = function (mc) { if (_root.game == undefined) { var _local3 = mc.box.getBounds(_root); } else { var _local3 = mc.box.getBounds(_root.game); } if ((this._parent._y >= _local3.yMin) && (this._parent._y <= _local3.yMax)) { if ((this._parent._x >= _local3.xMin) && (this._parent._x <= _local3.xMax)) { this._parent._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._parent._x + this.X1)) && (mc._x <= (this._parent._x + this.X2))) { if ((mc._y >= (this._parent._y + this.Y1)) && (mc._y <= ((this._parent._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { if ((this.nInvi <= 0) && (this.nLife > 0)) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 60; } } }; }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 795 MovieClip "leafe" in Symbol 796 MovieClip Frame 1
onClipEvent (load) { var fade = 2; this._rotation = Math.random() * 320; this._x = Math.random() * 760; this._y = Math.random() * 320; } onClipEvent (enterFrame) { this._y = this._y + 2; this._x = this._x - 2; this._rotation = this._rotation + 4; if (this._y < 260) { if (this.fade > 0) { this.fade--; } } else { this.fade = this.fade + 0.2; if (this._y >= 320) { this._y = 0; this._x = Math.random() * 760; this.fade = 2; } } this._alpha = 100 / (this.fade + 1); }
Instance of Symbol 395 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; this.sign.text = "\n4as AHEAD >"; }
Instance of Symbol 599 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 599 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 601 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 604 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 606 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 606 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 606 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 610 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 612 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 612 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = (this._x - 300); var sw = 400; var bs = false; var snd = new Sound(this); snd.attachSound("traffic"); snd.onSoundComplete = function () { this.start(); }; var snd2 = new Sound(this); snd2.attachSound("townwalk"); snd2.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); snd2.stop(); bs = false; } } else { if (!bs) { snd.start(); snd2.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 80); snd2.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 65); } }
Instance of Symbol 614 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 614 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 616 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 621 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.gotoAndStop(1); _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); this.bound.xMin = this.bound.xMin - 20; this.bound.xMax = this.bound.xMax + 20; this.onEnterFrame = function () { if ((_root.player._x >= this.bound.xMin) && (_root.player._x <= this.bound.xMax)) { if ((_root.player._y >= this.bound.yMin) && (_root.player._y <= this.bound.yMax)) { _root.bNearItem = true; if ((_root.player.nAnimFrame > 4) && (_root.player.nAnimFrame < 8)) { this.play(); this.onEnterFrame = function () { if (this._currentframe >= this._totalframes) { delete this.onEnterFrame; this._visible = false; this.box._xscale = 0; this.box._yscale = 0; this._xscale = 0; this._yscale = 0; _root.removeMovie(this); } }; } } } }; }
Instance of Symbol 629 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 633 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 635 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var snd = new Sound(this); snd.attachSound("schoolbell"); snd.setVolume(80); snd.setPan(100); var of = 300; } onClipEvent (enterFrame) { if (this._visible) { of--; if (of <= 0) { snd.start(); of = 400 + random(100); } } }
Instance of Symbol 637 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 649 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = (this._x + (this._width / 2)); var sw = ((this._width / 2) + 200); var bs = false; var snd = new Sound(this); snd.attachSound("music-folk"); snd.onSoundComplete = function () { this.start(); }; var snd2 = new Sound(this); snd2.attachSound("cafe"); snd2.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if (_root.player._x >= (scx + sw)) { if (bs) { snd.stop(); snd2.stop(); bs = false; } } else { if (!bs) { snd.start(); snd2.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 40); snd2.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 70); } }
Instance of Symbol 672 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = ((this._x + (this._width / 2)) + 100); var sw = ((this._width / 2) + 200); var bs = false; var snd = new Sound(this); snd.attachSound("music-club"); snd.onSoundComplete = function () { this.start(); }; var snd2 = new Sound(this); snd2.attachSound("club"); snd2.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); snd2.stop(); bs = false; } } else { if (!bs) { snd.start(); snd2.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 40); snd2.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 70); } }
Instance of Symbol 674 MovieClip "chata" in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var bBossFight = false; var fText1 = function () { _root.showMessage("How dare you touch my land with your limbs?!", _root.game.boss._x, (_root.game.boss._y - (_root.game.boss._height / 2)) - 10, _root.game.chata.fText2); }; var fText2 = function () { _root.showMessage("You mean the things I use to change my position?", _root.player._x, _root.player._y - (_root.player._height / 2), _root.game.chata.fText3); }; var fText3 = function () { _root.showMessage("You're insulting me with your intelligence! Your death will serve as a warning for the others!", _root.game.boss._x, (_root.game.boss._y - (_root.game.boss._height / 2)) - 10, _root.game.chata.fText4); }; var fText4 = function () { _root.showMessage("I didn't catch all, but thank you", _root.player._x, _root.player._y - (_root.player._height / 2), _root.game.chata.fText5); }; var fText5 = function () { _root.showMessage("ARGH! Enough with you!", _root.game.boss._x, (_root.game.boss._y - (_root.game.boss._height / 2)) - 10, _root.game.chata.fEnd); }; var fEnd = function () { _root.player.bRun = true; _root.game.boss.anim.bRun = true; _root.game.boss.anim.anim.play(); _root.bAllowAttack = true; }; } onClipEvent (enterFrame) { if (!this.bBossFight) { if (((this._x + 100) + _root.game._x) < 550) { _root.nCamState = 0; _root.player.bRun = false; this.bBossFight = true; this.fText1(); } } }
Instance of Symbol 676 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 678 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 678 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 678 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 678 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 680 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 682 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 682 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 680 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 682 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 682 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 680 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 682 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 682 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 695 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 75); var nRightX = (this._x + 75); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 75); var nRightX = (this._x + 75); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 697 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 699 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 699 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 699 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 699 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 701 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 701 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 706 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = ((this._x + (this._width / 2)) - 100); var sw = ((this._width / 2) + 200); var bs = false; var snd = new Sound(this); snd.attachSound("traffic2"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 70); } }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 678 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 691 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 784 MovieClip "boss" in Symbol 801 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.anim.gotoAndStop(1); var nLife = 0; _root.attachHPBar(this); }
Instance of Symbol 785 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 182 MovieClip [Heart] in Symbol 801 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.nSecrets++; _root.nLife++; _root.removeMovie(this); } }
Instance of Symbol 788 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 791 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 793 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 798 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 800 MovieClip in Symbol 801 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 395 MovieClip in Symbol 819 MovieClip Frame 1
onClipEvent (load) { this.sign.text = "\nTief AHEAD >"; }
Symbol 893 MovieClip Frame 1
var X1 = -8; var X2 = 8; var Y1 = -38; var Y2 = 0;
Symbol 967 MovieClip Frame 11
this.stop();
Symbol 996 MovieClip Frame 1
var X1 = -11; var X2 = 10; var Y1 = -40; var Y2 = 0;
Symbol 996 MovieClip Frame 2
var X1 = -13; var X2 = 10; var Y1 = -47; var Y2 = -4;
Instance of Symbol 804 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var snd = new Sound(this); snd.attachSound("thunder"); var of = random(150); } onClipEvent (enterFrame) { of--; if (of <= 0) { snd.setVolume(30 + random(30)); snd.setPan(random(201) - 100); snd.start(); of = random(200) + 100; } }
Instance of Symbol 807 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var snd = new Sound(this); snd.attachSound("wolf"); var of = (90 + random(60)); var scx = (this._x + (this._width / 2)); var sw = 1000; var bs = false; var snd2 = new Sound(this); snd2.attachSound("cricket"); snd2.onSoundComplete = function () { snd2.start(); }; } onClipEvent (enterFrame) { if (this._visible) { of--; if (of <= 0) { snd.setVolume(20 + random(30)); snd.setPan(random(201) - 100); snd.start(); of = random(210) + 150; } if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd2.stop(); bs = false; } } else { if (!bs) { snd2.start(); bs = true; } snd2.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 80); } } }
Instance of Symbol 809 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = (this._x + (this._width / 2)); var sw = ((this._width / 2) + 100); var bs = false; var snd = new Sound(this); snd.attachSound("choping"); snd.onSoundComplete = function () { snd.start(); }; } onClipEvent (enterFrame) { if (this._visible) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 80); } } }
Instance of Symbol 812 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 814 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = (this._x + (this._width / 2)); var sw = 1000; var snd = new Sound(this); var bs = false; snd.attachSound("church"); } onClipEvent (enterFrame) { if (this._visible) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { bs = true; snd.start(); } snd.setPan(((_root.player._x - this._x) / sw) * 100); snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 100); } } }
Instance of Symbol 816 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 819 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); var nLeftX = (this._x - 200); var nRightX = (this._x + 200); var bIgnor = true; this._xscale = -100; if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 1; var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 1; var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 1; var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 2; this.gotoAndStop(this.nPhase); var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 3; this.gotoAndStop(this.nPhase); var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; this.bIgnor = true; var nPhase = 1; var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); var nLeftX = (this._x - 200); var nRightX = (this._x + 200); var bIgnor = true; this._xscale = -100; if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 1; var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); var nLeftX = (this._x - 200); var nRightX = (this._x + 200); var bIgnor = true; this._xscale = 100; if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 1; var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 996 MovieClip "boss" in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); var nSpeed = 5; var nLeftX = 4640; var nRightX = 5090; if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.nLife = 4; this.nDir = -1; this.mcAvatar = this.anim; this.bRun = false; this.anim.anim.stop(); var nPhase = 1; var nAtk1 = 30; var nAtk2 = 60; var nAtk3 = 90; var nJump = 60; var bPause = false; _root.attachHPBar(this); this.hit = function () { this.nLife--; this.nInvi = 40; if (this.nLife <= 0) { if (this.nPhase != 2) { this.nLife = 6; } this.nAnimFrame = 3; } else if (this.nAnimFrame == 1) { this.nAnimFrame = 2; } }; this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; this._visible = !this._visible; } else { this._visible = true; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (this.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } } } this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if ((this.mcAvatar._currentframe == this.nAnimFrame) && (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes)) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; this.aAnimFun[0] = function (mc) { if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if (mc._x >= mc.nRightX) { mc.nDir = -1; mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = 1; mc._xscale = -100; } mc.nAtk2--; mc.nJump--; if (mc.nAtk1 <= 0) { if (mc._x >= _root.player._x) { mc.nDir = -1; mc._xscale = 100; } else { mc.nDir = 1; mc._xscale = -100; } mc.nAtk1 = Math.floor(Math.random() * 30) + 30; mc.nAnimFrame = 5; return(undefined); } mc.nAtk1--; if (mc.nAtk2 <= 0) { if (mc._x >= _root.player._x) { mc.nDir = -1; mc._xscale = 100; } else { mc.nDir = 1; mc._xscale = -100; } mc.nAtk2 = Math.floor(Math.random() * 60) + 60; mc.nAnimFrame = 6; return(undefined); } if (mc.nPhase == 2) { if (mc.nJump <= 0) { if (mc._x >= _root.player._x) { mc.nDir = -1; mc._xscale = 100; } else { mc.nDir = 1; mc._xscale = -100; } mc.nJump = Math.floor(Math.random() * 90) + 90; mc.nAnimFrame = 4; return(undefined); } } else if (mc.nJump <= 0) { mc.nJump = Math.floor(Math.random() * 30) + 60; mc.nVecY = -10; mc.mcParent = null; mc.nAnimFrame = 4; return(undefined); } mc._x = mc._x + (mc.nSpeed * mc.nDir); if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { if (mc.nInvi <= 30) { mc.nAnimFrame = 1; } }; this.aAnimEndFun[1] = null; this.aAnimFun[2] = function (mc) { if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (2 != null); } }; this.aAnimEndFun[2] = function (mc) { if (mc.nPhase >= 2) { if (_root.player.bRun) { mc.stop(); mc.anim.stop(); delete mc.onEnterFrame; _root.player.bRun = false; _root.endLevel(); } } else if ((mc.mcAvatar._currentframe = mc.nAnimFrame)) { mc.aAnimFun[3] = null; mc.aAnimEndFun[3] = function (mc) { mc.nAnimFrame = 1; var _local5 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b3-a3-ball", "b3-a3-ball" + _local5, _local5); _local3._x = mc._x; _local3._y = mc._y - mc._height; _local3.a = Math.atan2((_root.player._y - (_root.player._height / 2)) - _local3._y, _root.player._x - _local3._x); _local3._xscale = 100 * mc.nDir; _local3.tout = 120; _local3.onEnterFrame = function () { this.tout--; if (this.tout <= 0) { _root.removeMovie(this); } this._x = this._x + (Math.cos(this.a) * 20); this._y = this._y + (Math.sin(this.a) * 20); if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; }; mc.aAnimFun[5] = null; mc.aAnimEndFun[5] = function (mc) { var _local5 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b3-a2-ball", "b3-a3-ball" + _local5, _local5); _local3._x = mc._x + (10 * mc.nDir); _local3._y = mc._y - (mc._height / 2); _local3.dir = mc.nDir; _local3._xscale = 100 * (-mc.nDir); _local3.tout = 120; _local3.onEnterFrame = function () { this.tout--; if (this.tout <= 0) { _root.removeMovie(this); } this._x = this._x + (this.dir * 10); if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; mc.nAnimFrame = 1; }; mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; this.aAnimFun[3] = function (mc) { if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; mc._x = mc._x + (mc.nSpeed * mc.nDir); if (mc._x >= mc.nRightX) { mc.nVecY = -10; mc.nDir = -1; mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nVecY = -10; mc.nDir = 1; mc._xscale = -100; } for (sIter in _root.aPlates) { if (mc.TestHit(_root.aPlates[sIter])) { mc.nAnimFrame = 1; break; } } } }; this.aAnimFun[4] = function (mc) { mc._x = mc._x + (mc.nSpeed * mc.nDir); }; this.aAnimEndFun[4] = function (mc) { mc.nAnimFrame = 1; }; this.aAnimFun[5] = function (mc) { if (mc._x >= mc.nRightX) { mc.nDir = -1; mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = 1; mc._xscale = -100; } mc._x = mc._x + ((mc.nSpeed * 1.25) * mc.nDir); }; this.aAnimEndFun[5] = function (mc) { mc.nAnimFrame = 1; }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); this._xscale = 100; if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 1; var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 893 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); this.anim.gotoAndStop(1); var nLeftX = (this._x - 200); var nRightX = (this._x + 200); var bIgnor = true; this._xscale = 100; if (this.nSpeed == undefined) { var nSpeed = 0; } var bRun = true; var nVecY = 0; var nLife = 1; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame = 1; var sIter; var mcParent = null; var mcAvatar = this; if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } var aAnimFun = new Array(10); var aAnimEndFun = new Array(10); this.aAnimFun[0] = function (mc) { if (mc.nInvi > 0) { mc.nInvi--; mc._visible = !mc._visible; } else { mc._visible = true; } if (mc.mcParent == null) { mc.nVecY = mc.nVecY + 0.5; mc._y = mc._y + mc.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!mc.TestHit(_root.aPlates[sIter])); do { } while (0 != null); } else if (mc.bRun) { if ((_root.player.mcChild == mc.mcParent) && (!mc.bIgnor)) { mc.nDir = (_root.player._x - mc._x) / Math.abs(_root.player._x - mc._x); mc._xscale = (-mc.nDir) * 100; mc.nDir = mc.nDir * (_root.nEnemySpeed + mc.nSpeed); } if (mc._x >= mc.nRightX) { mc.nDir = -(_root.nEnemySpeed + mc.nSpeed); mc._xscale = 100; } else if (mc._x <= mc.nLeftX) { mc.nDir = _root.nEnemySpeed + mc.nSpeed; mc._xscale = -100; } mc._x = mc._x + mc.nDir; if (mc.hitTest(_root.player)) { if (mc.testHit2(_root.player)) { _root.player.hit(); } if (mc.nInvi <= 0) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { mc.hit(); } } } } }; this.aAnimFun[1] = function (mc) { this.nInvi--; if (this.nInvi <= 0) { this.nAnimFrame = 1; this._visible = true; } this._visible = !this._visible; }; this.aAnimEndFun[1] = function (mc) { _root.removeMovie(mc); }; this.onEnterFrame = function () { this.mcAvatar.gotoAndStop(this.nAnimFrame); this.aAnimFun[this.nAnimFrame - 1](this); if (this.mcAvatar.anim._currentframe >= this.mcAvatar.anim._totalframes) { this.aAnimEndFun[this.nAnimFrame - 1](this); } }; var TestHit = function (pmc) { var _local3 = pmc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = pmc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (pmc) { if ((pmc._x >= (this._x + this.X1)) && (pmc._x <= (this._x + this.X2))) { if ((pmc._y >= (this._y + this.Y1)) && ((pmc._y + pmc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nAnimFrame = 3; } else { this.nInvi = 10; this.nAnimFrame = 2; } } }; this.mcAvatar = this.anim; var nPhase = 3; this.gotoAndStop(this.nPhase); var hit = function () { this.nInvi = 20; this.nAnimFrame = 2; }; this.aAnimFun[1] = null; this.aAnimEndFun[1] = function (mc) { if (mc.nPhase >= 3) { _root.removeMovie(mc); } else { mc.nPhase++; mc.nAnimFrame = 1; mc.gotoAndStop(mc.nPhase); } }; }
Instance of Symbol 998 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1000 MovieClip in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var snd = new Sound(this); snd.attachSound("scream"); var of = (60 + random(60)); } onClipEvent (enterFrame) { if (this._visible) { of--; if (of <= 0) { snd.setVolume(30 + random(30)); snd.setPan(random(201) - 100); snd.start(); of = random(180) + 120; } } }
Instance of Symbol 1002 MovieClip "chata" in Symbol 1003 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var bBossFight = false; var fText1 = function () { _root.showMessage("Gathering some firewood?", _root.player._x, (_root.player._y - (_root.player._height / 2)) - 10, _root.game.chata.fText2); }; var fText2 = function () { _root.showMessage("No, but I'll gladly gather your head, bitch!", _root.game.boss._x - 10, _root.game.boss._y - _root.game.boss._height, _root.game.chata.fText3); }; var fText3 = function () { _root.showMessage("So I can't just leave, right?", _root.player._x, (_root.player._y - (_root.player._height / 2)) - 10, _root.game.chata.fText4); }; var fText4 = function () { _root.showMessage("No", _root.game.boss._x - 10, _root.game.boss._y - _root.game.boss._height, _root.game.chata.fText5); }; var fText5 = function () { _root.showMessage("Well, at least I tryed", _root.player._x, (_root.player._y - (_root.player._height / 2)) - 10, _root.game.chata.fText6); }; var fText6 = function () { _root.showMessage("Enough with you bitch!", _root.game.boss._x - 10, _root.game.boss._y - _root.game.boss._height, _root.game.chata.fEnd); }; var fEnd = function () { _root.player.bRun = true; _root.game.boss.bRun = true; _root.game.boss.anim.anim.play(); _root.bAllowAttack = true; }; } onClipEvent (enterFrame) { if (!this.bBossFight) { if ((this._x + _root.game._x) < 500) { _root.nCamState = 0; _root.player.bRun = false; this.bBossFight = true; this.fText1(); } } }
Instance of Symbol 1010 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var scy = (_parent._y + this._y); var sh = 200; var bs = false; var snd = new Sound(this); snd.attachSound("torch"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._y <= (scy - sh)) || (_root.player._y >= (scy + sh))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._y - scy) / sh)) * 50); } }
Instance of Symbol 1010 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1013 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1013 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1013 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 395 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; this.sign.text = "\neNtro\n< AHEAD"; }
Instance of Symbol 1016 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1018 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1021 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1023 MovieClip in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1025 MovieClip "tunel" in Symbol 1026 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var fText1 = function () { _root.showMessage("Hi there, dangerously looking man. Nice views you got here.", _root.player._x, (_root.player._y - (_root.player._height / 2)) - 10, _root.game.tower.tunel.fText2); }; var fText2 = function () { _root.showMessage("Indeed, but it is missing a bit of red", _root.game.boss._x - 10, _root.game.boss._y - _root.game.boss._height, _root.game.tower.tunel.fText3); }; var fText3 = function () { _root.showMessage("Is this another coversation that will end with a slaughtery?", _root.player._x, (_root.player._y - (_root.player._height / 2)) - 10, _root.game.tower.tunel.fText4); }; var fText4 = function () { _root.showMessage("Yes", _root.game.boss._x - 10, _root.game.boss._y - _root.game.boss._height, _root.game.tower.tunel.fText5); }; var fText5 = function () { _root.showMessage("I just wanted to make sure", _root.player._x, (_root.player._y - (_root.player._height / 2)) - 10, _root.game.tower.tunel.fEnd); }; var fEnd = function () { _root.bAllowAttack = true; _root.player.bRun = true; _root.game.boss.bRun = true; _root.game.boss.anim.play(); }; } onClipEvent (enterFrame) { if ((!_root.game.boss.bRun) && (_root.player.bRun)) { if (_root.player._y <= (this._y + this._parent._y)) { this.box._x = -49; this.fText1(); _root.player.bRun = false; } } }
Symbol 1075 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Symbol 1084 MovieClip Frame 1
var X1 = -15; var X2 = 10; var Y1 = -40; var Y2 = 0;
Symbol 1093 MovieClip Frame 1
var X1 = -15; var X2 = 10; var Y1 = -41; var Y2 = 0;
Symbol 1155 MovieClip Frame 1
var X1 = -12; var X2 = 12; var Y1 = -40; var Y2 = 0;
Instance of Symbol 1026 MovieClip "tower" in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1028 MovieClip "towerwall" in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1030 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1032 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { var phase = 0; } onClipEvent (enterFrame) { switch (this.phase) { case 0 : ((this.hitTest(_root.player) && (_root.player._y < -295)) ? ((this.phase = 1)) : ((_root.game.tower.box._y = -1788))); break; case 1 : if (_root.game.towerwall._alpha > 0) { _root.game.towerwall._alpha = _root.game.towerwall._alpha - 10; this._alpha = this._alpha - 10; } else { this.phase = 2; } break; case 2 : _root.game.floor1.box._x = _root.game.floor1.box._x - 500; _root.game.tower.box._y = -788; this.phase = 3; } }
Instance of Symbol 1051 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scy = (this._y + (this._height / 2)); var sh = (this._height + 100); var bs = false; var snd = new Sound(this); snd.attachSound("sea"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._y <= (scy - sh)) || (_root.player._y >= (scy + sh))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._y - scy) / sh)) * 90); } }
Instance of Symbol 1053 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1055 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1057 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1059 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1061 MovieClip "floor1" in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scy = ((this._y + this._height) + 100); var sh = (this._height + 300); var bs = false; var snd = new Sound(this); var span = 0; var sp = 1; snd.attachSound("wind"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._y <= (scy - sh)) || (_root.player._y >= (scy + sh))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } span = span + sp; if ((span == 100) || (span == -100)) { sp = sp * -1; } snd.setPan(span); snd.setVolume((1 - (Math.abs(_root.player._y - scy) / sh)) * 90); } }
Instance of Symbol 1063 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1066 MovieClip "npc1" in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { function nextState() { bTalk = false; } var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var bTalk = false; } onClipEvent (enterFrame) { if ((!this.bTalk) && (this._visible)) { if (this.hitTest(_root.player)) { _root.showMessage("You'll need some serious wall-to-wall jumping skills to enter eNtro's lair *hint**hint*", _root.game.npc1._x, _root.game.npc1._y - 25, _root.game.npc1.nextState); this.bTalk = true; } } }
Instance of Symbol 1075 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1084 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1093 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1093 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1075 MovieClip in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1155 MovieClip "boss" in Symbol 1156 MovieClip Frame 1
onClipEvent (load) { function sendBone() { var _local5 = Math.floor(Math.random() * 3); var _local3 = _root.game.getNextHighestDepth(); var _local4; if (_local5 == 0) { _local4 = _root.game.attachMovie("b4_kosc1", "b4_kosc1" + _local3, _local3); } else if (_local5 == 1) { _local4 = _root.game.attachMovie("b4_kosc2", "b4_kosc2" + _local3, _local3); } else { _local4 = _root.game.attachMovie("b4_kosc3", "b4_kosc3" + _local3, _local3); } _local4._x = Math.floor(Math.random() * 380) + 130; _local4._y = -1700; _local4.dir = 5; _local4.onEnterFrame = function () { if (this._y > -1190) { _root.removeMovie(this); } this._rotation = this._rotation + 2; this._y = this._y + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } function sendFlame() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b4_fire", "b4_fire" + _local4, _local4); _local3._x = this._x + (this.nDir * 15); _local3._y = this._y - 3; _local3.dir = this.nDir * 4; _local3.onEnterFrame = function () { if ((this._x < _root.game.boss.nLeftX) || (this._x > _root.game.boss.nRightX)) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } function sendFireball() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b4_fireball", "b4_fireball" + _local4, _local4); _local3._x = this._x + (this.nDir * 8); _local3._y = this._y + (this.Y1 / 2); _local3.dir = this.nDir * 7; _local3._xscale = -100 * this.nDir; _local3.onEnterFrame = function () { if ((this._x < _root.game.boss.nLeftX) || (this._x > _root.game.boss.nRightX)) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } function sendCola() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b4_cola", "b4_cola" + _local4, _local4); _local3._x = this._x + (this.nDir * 8); _local3._y = this._y + (this.Y1 / 2); _local3.rot = 0; _local3.speed = this.nDir * 5; _local3._xscale = -100 * this.nDir; _local3.dir = this.nDir; _local3.tout = 30; _local3.onEnterFrame = function () { this.tout--; if (this.tout <= 0) { _root.removeMovie(this); } this.rot = this.rot + (0.005 * this.dir); this._x = this._x + (Math.cos(this.rot) * this.speed); this._y = this._y + (Math.sin(this.rot) * this.speed); this._rotation = this.rot * 180; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } this.gotoAndStop(3); this.anim.gotoAndStop(1); var nLeftX = 123; var nRightX = 510; var nBone = 75; var nSpeed = 4; var nDir = -1; var nCool = 100; var nInvi = 0; var nLife = 8; var bRun = false; var bGround = false; _root.attachHPBar(this); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; } if (!this.bGround) { this._y = this._y + 0.5; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { this.nBone--; if (this.nBone < 0) { this.nBone = 15 + Math.floor(Math.random() * 40); this.sendBone(); } switch (this._currentframe) { case 1 : if (this.anim._currentframe >= this.anim._totalframes) { this.nDir = Math.floor(Math.random() * 3) - 1; if (this.nDir == 0) { this.nDir = ((this._x < _root.player._x) ? 1 : -1); if (this.nDir == -1) { this._xscale = 100; } if (this.nDir == 1) { this._xscale = -100; } this.gotoAndStop(Math.floor(Math.random() * 3) + 4); } else { if (this.nDir == -1) { this._xscale = 100; } if (this.nDir == 1) { this._xscale = -100; } this.gotoAndStop(2); } } break; case 2 : this._x = this._x + (this.nDir * this.nSpeed); if (this._x < this.nLeftX) { this.nDir = 1; this._xscale = -100; } else if (this._x > this.nRightX) { this.nDir = -1; this._xscale = 100; } this.nCool--; if (this.nCool <= 0) { this.nCool = 25 + Math.floor(Math.random() * 75); this.nDir = Math.floor(Math.random() * 3) - 1; if (this.nDir == 0) { this.nDir = ((this._x < _root.player._x) ? 1 : -1); if (this.nDir == -1) { this._xscale = 100; } if (this.nDir == 1) { this._xscale = -100; } this.gotoAndStop(Math.floor(Math.random() * 3) + 4); } else { this.gotoAndStop(1); } } break; case 3 : if (_root.game.plaszcz == null) { _root.game.attachMovie("b4_plaszcz", "plaszcz", _root.game.getNextHighestDepth()); _root.game.plaszcz._x = this._x + 26; _root.game.plaszcz._y = this._y - 13; _root.game.plaszcz.onEnterFrame = function () { if (this._alpha > 0) { this._y = this._y + 2; this._alpha = this._alpha - 5; } }; } if (this.anim._currentframe >= this.anim._totalframes) { _root.game.plaszcz.removeMovieClip(); _root.game.plaszcz.unloadMovie(); removeMovieClip(_root.game.plaszcz); this.gotoAndStop(1); } break; case 4 : if (this.anim._currentframe == 20) { this.sendFlame(); } else if (this.anim._currentframe == 22) { this.sendFlame(); } else if (this.anim._currentframe == 24) { this.sendFlame(); } else if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 5 : if (this.anim._currentframe == 5) { this.sendFireball(); } else if (this.anim._currentframe == 7) { this.sendFireball(); } else if (this.anim._currentframe == 9) { this.sendFireball(); } else if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 6 : if (this.anim._currentframe >= 15) { this.sendCola(); } if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 7 : if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 8 : _root.endLevel(); this.bRun = false; delete this.onEnterFrame; } if (this.nInvi <= 0) { if (this.hitTest(_root.player)) { if (((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) && (_root.player._y > (this._y + this.Y1))) { this.hit(); } } } if (this.testHit2(_root.player)) { _root.player.hit(); } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.bGround = true; return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && (mc._y <= ((this._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.gotoAndStop(8); _root.player.bRun = false; } else { this.nInvi = 60; if ((this._currentframe == 1) || (this._currentframe == 2)) { this.gotoAndStop(7); } } } }; }
Symbol 1269 MovieClip Frame 1
var X1 = -11; var X2 = 13; var Y1 = -40; var Y2 = 0;
Symbol 1283 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Symbol 1292 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Symbol 1301 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Instance of Symbol 1159 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1161 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1164 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1166 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1170 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1173 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1175 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1177 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1180 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1182 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1182 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1183 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1183 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1185 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1187 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1189 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1191 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1193 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1195 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var scx = ((this._x + (this._width / 2)) + 100); var sw = (this._width / 2); var bs = false; var snd = new Sound(this); snd.attachSound("highway"); snd.setPan(-100); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 80); } }
Instance of Symbol 1197 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1199 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1201 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var scx = ((this._x + (this._width / 2)) + 100); var sw = (this._width / 2); var bs = false; var snd = new Sound(this); snd.attachSound("rap"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 60); } }
Instance of Symbol 1203 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1205 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var scx = ((this._x + (this._width / 2)) + 100); var sw = ((this._width / 2) + 100); var bs = false; var snd = new Sound(this); snd.attachSound("wind"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 70); } }
Instance of Symbol 1207 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1209 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1209 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1211 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1213 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1215 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1219 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip "block" in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var fText1 = function () { _root.showMessage("You don't look like a normal guy.", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.block.fText2); }; var fText2 = function () { _root.showMessage("You're weird one your self and it will be even worse after this fight.", _root.game.boss._x - 10, (_root.game.boss._y - (_root.game.boss._height / 2)) - 10, _root.game.block.fText3); }; var fText3 = function () { _root.showMessage("It was supposed to be a compliment; I wanted to be nice.", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.block.fText4); }; var fText4 = function () { _root.showMessage("Huh, now you know why everything that moves is attacking you. Lets just begin.", _root.game.boss._x - 10, (_root.game.boss._y - (_root.game.boss._height / 2)) - 10, _root.game.block.fEnd); }; var fEnd = function () { _root.player.bRun = true; _root.game.boss.bRun = true; _root.game.boss.anim.play(); }; } onClipEvent (enterFrame) { if (!_root.bAllowAttack) { if (((this._x + 60) + _root.game._x) > 0) { _root.nCamState = 0; _root.bAllowAttack = true; _root.player.bRun = false; this.fText1(); } } }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1269 MovieClip "boss" in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { function sendFlame1() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b5_fire1", "b5_fire1" + _local4, _local4); _local3._x = this._x + (this.nDir * 30); _local3._y = this._y - 3; _local3.dir = this.nDir * 4; _local3._xscale = -100 * this.nDir; _local3.bChange = false; _local3.onEnterFrame = function () { if ((this._x < _root.game.boss.nLeftX) || (this._x > _root.game.boss.nRightX)) { if (!this.bChange) { this.dir = -this.dir; this.bChange = true; this._xscale = -this._xscale; } else { _root.removeMovie(this); } } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } function sendFlame2() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b5_fire2", "b5_fire2" + _local4, _local4); _local3._x = this._x + (this.nDir * 17); _local3._y = this._y + (this.Y1 / 2); _local3.dir = this.nDir * 7; _local3._xscale = -100 * this.nDir; _local3.onEnterFrame = function () { if ((this._x < _root.game.boss.nLeftX) || (this._x > _root.game.boss.nRightX)) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } function sendBul1() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b5_bul1", "b5_bul1" + _local4, _local4); _local3._x = this._x + (this.nDir * 17); _local3._y = this._y + (this.Y1 / 2); _local3.dir = this.nDir * 7; _local3._xscale = -100 * this.nDir; _local3.onEnterFrame = function () { if ((this._x < _root.game.boss.nLeftX) || (this._x > _root.game.boss.nRightX)) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; _local4 = _root.game.getNextHighestDepth(); _local3 = _root.game.attachMovie("b5_bul1", "b5_bul1" + _local4, _local4); _local3._x = this._x + ((-this.nDir) * 17); _local3._y = this._y + (this.Y1 / 2); _local3.dir = (-this.nDir) * 7; _local3._xscale = 100 * this.nDir; _local3.onEnterFrame = function () { if ((this._x < _root.game.boss.nLeftX) || (this._x > _root.game.boss.nRightX)) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } function sendBul2() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b5_bul2", "b5_bul2" + _local4, _local4); _local3._x = this._x + (this.nDir * 15); _local3._y = this._y + (this.Y1 / 2); _local3.dir = this.nDir * 7; _local3._xscale = -100 * this.nDir; _local3.onEnterFrame = function () { if ((this._x < _root.game.boss.nLeftX) || (this._x > _root.game.boss.nRightX)) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } this.gotoAndStop(1); this.anim.gotoAndStop(1); this._xscale = -100; var nLeftX = -2482; var nRightX = -1982; var nVecY = 0; var nSpeed = 6; var nDir = 1; var nCool = 100; var nInvi = 0; var nLife = 6; var bRun = false; var bGround = false; _root.attachHPBar(this); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; } if (!this.bGround) { this._x = this._x + (this.nDir * this.nSpeed); if (this._x < this.nLeftX) { this.nDir = 1; this.nVecY = -7; this._xscale = -100; } else if (this._x > this.nRightX) { this.nDir = -1; this.nVecY = -7; this._xscale = 100; } this.nVecY = this.nVecY + 0.35; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { switch (this._currentframe) { case 1 : if (this.anim._currentframe >= this.anim._totalframes) { this.nDir = Math.floor(Math.random() * 3) - 1; if ((this.nDir == 0) || (this.nCool > 0)) { this.nDir = ((this._x < _root.player._x) ? 1 : -1); if (this.nDir == -1) { this._xscale = 100; } if (this.nDir == 1) { this._xscale = -100; } this.gotoAndStop(2); } else { this.nDir = ((this._x < _root.player._x) ? 1 : -1); if (this.nDir == -1) { this._xscale = 100; } if (this.nDir == 1) { this._xscale = -100; } this.nCool = 30 + Math.floor(Math.random() * 60); this.gotoAndStop(Math.floor(Math.random() * 5) + 6); } } break; case 2 : this._x = this._x + (this.nDir * this.nSpeed); if (this._x < this.nLeftX) { this.nDir = 1; this._xscale = -100; } else if (this._x > this.nRightX) { this.nDir = -1; this._xscale = 100; } this.nCool--; if (this.nCool <= 0) { if (Math.random() > 0.75) { this.nVecY = -9; this.bGround = false; this.gotoAndStop(3); } else { this.nDir = Math.floor(Math.random() * 3) - 1; if (this.nDir == 0) { this.nDir = ((this._x < _root.player._x) ? 1 : -1); if (this.nDir == -1) { this._xscale = 100; } if (this.nDir == 1) { this._xscale = -100; } this.nCool = 30 + Math.floor(Math.random() * 60); this.gotoAndStop(Math.floor(Math.random() * 5) + 6); } else { this.gotoAndStop(1); } } } break; case 3 : if (this.bGround) { this.gotoAndStop(2); } break; case 4 : if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 5 : _root.endLevel(); this.bRun = false; delete this.onEnterFrame; break; case 6 : if (this.anim._currentframe == 15) { this.sendFlame1(); } else if (this.anim._currentframe == 17) { this.sendFlame1(); } else if (this.anim._currentframe == 19) { this.sendFlame1(); } else if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 7 : if (this.anim._currentframe == 15) { this.sendFlame2(); } else if (this.anim._currentframe == 17) { this.sendFlame2(); } else if (this.anim._currentframe == 19) { this.sendFlame2(); } else if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 8 : if (this.anim._currentframe > 7) { this._x = this._x + ((this.nDir * this.nSpeed) * 1.5); if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } } break; case 9 : if (this.anim._currentframe == 10) { this.sendBul2(); } else if (this.anim._currentframe == 15) { this.sendBul2(); } else if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 10 : if (this.anim._currentframe == 10) { this.sendBul1(); } else if (this.anim._currentframe == 12) { this.sendBul1(); } else if (this.anim._currentframe == 14) { this.sendBul1(); } else if (this.anim._currentframe == 16) { this.sendBul1(); } else { if (this.anim._currentframe < this.anim._totalframes) { break; } this.gotoAndStop(1); } } } if (this.nInvi <= 0) { if (this.hitTest(_root.player)) { if (((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) && (_root.player._y > (this._y + this.Y1))) { this.hit(); } } } if (this.testHit2(_root.player)) { _root.player.hit(); } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { if ((_local3.yMin + 20) > this._y) { this._y = _local3.yMin; this.bGround = true; return(true); } } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && (mc._y <= ((this._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nLife = 0; this.gotoAndStop(5); _root.player.bRun = false; } else { this.nInvi = 60; if ((this._currentframe == 1) || (this._currentframe == 2)) { this.gotoAndStop(4); } } } }; }
Instance of Symbol 182 MovieClip [Heart] in Symbol 1302 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.nSecrets++; _root.nLife++; _root.removeMovie(this); } }
Instance of Symbol 1274 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); this.bound.xMin = this.bound.xMin - 20; this.bound.xMax = this.bound.xMax + 20; this.onEnterFrame = function () { if ((_root.player._x >= this.bound.xMin) && (_root.player._x <= this.bound.xMax)) { if ((_root.player._y >= this.bound.yMin) && (_root.player._y <= this.bound.yMax)) { _root.bNearItem = true; if ((_root.player.nAnimFrame > 4) && (_root.player.nAnimFrame < 8)) { this.play(); this.onEnterFrame = function () { if (this._currentframe >= this._totalframes) { delete this.onEnterFrame; this._visible = false; this.box._xscale = 0; this.box._yscale = 0; this._xscale = 0; this._yscale = 0; _root.removeMovie(this); } }; } } } }; }
Instance of Symbol 1274 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); this.bound.xMin = this.bound.xMin - 20; this.bound.xMax = this.bound.xMax + 20; this.onEnterFrame = function () { if ((_root.player._x >= this.bound.xMin) && (_root.player._x <= this.bound.xMax)) { if ((_root.player._y >= this.bound.yMin) && (_root.player._y <= this.bound.yMax)) { _root.bNearItem = true; if ((_root.player.nAnimFrame > 4) && (_root.player.nAnimFrame < 8)) { this.play(); this.onEnterFrame = function () { if (this._currentframe >= this._totalframes) { delete this.onEnterFrame; this._visible = false; this.box._xscale = 0; this.box._yscale = 0; this._xscale = 0; this._yscale = 0; _root.removeMovie(this); } }; } } } }; }
Instance of Symbol 1283 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1292 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1292 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1301 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1283 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1301 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1292 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1292 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1283 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1301 MovieClip in Symbol 1302 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Symbol 1483 MovieClip Frame 1
var X1 = -10; var X2 = 20; var Y1 = -45; var Y2 = 0;
Instance of Symbol 1496 MovieClip in Symbol 1497 MovieClip Frame 1
onClipEvent (load) { var a = 0; var x = 15; var y = 15; } onClipEvent (enterFrame) { this._x = x + Math.cos(a); this._y = y + Math.sin(a); a = a + 0.1; if (a > (Math.PI*2)) { a = a - (Math.PI*2); } }
Symbol 1506 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Symbol 1515 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Symbol 1524 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Symbol 1531 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Symbol 1536 MovieClip Frame 1
var X1 = -11; var X2 = 5; var Y1 = -38; var Y2 = 0;
Symbol 1565 MovieClip Frame 1
var X1 = -11; var X2 = 13; var Y1 = -40; var Y2 = 0;
Symbol 1568 MovieClip Frame 10
stop();
Symbol 1599 MovieClip Frame 1
function shake() { this.nState = 0; this.onEnterFrame = function () { switch (this.nState) { case 0 : _root._x = -5; _root._y = -5; break; case 1 : _root._x = 5; _root._y = 5; break; case 2 : _root._x = -4; _root._y = 2; break; case 3 : _root._x = 3; _root._y = -4; break; case 4 : _root._x = -1; _root._y = 2; break; case 5 : _root._x = 1; _root._y = -2; break; case 6 : _root._x = 0; _root._y = 1; } this.nState++; if (this.nState > 7) { _root._x = 0; _root._y = 0; delete this.onEnterFrame; } }; } var bosses = 2; var nState = 0;
Instance of Symbol 1304 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1306 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var scx = (this._x + (this._width / 2)); var sw = ((this._width / 2) + 100); var bs = false; var snd = new Sound(this); var pos = 0; snd.attachSound("waterdrop1"); snd.onSoundComplete = function () { snd3.start(); }; var snd2 = new Sound(this); snd2.attachSound("snowwind"); snd2.onSoundComplete = function () { this.start(); }; var snd3 = new Sound(this); snd3.attachSound("waterdrop2"); snd3.onSoundComplete = function () { snd.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); snd2.stop(); snd3.stop(); bs = false; } } else { if (!bs) { if (_root.player._y > (this._y - 600)) { snd.start(); } else { snd2.start(); } bs = true; } pos = (1 - (Math.abs(_root.player._x - scx) / sw)) * 70; snd.setVolume(pos); snd2.setVolume(pos); snd3.setVolume(pos); } }
Instance of Symbol 1313 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1317 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1321 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1323 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1339 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1341 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var scx = (this._x - 200); var sw = (this._width - 100); var bs = false; var snd = new Sound(this); snd.attachSound("riverloop"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if ((_root.player._x <= (scx - sw)) || (_root.player._x >= (scx + sw))) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 80); } }
Instance of Symbol 1347 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1349 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1311 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1315 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1352 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1354 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1356 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1364 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1366 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1368 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1370 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1374 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1376 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1376 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1376 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1378 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1380 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1382 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1382 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 395 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; this.sign.text = "\nSSJKOZAK\n>"; }
Instance of Symbol 1384 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1386 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1388 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1390 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1390 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1392 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1394 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1390 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1396 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1398 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1400 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1402 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1404 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1406 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 395 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; this.sign.text = "TO ABDRZEJ\nV"; }
Instance of Symbol 1408 MovieClip "cavebottom" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var fText1 = function () { _root.showMessage("Damn! Are you a real devil?", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.cavebottom.fText2); }; var fText2 = function () { _root.showMessage("Thats right handsome.", _root.game.boss1._x - 10, (_root.game.boss1._y - (_root.game.boss1._height / 2)) - 10, _root.game.cavebottom.fText3); }; var fText3 = function () { _root.showMessage("And what are you doing here?", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.cavebottom.fText4); }; var fText4 = function () { _root.showMessage("I'm eating an icecream.", _root.game.boss1._x - 10, (_root.game.boss1._y - (_root.game.boss1._height / 2)) - 10, _root.game.cavebottom.fText5); }; var fText5 = function () { _root.showMessage("... isn't it too cold for an icecream?", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.cavebottom.fText6); }; var fText6 = function () { _root.showMessage("I'm a devil, I can do whatever I want.", _root.game.boss1._x - 10, (_root.game.boss1._y - (_root.game.boss1._height / 2)) - 10, _root.game.cavebottom.fText7); }; var fText7 = function () { _root.showMessage("I see...", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.cavebottom.fText8); }; var fText8 = function () { _root.showMessage("And now I'm going to spank you, because you been a bad boy.", _root.game.boss1._x - 10, (_root.game.boss1._y - (_root.game.boss1._height / 2)) - 10, _root.game.cavebottom.fEnd); }; var fEnd = function () { _root.player.bRun = true; _root.game.boss1.bRun = true; _root.game.boss1.anim.play(); }; var bBoss1 = false; } onClipEvent (enterFrame) { if (!this.bBoss1) { if (((this._y + 500) + _root.game._y) < 400) { this.bBoss1 = true; _root.bAllowAttack = true; _root.player.bRun = false; this.fText1(); } } }
Instance of Symbol 1412 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1414 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1378 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1416 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1418 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1420 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 395 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; this.sign.text = "TO SSJKOZAK\n>"; }
Instance of Symbol 1388 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1422 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1483 MovieClip "boss2" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function sendSopel() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b6_sopel", "b6_sopel" + _local4, _local4); _local3._x = Math.floor(Math.random() * 700) + 4000; _local3._y = -1480; _local3.dir = this.nSopel; _local3.onEnterFrame = function () { if ((this._y > -1050) || (_root.game.boss2.nLife <= 0)) { _root.removeMovie(this); } this._y = this._y + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } function sendFire() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b6_fire", "b6_fire" + _local4, _local4); _local3._x = this._x + this.nDir; _local3._y = this._y + (this.Y1 / 2); _local3.vy = -5; _local3.speed = this.nDir * 8; _local3._xscale = -100 * this.nDir; _local3.onEnterFrame = function () { if (this._y > -1050) { _root.removeMovie(this); } this._x = this._x + this.speed; this.vy = this.vy + 0.4; this._y = this._y + this.vy; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } this.gotoAndStop(1); this.anim.gotoAndStop(1); var snd = new Sound(this); snd.attachSound("boss-rumble"); var nLeftX = 3940; var nRightX = 4660; var nVecY = 0; var nState = 1; var nSpeed = 6; var nDir = -1; var nCool = 100; var nInvi = 0; var nLife = 5; var nRiseSpeed = 15; var nFallSpeed = 20; var nJump = -10; var nJump2 = -7; var nGrav = 0.5; var nSopel = 8; var r = 0; var bRun = false; var bGround = false; var bSSJ = false; var bFall = false; _root.attachHPBar(this); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; } if (!this.bGround) { this._x = this._x + (this.nDir * this.nSpeed); if (this._x < this.nLeftX) { this.nDir = 1; this.nVecY = this.nJump2; this._xscale = -100; } else if (this._x > this.nRightX) { this.nDir = -1; this.nVecY = this.nJump2; this._xscale = 100; } this.nVecY = this.nVecY + this.nGrav; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { switch (this.nState) { case 1 : if (this.anim._currentframe >= this.anim._totalframes) { if (!this.bSSJ) { if (Math.random() > 0.75) { this.nState = 3; this._y = this._y - this.nRiseSpeed; } else { this.nState = 2; this.nVecY = this.nJump; this.bGround = false; } } else { r = Math.random(); if (r < 0.33) { this.nDir = ((this._x < _root.player._x) ? 1 : -1); this._xscale = (-this.nDir) * 100; this.gotoAndStop(2); this.nState = 4; } else if (r < 0.67) { this.nState = 2; this.nVecY = this.nJump; this.bGround = false; } else { this.nState = 3; this._y = this._y - this.nRiseSpeed; } } } break; case 2 : if (this.bGround) { r = Math.random(); if (this.bSSJ) { if (r < 0.25) { this.nState = 1; } else if (r < 0.5) { this.nState = 2; this.nVecY = this.nJump; this.bGround = false; } else if (r < 0.75) { this.nState = 3; this._y = this._y - this.nRiseSpeed; } else { this.nDir = ((this._x < _root.player._x) ? 1 : -1); this._xscale = (-this.nDir) * 100; this.gotoAndStop(2); this.nState = 4; } } else if (r < 0.33) { this.nState = 1; } else if (r < 0.67) { this.nState = 2; this.nVecY = this.nJump; this.bGround = false; } else { this.nState = 3; this._y = this._y - this.nRiseSpeed; } } break; case 3 : if (this.bFall) { if (this._y > -1075) { this.nCool--; if (this.nCool <= 0) { this.bFall = false; if (this.bSSJ) { this.nCool = 40 + Math.floor(Math.random() * 40); } else { this.nCool = 80 + Math.floor(Math.random() * 50); } this.nState = 2; this.nVecY = this.nJump; this.bGround = false; } else if ((this.nCool % 5) == 0) { this.sendSopel(); } } else { this._y = this._y + this.nFallSpeed; if (this._y > -1075) { this._y = -1055; _root.game.shake(); snd.start(); } } } else { this._y = this._y - this.nRiseSpeed; if (this._y < -1480) { this._x = _root.player._x; this.bFall = true; } } break; case 4 : if (this.anim._currentframe == 39) { this.sendFire(); } else if (this.anim._currentframe >= this.anim._totalframes) { if (this.bSSJ) { this.gotoAndStop(3); } else { this.gotoAndStop(1); } this.nState = 1; } break; case 5 : if (!this.bGround) { this.nInvi = 0; this.anim.gotoAndPlay(1); } else if (this.anim._currentframe >= this.anim._totalframes) { this.bFall = false; this.bSSJ = true; this.gotoAndStop(3); this.nState = 1; } break; case 6 : if (!(this.bGround && (this.bRun))) { break; } this.bRun = false; delete this.onEnterFrame; _root.game.bosses--; if (_root.game.bosses == 0) { _root.game.heart._x = _root.game.boss1._x; _root.game.heart._y = _root.game.boss1._y - 30; } _root.game.b6block.unblock(); _root.game.b6plat1.spawn(); } } if (this.nState != 6) { if (this.nInvi <= 0) { if (this.hitTest(_root.player)) { if (((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) && (_root.player._y > (this._y + this.Y1))) { if (this.nState != 5) { this.hit(); } } } } if (this.testHit2(_root.player)) { _root.player.hit(); } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { if ((_local3.yMin + 20) > this._y) { this._y = _local3.yMin; this.bGround = true; return(true); } } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && (mc._y <= ((this._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { if (this.bSSJ) { this.nLife = 0; this.gotoAndStop(5); this.nState = 6; } else { this.nLife = 6; this.gotoAndStop(4); this.nState = 5; } } else { this.nInvi = 60; } } }; }
Instance of Symbol 1488 MovieClip "npc1" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function nextState() { nState++; } var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var nState = 0; } onClipEvent (enterFrame) { switch (nState) { case 0 : _root.showMessage("Hey! You there! To pass this level you need to kill TWO bosses AND return to the town behind me!", _root.game.npc1._x, _root.game.npc1._y - 25, _root.game.npc1.nextState); _root.player.bRun = false; nState++; break; case 2 : _root.showMessage(("You still got: " + _root.game.bosses) + " boss(es) to kill", _root.game.npc1._x, _root.game.npc1._y - 25, _root.game.npc1.nextState); nState++; break; case 4 : _root.player.bRun = true; nState++; } if ((this.nState > 3) && (this._visible)) { if (this.hitTest(_root.player)) { nState = 2; } } }
Instance of Symbol 1497 MovieClip "npc2" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function endLevel() { _root.endLevel(); } function doneRead() { bRead = false; } var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var bRead = false; } onClipEvent (enterFrame) { if (this._visible && (!bRead)) { if (this.hitTest(_root.player)) { if (_root.game.bosses > 0) { _root.showMessage("You want this cloud? HAHA! No way! IT IS MINE! You need to EARN for it!", _root.game.npc2._x + 55, _root.game.npc2._y + 40, _root.game.npc2.doneRead); bRead = true; } else { _root.showMessage("You want this cloud? OK! You had earned it! Nice work and... good luck!", _root.game.npc2._x + 55, _root.game.npc2._y + 40, _root.game.npc2.endLevel); _root.player.bRun = false; bRead = true; } } } }
Instance of Symbol 1506 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1515 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1506 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1524 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1531 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 75); var nRightX = (this._x + 75); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1515 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1506 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1524 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1531 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 600); var nRightX = (this._x + 600); if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1515 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1536 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1524 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1506 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1515 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1515 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1506 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1531 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1515 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 50); var nRightX = (this._x + 50); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1536 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 150); var nRightX = (this._x + 150); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 1565 MovieClip "boss1" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function sendBomb() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b7_bomb", "b7_bomb" + _local4, _local4); _local3._x = this._x + (this.nDir * 25); _local3._y = (this._y + (this.Y1 / 2)) - 5; _local3.dir = this.nDir * 2; _local3._xscale = -100 * this.nDir; _local3.cool = 50; _local3.gotoAndStop(1); _local3.onEnterFrame = function () { if (this._currentframe != 1) { if (this._currentframe >= this._totalframes) { _root.removeMovie(this); } } else { this.cool--; if (this.cool > 0) { this._x = this._x + this.dir; } else { this.gotoAndPlay(1); } } if (this.hitTest(_root.player)) { _root.player.hit(); } }; } function sendTencza() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("b7_tencza", "b7_tencza" + _local4, _local4); _local3._x = this._x + this.nDir; _local3._y = this._y + this.Y1; _local3._xscale = -100 * this.nDir; _local3._rotation = Math.atan2(_root.player._y - this._y, _root.player._y - this._x); _local3._rotation = (_local3._rotation / Math.PI) * 180; _local3.onEnterFrame = function () { if (this._currentframe >= this._totalframes) { _root.removeMovie(this); } if ((this._currentframe >= 28) && (this.hitTest(_root.player))) { _root.player.hit(); } }; } this.gotoAndStop(1); this.anim.gotoAndStop(1); this._xscale = 100; var nLeftX = 4420; var nRightX = 4950; var nSpeed = 6; var nDir = -1; var nCool = 100; var nInvi = 0; var nLife = 5; var bRun = false; var bGround = false; _root.attachHPBar(this); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; } if (!this.bGround) { this._y = this._y + 0.5; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { switch (this._currentframe) { case 1 : this.nCool--; if (this.anim._currentframe >= this.anim._totalframes) { if (this.nCool <= 0) { this.nCool = 30 + Math.floor(Math.random() * 50); } else { this.nDir = Math.floor(Math.random() * 3) - 1; if (this.nDir == 0) { this.nDir = ((this._x < _root.player._x) ? 1 : -1); this._xscale = -100 * this.nDir; this.gotoAndStop(1); this.anim.gotoAndPlay(1); } else { this._xscale = -100 * this.nDir; this.gotoAndStop(2); } } } break; case 2 : this._x = this._x + (this.nDir * this.nSpeed); if (this._x < this.nLeftX) { this.nDir = 1; this._xscale = -100; } else if (this._x > this.nRightX) { this.nDir = -1; this._xscale = 100; } this.nCool--; if (this.anim._currentframe >= this.anim._totalframes) { if (this.nCool <= 0) { if (Math.random() > 0.55) { this.nDir = ((this._x < _root.player._x) ? 1 : -1); this._xscale = -100 * this.nDir; this.nCool = 30 + Math.floor(Math.random() * 50); this.gotoAndStop(Math.floor(Math.random() * 2) + 5); } else { this.nDir = Math.floor(Math.random() * 3) - 1; if (this.nDir == -1) { this._xscale = 100; this.gotoAndStop(2); } if (this.nDir == 1) { this._xscale = -100; this.gotoAndStop(2); } else { this.nDir = ((this._x < _root.player._x) ? 1 : -1); this._xscale = -100 * this.nDir; this.gotoAndStop(5); } } } } break; case 3 : if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 4 : this.bRun = false; delete this.onEnterFrame; _root.game.bosses--; if (_root.game.bosses == 0) { _root.game.heart._x = _root.game.boss2._x; _root.game.heart._y = _root.game.boss2._y - 30; } _root.game.b7plat1.spawn(); _root.game.b7plat2.spawn(); _root.game.b7plat3.spawn(); break; case 5 : if (this.anim._currentframe == 15) { this.sendBomb(); } else if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } break; case 6 : if (this.anim._currentframe == 15) { this.sendTencza(); } else { if (this.anim._currentframe < this.anim._totalframes) { break; } this.gotoAndStop(1); } } } if (this.nInvi <= 0) { if (this.hitTest(_root.player)) { if (((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) && (_root.player._y > (this._y + this.Y1))) { this.hit(); } } } if (this.testHit2(_root.player)) { _root.player.hit(); } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { if ((_local3.yMin + 20) > this._y) { this._y = _local3.yMin; this.bGround = true; return(true); } } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && (mc._y <= ((this._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; if (this.nLife <= 0) { this.nLife = 0; this.gotoAndStop(4); } else { this.nInvi = 60; if ((this._currentframe == 1) || (this._currentframe == 2)) { this.gotoAndStop(3); } } } }; }
Instance of Symbol 785 MovieClip "b6block" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function block() { this._x = 3888; this._y = -1382; } function unblock() { this._x = 3800; this._y = -1680; } _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); } onClipEvent (enterFrame) { bound = par.getBounds(_root.game); }
Instance of Symbol 1568 MovieClip "b6plat1" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function spawn() { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var _local3 = (this.bound.xMin + this.bound.xMax) / 2; var _local4 = (this.bound.yMin + this.bound.yMax) / 2; this.gotoAndPlay(1); this._visible = true; } this._visible = false; this.gotoAndStop(1); }
Instance of Symbol 1568 MovieClip "b7plat1" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function spawn() { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var _local3 = (this.bound.xMin + this.bound.xMax) / 2; var _local4 = (this.bound.yMin + this.bound.yMax) / 2; this.gotoAndPlay(1); this._visible = true; } this._visible = false; this.gotoAndStop(1); }
Instance of Symbol 1568 MovieClip "b7plat2" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function spawn() { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var _local3 = (this.bound.xMin + this.bound.xMax) / 2; var _local4 = (this.bound.yMin + this.bound.yMax) / 2; this.gotoAndPlay(1); this._visible = true; } this._visible = false; this.gotoAndStop(1); }
Instance of Symbol 1568 MovieClip "b7plat3" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { function spawn() { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var _local3 = (this.bound.xMin + this.bound.xMax) / 2; var _local4 = (this.bound.yMin + this.bound.yMax) / 2; this.gotoAndPlay(1); this._visible = true; } this._visible = false; this.gotoAndStop(1); }
Instance of Symbol 182 MovieClip [Heart] in Symbol 1599 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.nSecrets++; _root.nLife++; _root.removeMovie(this); } }
Instance of Symbol 182 MovieClip [Heart] "heart" in Symbol 1599 MovieClip Frame 1
onClipEvent (enterFrame) { if (this.hitTest(_root.player)) { _root.nSecrets++; _root.nLife++; _root.removeMovie(this); } }
Instance of Symbol 1570 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1574 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1576 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1578 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1580 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1582 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1584 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1588 MovieClip "mountaintop" in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var fText1 = function () { _root.showMessage("...", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.mountaintop.fText2); }; var fText2 = function () { _root.showMessage("...", _root.game.boss2._x - 10, (_root.game.boss2._y - (_root.game.boss2._height / 2)) - 10, _root.game.mountaintop.fText3); }; var fText3 = function () { _root.showMessage("I suppose you're a gigantic high boot that is going to attack me?", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.mountaintop.fText4); }; var fText4 = function () { _root.showMessage("Yup", _root.game.boss2._x - 10, (_root.game.boss2._y - (_root.game.boss2._height / 2)) - 10, _root.game.mountaintop.fText5); }; var fText5 = function () { _root.showMessage("And how are you going to do that? You're just a shoe... why am I talking with you anyway.", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.mountaintop.fText6); }; var fText6 = function () { _root.showMessage("I'll crush you like a bug.", _root.game.boss2._x - 10, (_root.game.boss2._y - (_root.game.boss2._height / 2)) - 10, _root.game.mountaintop.fEnd); }; var fEnd = function () { _root.player.bRun = true; _root.game.boss2.bRun = true; _root.game.boss2.anim.play(); }; var bBoss2 = false; } onClipEvent (enterFrame) { if (!this.bBoss2) { if (((this._x + _root.game._x) < 550) && (_root.player._y < -1047)) { this.bBoss2 = true; _root.game.b6block.block(); _root.bAllowAttack = true; _root.player.bRun = false; this.fText1(); } } }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1594 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1596 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1598 MovieClip in Symbol 1599 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1616 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 0.5); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 0.5; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = _root.game.player._x + this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1619 MovieClip "player" in Symbol 1620 MovieClip Frame 1
onClipEvent (load) { var a = 0; _root.player = this; } onClipEvent (enterFrame) { a = a + 0.04; if (a > (Math.PI*2)) { a = a - (Math.PI*2); } this._y = this._y + (Math.sin(a) / 2); if (_root.bAllowAttack) { if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } if (_root.BG._x > ((-_root.BG._width) + Stage.width)) { _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); } } }
Symbol 1631 MovieClip Frame 20
stop(); _visible = false; _root.keypad.nextState();
Symbol 1635 MovieClip Frame 20
stop(); _visible = false; _root.keypad.nextState();
Instance of Symbol 1615 MovieClip in Symbol 1636 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 1); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 1; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1636 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 1); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 1; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1636 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 1); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 1; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1636 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 1); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 1; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1636 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 1); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 1; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1636 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 1); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 1; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = this._width; this._y = Stage.height * Math.random(); } }
Instance of Symbol 1615 MovieClip in Symbol 1636 MovieClip Frame 1
onClipEvent (load) { var r = (Math.random() + 1); this._xscale = this._xscale * this.r; this._yscale = this._yscale * this.r; this.r = this.r * 5; } onClipEvent (enterFrame) { this._x = this._x - this.r; if (this._x <= (-this._width)) { this.r = Math.random() + 1; this._xscale = 100 * this.r; this._yscale = 100 * this.r; this.r = this.r * 5; this._x = this._width; this._y = Stage.height * Math.random(); } }
Symbol 1665 MovieClip Frame 1
this.snd.start();
Symbol 1665 MovieClip Frame 100
this.snd.start();
Symbol 1742 MovieClip Frame 38
stop();
Symbol 1749 MovieClip Frame 1
var X1 = -10; var X2 = 11; var Y1 = -42; var Y2 = 0;
Symbol 1808 MovieClip Frame 36
stop();
Symbol 1819 MovieClip Frame 1
var X1 = -9; var X2 = 11; var Y1 = -42; var Y2 = 0;
Symbol 1827 MovieClip Frame 1
var bStartTalk = false; var nLeftX = 140; var nRightX = 1982; var aFPlats = new Array(8); this.aFPlats[0] = _root.game.plat1; this.aFPlats[1] = _root.game.plat2; this.aFPlats[2] = _root.game.plat3; this.aFPlats[3] = _root.game.plat4; this.aFPlats[4] = _root.game.plat5; this.aFPlats[5] = _root.game.plat6; this.aFPlats[6] = _root.game.plat7; this.aFPlats[7] = _root.game.ground;
Instance of Symbol 1638 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1638 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1640 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { a = a + 0.1; if (a > this.PI2) { a = a - this.PI2; } this._y = sy + (Math.sin(a) * 10); }
Instance of Symbol 1640 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { a = a + 0.1; if (a > this.PI2) { a = a - this.PI2; } this._y = sy + (Math.sin(a) * 10); }
Instance of Symbol 1640 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { a = a + 0.1; if (a > this.PI2) { a = a - this.PI2; } this._y = sy + (Math.sin(a) * 10); }
Instance of Symbol 1640 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { a = a + 0.1; if (a > this.PI2) { a = a - this.PI2; } this._y = sy + (Math.sin(a) * 10); }
Instance of Symbol 1665 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var snd = new Sound(this); snd.attachSound("spark"); snd.setVolume((1 - (Math.abs(_root.player._x - this._x) / 1800)) * 70); } onClipEvent (enterFrame) { snd.setVolume((1 - (Math.abs(_root.player._x - this._x) / 1800)) * 70); }
Instance of Symbol 1665 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { this.gotoAndPlay(45); var snd = new Sound(this); snd.attachSound("spark"); snd.setVolume((1 - (Math.abs(_root.player._x - this._x) / 1800)) * 70); } onClipEvent (enterFrame) { snd.setVolume((1 - (Math.abs(_root.player._x - this._x) / 1800)) * 70); }
Instance of Symbol 1668 MovieClip "ground" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var aPlatNear = new Array(2); this.aPlatNear[0] = _root.game.plat3; this.aPlatNear[1] = _root.game.plat6; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1676 MovieClip "plat3" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var aPlatNear = new Array(3); this.aPlatNear[0] = _root.game.plat1; this.aPlatNear[1] = _root.game.plat4; this.aPlatNear[2] = _root.game.ground; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { this.bound = this.par.getBounds(_root.game); this.a = this.a + 0.1; if (this.a > this.PI2) { this.a = this.a - this.PI2; } this._y = this.sy + (Math.sin(this.a) * 5); }
Instance of Symbol 1676 MovieClip "plat1" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var aPlatNear = new Array(2); this.aPlatNear[0] = _root.game.plat2; this.aPlatNear[1] = _root.game.plat3; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { this.bound = this.par.getBounds(_root.game); this.a = this.a + 0.1; if (this.a > this.PI2) { this.a = this.a - this.PI2; } this._y = this.sy + (Math.sin(this.a) * 5); }
Instance of Symbol 1676 MovieClip "plat6" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var aPlatNear = new Array(3); this.aPlatNear[0] = _root.game.plat4; this.aPlatNear[1] = _root.game.plat7; this.aPlatNear[2] = _root.game.ground; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { this.bound = this.par.getBounds(_root.game); this.a = this.a + 0.1; if (this.a > this.PI2) { this.a = this.a - this.PI2; } this._y = this.sy + (Math.sin(this.a) * 5); }
Instance of Symbol 1676 MovieClip "plat4" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var aPlatNear = new Array(4); this.aPlatNear[0] = _root.game.plat2; this.aPlatNear[1] = _root.game.plat3; this.aPlatNear[2] = _root.game.plat5; this.aPlatNear[3] = _root.game.plat6; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { this.bound = this.par.getBounds(_root.game); this.a = this.a + 0.1; if (this.a > this.PI2) { this.a = this.a - this.PI2; } this._y = this.sy + (Math.sin(this.a) * 5); }
Instance of Symbol 1676 MovieClip "plat7" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var aPlatNear = new Array(2); this.aPlatNear[0] = _root.game.plat5; this.aPlatNear[1] = _root.game.plat6; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { this.bound = this.par.getBounds(_root.game); this.a = this.a + 0.1; if (this.a > this.PI2) { this.a = this.a - this.PI2; } this._y = this.sy + (Math.sin(this.a) * 5); }
Instance of Symbol 1676 MovieClip "plat5" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var aPlatNear = new Array(2); this.aPlatNear[0] = _root.game.plat4; this.aPlatNear[1] = _root.game.plat7; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { this.bound = this.par.getBounds(_root.game); this.a = this.a + 0.1; if (this.a > this.PI2) { this.a = this.a - this.PI2; } this._y = this.sy + (Math.sin(this.a) * 5); }
Instance of Symbol 1676 MovieClip "plat2" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var aPlatNear = new Array(2); this.aPlatNear[0] = _root.game.plat1; this.aPlatNear[1] = _root.game.plat4; _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var PI2 = (Math.PI*2); var a = (Math.random() * this.PI2); var sy = this._y; this.gem.gotoAndPlay(Math.floor(Math.random() * 30) + 1); } onClipEvent (enterFrame) { this.bound = this.par.getBounds(_root.game); this.a = this.a + 0.1; if (this.a > this.PI2) { this.a = this.a - this.PI2; } this._y = this.sy + (Math.sin(this.a) * 5); }
Instance of Symbol 1749 MovieClip "boss1" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { function findNextPlat(mcTar) { this.nBreak = 10; this.bFind = true; this.aTargets = new Array(); if ((mcTar == null) || (mcTar == undefined)) { this.r = random(_root.game.aFPlats.length); this.aTargets[0] = _root.game.aFPlats[this.r]; } else { this.aTargets[0] = mcTar; } this.nCurTar = -1; while (this.bFind) { this.nBreak--; if (this.nBreak <= 0) { break; } this.nDist = 0; this.nCurTar++; this.aCurAr = this.aTargets[this.nCurTar].aPlatNear; this.i = 0; while (this.i < this.aCurAr.length) { if (this.aCurAr[this.i] == this.mcGround) { this.bFind = false; break; } this.nTmp = Math.sqrt(Math.pow(this.aCurAr[this.i].xCen - this._x, 2) + Math.pow(this.aCurAr[this.i].yCen - this._y, 2)); this.nTmp = this.nTmp + Math.sqrt(Math.pow(this.aCurAr[this.i].xCen - this.aTargets[this.nCurTar].xCen, 2) + Math.pow(this.aCurAr[this.i].yCen - this.aTargets[this.nCurTar].yCen, 2)); if ((this.nDist > this.nTmp) || (this.nDist == 0)) { this.nDist = this.nTmp; this.aTargets[this.nCurTar + 1] = this.aCurAr[this.i]; } this.i++; } } this.nDir = (this.aTargets[this.nCurTar].xCen > this._x) + (-(this.aTargets[this.nCurTar].xCen < this._x)); if (this.nDir != 0) { this._xscale = this.nDir * -100; } } function findNearPlat() { this.r = random(this.mcGround.aPlatNear.length); this.aTargets[0] = this.mcGround.aPlatNear[this.r]; while (_root.player.mcChild == this.aTargets[0]) { this.r = random(this.mcGround.aPlatNear.length); this.aTargets[0] = this.mcGround.aPlatNear[this.r]; } this.nDir = (this.aTargets[0].xCen > this._x) + (-(this.aTargets[0].xCen < this._x)); if (this.nDir != 0) { this._xscale = this.nDir * -100; } } function inArray(a, mc) { this.j = 0; while (this.j < this.a.length) { if (this.mc == this.a[this.j]) { return(true); } this.j++; } return(false); } function checkGround() { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; for (sIter in _root.aPlates) { this.oTmp = _root.aPlates[this.sIter].box.getBounds(_root.game); if ((this._y >= this.oTmp.yMin) && (this._y <= this.oTmp.yMax)) { if ((this._x >= this.oTmp.xMin) && (this._x <= this.oTmp.xMax)) { this.gotoAndStop(2); this._y = this.oTmp.yMin; this.nLeftX = this.oTmp.xMin; this.nRightX = this.oTmp.xMax; this.mcGround = _root.aPlates[this.sIter]; this.bGround = true; if (this.nCurTar > 0) { if (this.aTargets[this.nCurTar] == this.mcGround) { this.nCurTar--; } this.nTmp = (this.aTargets[this.nCurTar].bound.xMin + this.aTargets[this.nCurTar].bound.xMax) / 2; this.nDir = (this.nTmp > this._x) + (-(this.nTmp < this._x)); if (this.nDir != 0) { this._xscale = this.nDir * -100; } } else { this.nDir = 0; } break; } } } } function talk(n) { if (this.bToAnswer || (_root.game.boss2.nLife <= 0)) { return(undefined); } var _local3 = random(this.aChat[n].length); _root.chat.send4as(this.aChat[n][_local3], n, _local3); this.nTalked = this.nTalkedTime; } function answer(n, m) { this.bToAnswer = false; if (((this.aChat[n + 1][m] == "") || (this.aChat[n + 1][m] == undefined)) || (this.aChat[n + 1][m] == null)) { return(undefined); } _root.chat.send4as2(this.aChat[n + 1][m]); this.nTalked = this.nTalkedTime; } function doInvi() { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; } else if (this._currentframe != 5) { if (this.hitTest(_root.player)) { if (((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) && (_root.player._y > (this._y + this.Y1))) { this.hit(); } } } } function sendFire() { var _local4 = _root.game.getNextHighestDepth(); var _local3 = _root.game.attachMovie("bf1_fire", "bf1_fire" + _local4, _local4); _local3._x = this._x - 20; _local3._y = this._y + (this.Y1 / 1.8); _local3.dir = (-(this._xscale / 100)) * 7; _local3._xscale = -100 * (this._xscale / 100); _local3.onEnterFrame = function () { if ((this._x < _root.game.nLeftX) || (this._x > _root.game.nRightX)) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; _local4 = _root.game.getNextHighestDepth(); _local3 = _root.game.attachMovie("bf1_fire", "bf1_fire" + _local4, _local4); _local3._x = this._x + 20; _local3._y = this._y + (this.Y1 / 1.8); _local3.dir = (this._xscale / 100) * 7; _local3._xscale = 100 * (this._xscale / 100); _local3.onEnterFrame = function () { if ((this._x < _root.game.nLeftX) || (this._x > _root.game.nRightX)) { _root.removeMovie(this); } this._x = this._x + this.dir; if ((this._x > (_root.player._x + _root.player.X1)) && (this._x < (_root.player._x + _root.player.X2))) { if ((this._y > (_root.player._y + _root.player.Y1)) && (this._y < (_root.player._y + _root.player.Y2))) { _root.player.hit(); } } }; } this.gotoAndStop(6); this.anim.gotoAndStop(1); this._xscale = 100; _root.attachHPBar(this); var aChat = new Array(10); this.aChat[0] = new Array(3); this.aChat[0][0] = "So, what do we do?"; this.aChat[0][1] = "Whats the plan?"; this.aChat[0][2] = "Let's fall back for now!"; this.aChat[1] = new Array(3); this.aChat[1][0] = "Lets prepare our attacks"; this.aChat[1][1] = "Uh, whatever"; this.aChat[1][2] = "Improvise!"; this.aChat[2] = new Array(3); this.aChat[2][0] = "He's mine!"; this.aChat[2][1] = "Where is he?!"; this.aChat[2][2] = "Burn!"; this.aChat[3] = new Array(3); this.aChat[4] = new Array(3); this.aChat[4][0] = "I'll secure the bottom!"; this.aChat[4][1] = "I'M READY!"; this.aChat[4][2] = "I'll sweep the bottom!"; this.aChat[5] = new Array(3); this.aChat[6] = new Array(3); this.aChat[6][0] = "Anything good on TV today?"; this.aChat[6][1] = "You're ready or what?"; this.aChat[6][2] = "All that running away makes me hungry"; this.aChat[7] = new Array(3); this.aChat[7][0] = "Oh, STFU! The game is fine!"; this.aChat[7][1] = "Almost ready"; this.aChat[7][2] = "...like, tell him youself?"; this.aChat[8] = new Array(3); this.aChat[8][0] = "Ow!"; this.aChat[8][1] = "Look here Strife! I took it like a MAN!"; this.aChat[8][2] = "I'm okay!"; this.aChat[9] = new Array(3); this.aChat[9][0] = "Geez, take it like a MAN!"; this.aChat[9][1] = "lol?"; this.aChat[9][2] = "Too much sausage"; var sIter; var oTmp; var mcGround; var aTargets; var i; var j; var bRun = false; var nRelease = 100; var nKillerRe = 1000; var nAwake = 30; var nLeftX = -2482; var nRightX = -1982; var nDir = -1; var nJumpVec = 14; var nSmallJumpVec = 2; var nTalkedTime = 90; var bGround = false; var nSpeed = 14; var nKiller = 0; var nLife = 7; var nInvi = 0; var nMode = 2; var nVecY = 0; var nDist = 0; var nCurTar = 0; var nCharge = 0; var nCooldown = 0; var nTalked = 0; var nRunTalk = (30 + random(60)); var bToAnswer = false; var nTmp; var bFind; var aCurAr; var r; var nBreak = 10; this.onEnterFrame = function () { if (_root.bDebugBox) { _root.tfDebug.text = ((((((" m: " + this.nMode) + " ch: ") + this.nCharge) + " col: ") + this.nCooldown) + " kill:") + this.nKiller; } if (this.bRun) { if (!this.bGround) { this.gotoAndStop(3); if ((this._x < (this.aTargets[this.nCurTar].xCen - 10)) || (this._x > (this.aTargets[this.nCurTar].xCen + 10))) { this._x = this._x + (this.nSpeed * this.nDir); } this.checkGround(); } else { this.oTmp = this.mcGround.box.getBounds(_root.game); this._y = this.oTmp.yMin; if (this.nDir > 0) { this._x = this._x + this.nSpeed; if (((this.aTargets[this.nCurTar].bound.xMin - this._x) < 100) || (this._x > this.nRightX)) { this.bGround = false; if (this.aTargets[this.nCurTar]._y < this._y) { this.nVecY = -this.nJumpVec; } else { this.nVecY = -this.nSmallJumpVec; } } } else if (this.nDir < 0) { this._x = this._x - this.nSpeed; if (((this._x - this.aTargets[this.nCurTar].bound.xMax) < 100) || (this._x < this.nLeftX)) { this.bGround = false; if (this.aTargets[this.nCurTar]._y < this._y) { this.nVecY = -this.nJumpVec; } else { this.nVecY = -this.nSmallJumpVec; } } } } if (this._currentframe != 6) { switch (this.nMode) { case 0 : this.nKiller++; if (this.nKiller > this.nKillerRe) { this.nCharge = 0; this.nCooldown = 0; this.nMode = 1; this.findNextPlat(_root.game.ground); this.talk(4); } if (this.bGround) { if (this.nDir == 0) { if ((this.aTargets[0] == this.mcGround) || (this.mcGround == _root.player.mcChild)) { if (this.nCharge > this.nRelease) { if (this._currentframe != 7) { this.gotoAndStop(7); } else if (this.anim._currentframe >= this.anim._totalframes) { this.nCharge = 0; this.nCooldown = 0; this.gotoAndStop(1); } else { if (this.anim._currentframe == 8) { this.sendFire(); } if (this.anim._currentframe == 18) { this.sendFire(); } if (this.anim._currentframe == 28) { this.sendFire(); } } } else if (this.nCooldown >= this.nAwake) { this.nMode = 2; this.findNextPlat(); } else { this.nCooldown++; } } } } break; case 1 : if (this.bGround) { if (this.nDir == 0) { if ((this.aTargets[0] == this.mcGround) || (this.mcGround == _root.game.ground)) { if (this.nKiller > this.nKillerRe) { if (this._currentframe != 8) { this.gotoAndStop(8); } else if (this.anim._currentframe >= this.anim._totalframes) { this.nCharge = 0; this.nKiller = 0; this.nCooldown = 0; this.gotoAndStop(1); } else if ((this.anim._currentframe % 10) == 0) { this.sendFire(); } } else if (this.nCooldown >= this.nAwake) { this.nMode = 2; this.findNextPlat(); } else { this.nCooldown++; } } else { this.findNextPlat(_root.game.ground); } } } break; case 2 : this.nRunTalk--; this.nKiller++; if (this.nKiller > this.nKillerRe) { this.nCharge = 0; this.nCooldown = 0; this.nMode = 1; this.findNextPlat(_root.game.ground); this.talk(4); } if (!this.bGround) { break; } if (this.nRunTalk < 0) { this.nRunTalk = 60 + random(120); if (_root.game.bStartTalk) { if (Math.random() > 0.5) { this.talk(6); } } else { this.talk(0); _root.game.bStartTalk = true; } } if (this.nTalked > 0) { this.nTalked--; } else { if (this.nDir != 0) { break; } this.nCharge++; if (this.nCharge > this.nRelease) { this.findNextPlat(_root.player.mcChild); this.nMode = 0; this.talk(2); } this.gotoAndStop(1); } } } if (!(this._currentframe === 6)) { } else if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); this.findNextPlat(); } } else { this._y = this._y + 2; for (sIter in _root.aPlates) { this.oTmp = _root.aPlates[sIter].box.getBounds(_root.game); if ((this._y >= this.oTmp.yMin) && (this._y <= this.oTmp.yMax)) { if ((this._x >= this.oTmp.xMin) && (this._x <= this.oTmp.xMax)) { this._y = this.oTmp.yMin; this.nLeftX = this.oTmp.xMin; this.nRightX = this.oTmp.xMax; this.bGround = true; this.mcGround = _root.aPlates[sIter]; break; } } } } this.doInvi(); if (this._currentframe != 5) { if ((_root.player._x >= (this._x + this.X1)) && (_root.player._x <= (this._x + this.X2))) { if ((_root.player._y >= (this._y + this.Y1)) && (_root.player._y <= ((this._y + this.Y2) - _root.player.Y1))) { _root.player.hit(); } } } }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; this.talk(8); if ((this.nMode == 2) && (this.nDir == 0)) { this.findNearPlat(); } if (this.nLife <= 0) { this.nLife = 0; this.gotoAndStop(5); this.bRun = false; if (_root.game.boss2.nLife <= 0) { _root.player.bRun = false; if (_root.nLevelsDone >= 8) { _root.endGame(14); } else { _root.endGame(14, 8); } } } else { this.nInvi = 60; if ((this._currentframe == 1) || (this._currentframe == 2)) { this.gotoAndStop(4); } } } }; }
Instance of Symbol 785 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1819 MovieClip "boss2" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { function findNextPlat(mcTar) { this.nBreak = 10; this.bFind = true; this.aTargets = new Array(); if ((mcTar == null) || (mcTar == undefined)) { this.r = random(_root.game.aFPlats.length); this.aTargets[0] = _root.game.aFPlats[this.r]; } else { this.aTargets[0] = mcTar; } this.nCurTar = -1; while (this.bFind) { this.nBreak--; if (this.nBreak <= 0) { break; } this.nDist = 0; this.nCurTar++; this.aCurAr = this.aTargets[this.nCurTar].aPlatNear; this.i = 0; while (this.i < this.aCurAr.length) { if (this.aCurAr[this.i] == this.mcGround) { this.bFind = false; break; } this.nTmp = Math.sqrt(Math.pow(this.aCurAr[this.i].xCen - this._x, 2) + Math.pow(this.aCurAr[this.i].yCen - this._y, 2)); this.nTmp = this.nTmp + Math.sqrt(Math.pow(this.aCurAr[this.i].xCen - this.aTargets[this.nCurTar].xCen, 2) + Math.pow(this.aCurAr[this.i].yCen - this.aTargets[this.nCurTar].yCen, 2)); if ((this.nDist > this.nTmp) || (this.nDist == 0)) { this.nDist = this.nTmp; this.aTargets[this.nCurTar + 1] = this.aCurAr[this.i]; } this.i++; } } this.nDir = (this.aTargets[this.nCurTar].xCen > this._x) + (-(this.aTargets[this.nCurTar].xCen < this._x)); if (this.nDir != 0) { this._xscale = this.nDir * -100; } } function findNearPlat() { this.r = random(this.mcGround.aPlatNear.length); this.aTargets[0] = this.mcGround.aPlatNear[this.r]; while (_root.player.mcChild == this.aTargets[0]) { this.r = random(this.mcGround.aPlatNear.length); this.aTargets[0] = this.mcGround.aPlatNear[this.r]; } this.nDir = (this.aTargets[0].xCen > this._x) + (-(this.aTargets[0].xCen < this._x)); if (this.nDir != 0) { this._xscale = this.nDir * -100; } } function inArray(a, mc) { this.j = 0; while (this.j < this.a.length) { if (this.mc == this.a[this.j]) { return(true); } this.j++; } return(false); } function checkGround() { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; for (sIter in _root.aPlates) { this.oTmp = _root.aPlates[this.sIter].box.getBounds(_root.game); if ((this._y >= this.oTmp.yMin) && (this._y <= this.oTmp.yMax)) { if ((this._x >= this.oTmp.xMin) && (this._x <= this.oTmp.xMax)) { this.gotoAndStop(2); this._y = this.oTmp.yMin; this.nLeftX = this.oTmp.xMin; this.nRightX = this.oTmp.xMax; this.mcGround = _root.aPlates[this.sIter]; this.bGround = true; if (this.nCurTar > 0) { if (this.aTargets[this.nCurTar] == this.mcGround) { this.nCurTar--; } this.nTmp = (this.aTargets[this.nCurTar].bound.xMin + this.aTargets[this.nCurTar].bound.xMax) / 2; this.nDir = (this.nTmp > this._x) + (-(this.nTmp < this._x)); if (this.nDir != 0) { this._xscale = this.nDir * -100; } } else { this.gotoAndStop(1); this.nDir = 0; } break; } } } } function talk(n) { if (this.bToAnswer || (_root.game.boss1.nLife <= 0)) { return(undefined); } var _local3 = random(this.aChat[n].length); _root.chat.sendStrife(this.aChat[n][_local3], n, _local3); this.nTalked = this.nTalkedTime; } function answer(n, m) { this.bToAnswer = false; if (((this.aChat[n + 1][m] == "") || (this.aChat[n + 1][m] == undefined)) || (this.aChat[n + 1][m] == null)) { return(undefined); } _root.chat.sendStrife2(this.aChat[n + 1][m]); this.nTalked = this.nTalkedTime; } function doInvi() { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; } else if (this._currentframe != 5) { if (this.hitTest(_root.player)) { if (((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) && (_root.player._y > (this._y + this.Y1))) { this.hit(); } } } } function sendSlash() { this.bSlashing = true; this._x = _root.game.bf2_laser.tx; this._y = _root.game.bf2_laser.ty; this.nDir = 0; this._xscale = ((_root.player._x > this._x) + (-(_root.player._x < this._x))) * -100; if (this._xscale == 0) { this._xscale = 100; } } this.gotoAndStop(6); this.anim.gotoAndStop(1); this._xscale = 100; _root.attachHPBar(this); var aChat = new Array(10); this.aChat[0] = new Array(3); this.aChat[0][0] = "What do we do?"; this.aChat[0][1] = "Strategic retreat!"; this.aChat[0][2] = "How de we take him out?"; this.aChat[1] = new Array(3); this.aChat[1][0] = "Lets observe the situation for now"; this.aChat[1][1] = "Let me think..."; this.aChat[1][2] = "OK OK..."; this.aChat[2] = new Array(3); this.aChat[2][0] = "My sword seems to be geting rusty"; this.aChat[2][1] = "Cut! Cut! Cut!"; this.aChat[2][2] = "It is choping time"; this.aChat[3] = new Array(3); this.aChat[4] = new Array(3); this.aChat[4][0] = "Yo, I'm taking the top!"; this.aChat[4][1] = "I'M READY!"; this.aChat[4][2] = "I'll make it rain with blood!"; this.aChat[5] = new Array(3); this.aChat[6] = new Array(3); this.aChat[6][0] = "I think I found a bug! And while you're at it, you should change..."; this.aChat[6][1] = "How's powering-up going?"; this.aChat[6][2] = "Tell him to leave me alone! I'm not ready yet!"; this.aChat[7] = new Array(3); this.aChat[7][0] = "Dunno, I don't watch TV"; this.aChat[7][1] = "Almost!"; this.aChat[7][2] = "... damn, now I'm hungry too"; this.aChat[8] = new Array(3); this.aChat[8][0] = "WTF?! H4X0R!"; this.aChat[8][1] = "...aw?"; this.aChat[8][2] = "uh... oh... blood! *faints*"; this.aChat[9] = new Array(3); this.aChat[9][0] = "Almost like pain, eh?"; this.aChat[9][1] = "Well, I'm sorry! At least I dont play as girls in MMORPGs!"; this.aChat[9][2] = "Right, you can live without an eye"; var snd = new Sound(this); snd.attachSound("gone"); var sIter; var oTmp; var mcGround; var aTargets; var i; var j; var bRun = false; var nRelease = 100; var nKillerRe = 1000; var nKillerCool = 160; var nAwake = 30; var nLeftX = -2482; var nRightX = -1982; var nDir = -1; var nJumpVec = 14; var nSmallJumpVec = 2; var nTalkedTime = 90; var bGround = false; var nSpeed = 14; var nKiller = 0; var nKillerCharge = 0; var nLife = 7; var nInvi = 0; var nMode = 2; var nVecY = 0; var nDist = 0; var nCurTar = 0; var nCharge = 0; var nCooldown = 0; var bToAnswer = false; var bSlashing = false; var nTalked = 0; var nRunTalk = (30 + random(60)); var nTmp; var bFind; var aCurAr; var r; var nBreak = 10; this.onEnterFrame = function () { if (_root.bDebugBox) { _root.tfDebug.text = ((((((" m: " + this.nMode) + " ch: ") + this.nCharge) + " col: ") + this.nCooldown) + " kill:") + this.nKiller; } if (this.bRun) { if (!this.bGround) { this.gotoAndStop(3); if ((this._x < ((this.aTargets[this.nCurTar].xCen + (20 * (this.aTargets[this.nCurTar] == _root.game.boss2.mcGround))) - 10)) || (this._x > ((this.aTargets[this.nCurTar].xCen - (20 * (this.aTargets[this.nCurTar] == _root.game.boss2.mcGround))) + 10))) { this._x = this._x + (this.nSpeed * this.nDir); } this.checkGround(); } else if (!this.bSlashing) { this.oTmp = this.mcGround.box.getBounds(_root.game); this._y = this.oTmp.yMin; if (this.nMode != 0) { if (this.nDir > 0) { this._x = this._x + this.nSpeed; if (((this.aTargets[this.nCurTar].bound.xMin - this._x) < 100) || (this._x > this.nRightX)) { this.bGround = false; if (this.aTargets[this.nCurTar]._y < this._y) { this.nVecY = -this.nJumpVec; } else { this.nVecY = -this.nSmallJumpVec; } } } else if (this.nDir < 0) { this._x = this._x - this.nSpeed; if (((this._x - this.aTargets[this.nCurTar].bound.xMax) < 100) || (this._x < this.nLeftX)) { this.bGround = false; if (this.aTargets[this.nCurTar]._y < this._y) { this.nVecY = -this.nJumpVec; } else { this.nVecY = -this.nSmallJumpVec; } } } } else { this._x = this._x + (this.nSpeed * this.nDir); } } if (this._currentframe != 6) { switch (this.nMode) { case 0 : this.nKiller++; if (this.nKiller > this.nKillerRe) { this.nCharge = 0; this.nCooldown = 0; this.nMode = 1; this.bGround = true; this.mcGround = _root.game.plat4; _root.removeMovie(_root.game.bf2_laser); this._x = this.mcGround.xCen; this._y = this.mcGround.bound.yMin - 300; this.talk(4); } if (this.bGround) { if (this.nDir == 0) { if (this.nCharge > this.nRelease) { if (this._currentframe != 7) { _root.game.attachMovie("bf2_laser", "bf2_laser", _root.game.getNextHighestDepth()); _root.game.bf2_laser._x = this._x; _root.game.bf2_laser._y = this._y + this.Y1; this.gotoAndStop(7); } else if (this.anim._currentframe >= this.anim._totalframes) { this.nCharge = 0; this.nCooldown = 0; this.bGround = false; this.bSlashing = false; this.nDir = 0; this.nCurTar = 0; this.gotoAndStop(3); } else if (this.anim._currentframe < 20) { this.nTmp = Math.atan2((_root.player._y - 20) - _root.game.bf2_laser._y, _root.player._x - _root.game.bf2_laser._x); _root.game.bf2_laser._rotation = (this.nTmp / Math.PI) * 180; _root.game.bf2_laser.tx = _root.player._x; _root.game.bf2_laser.ty = _root.player._y; } else if (this.anim._currentframe == 28) { this.sendSlash(); _root.removeMovie(_root.game.bf2_laser); } else if (this.anim._currentframe > 28) { this._x = this._x + ((-this._xscale) / 10); } } else if (this.nCooldown >= this.nAwake) { this.nMode = 2; this.findNextPlat(); } else { this.nCooldown++; } } } break; case 1 : if (this.bGround) { if (this.nKiller > this.nKillerRe) { this.nKillerCharge++; if (this._currentframe == 8) { if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); } else { this._x = this._x + ((-this._xscale) / 10); } } else if (this.nKillerCharge > this.nKillerCool) { this.nCharge = 0; this.nKillerCharge = 0; this.nKiller = 0; this.nCooldown = 0; this.bGround = false; this.gotoAndStop(1); } else if (this.mcGround != _root.player.mcChild) { this.gotoAndStop(1); this._x = this.mcGround.xCen; this.r = random(3); switch (this.r) { case 0 : this.snd.setPan(-100); this.snd.start(); this.mcGround = _root.game.plat2; break; case 1 : this.snd.setPan(0); this.snd.start(); this.mcGround = _root.game.plat4; break; case 2 : this.snd.setPan(100); this.snd.start(); this.mcGround = _root.game.plat5; } } else { this.gotoAndStop(8); this._x = this.mcGround.xCen; this.nDir = 0; this._xscale = ((_root.player._x > this._x) + (-(_root.player._x < this._x))) * -100; if (this._xscale == 0) { this._xscale = 100; } } } else if (this.nCooldown >= this.nAwake) { this.nMode = 2; this.findNextPlat(); } else { this.nCooldown++; } } break; case 2 : this.nRunTalk--; this.nKiller++; if (this.nKiller > this.nKillerRe) { this.nCharge = 0; this.nCooldown = 0; this.nMode = 1; this.bGround = true; this.mcGround = _root.game.plat4; this._x = this.mcGround.xCen; this._y = this.mcGround.bound.yMin - 300; this.talk(4); } if (!this.bGround) { break; } if (this.nRunTalk < 0) { this.nRunTalk = 60 + random(120); if (_root.game.bStartTalk) { if (Math.random() > 0.5) { this.talk(6); } } else { this.talk(0); _root.game.bStartTalk = true; } } if (this.nTalked > 0) { this.gotoAndStop(1); this.nTalked--; } else if (this.nDir == 0) { this.nCharge++; if (this.nCharge > this.nRelease) { this.nMode = 0; this.talk(2); } this.gotoAndStop(1); } else { this.gotoAndStop(2); } } } if (!(this._currentframe === 6)) { } else if (this.anim._currentframe >= this.anim._totalframes) { this.gotoAndStop(1); this.findNextPlat(); } } else { this._y = this._y + 2; for (sIter in _root.aPlates) { this.oTmp = _root.aPlates[sIter].box.getBounds(_root.game); if ((this._y >= this.oTmp.yMin) && (this._y <= this.oTmp.yMax)) { if ((this._x >= this.oTmp.xMin) && (this._x <= this.oTmp.xMax)) { this._y = this.oTmp.yMin; this.nLeftX = this.oTmp.xMin; this.nRightX = this.oTmp.xMax; this.bGround = true; this.mcGround = _root.aPlates[sIter]; break; } } } } this.doInvi(); if (this._currentframe != 5) { if ((_root.player._x >= (this._x + this.X1)) && (_root.player._x <= (this._x + this.X2))) { if ((_root.player._y >= (this._y + this.Y1)) && (_root.player._y <= ((this._y + this.Y2) - _root.player.Y1))) { _root.player.hit(); } } } }; var hit = function () { if (this.nInvi <= 0) { this.nLife--; this.talk(8); if ((this.nMode == 2) && (this.nDir == 0)) { this.findNearPlat(); } if (this.nLife <= 0) { this.nLife = 0; _root.removeMovie(_root.game.bf2_laser); this.gotoAndStop(5); this.bRun = false; if (_root.game.boss1.nLife <= 0) { _root.player.bRun = false; if (_root.nLevelsDone >= 8) { _root.endGame(14); } else { _root.endGame(14, 8); } } } else { this.nInvi = 60; if ((this._currentframe == 1) || (this._currentframe == 2)) { this.gotoAndStop(4); } } } }; }
Instance of Symbol 1822 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1822 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1824 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1824 MovieClip in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1826 MovieClip "stairs" in Symbol 1827 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var fText1 = function () { _root.showMessage("We got this unpleasant opportunity to see your face for a second time.", _root.game.boss2._x - 10, (_root.game.boss2._y - (_root.game.boss2._height / 2)) - 10, _root.game.stairs.fText2); }; var fText2 = function () { _root.showMessage("But it ends here, in this place. You ready?", _root.game.boss1._x - 10, (_root.game.boss1._y - (_root.game.boss1._height / 2)) - 10, _root.game.stairs.fText3); }; var fText3 = function () { _root.showMessage("Im kind of tired and hungry.", _root.player._x - 10, _root.player._y - (_root.player._height / 2), _root.game.stairs.fText4); }; var fText4 = function () { _root.showMessage("I'm not asking you, fool.", _root.game.boss1._x - 10, (_root.game.boss1._y - (_root.game.boss1._height / 2)) - 10, _root.game.stairs.fText5); }; var fText5 = function () { _root.showMessage("Well, I think we can handle this one.", _root.game.boss2._x - 10, (_root.game.boss2._y - (_root.game.boss2._height / 2)) - 10, _root.game.stairs.fText6); }; var fText6 = function () { _root.showMessage("And we have something new to show you. Look!", _root.game.boss1._x - 10, (_root.game.boss1._y - (_root.game.boss1._height / 2)) - 10, _root.game.stairs.fEnd); }; var fEnd = function () { _root.game.boss1.anim.play(); _root.game.boss2.anim.play(); }; var bBoss = false; } onClipEvent (enterFrame) { if (!this.bBoss) { this.bBoss = true; _root.player.bRun = false; this.fText1(); } else if ((!_root.player.bRun) && (_root.game.boss1.anim._currentframe >= _root.game.boss1.anim._totalframes)) { if (_root.game.boss1._currentframe != 5) { _root.player.bRun = true; _root.game.boss1.bRun = true; _root.game.boss2.bRun = true; } } }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > (this._y - 10)) && (_root.player._y < (this._y + this._height))) { _root.player.nVecY = -40; } } }; }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > this._y) && (_root.player._y < (this._y + this._height))) { _root.player._y = _root.nFallY; _root.player._x = _root.nFallX; } } }; }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 12 MovieClip in Symbol 1848 MovieClip Frame 1
onClipEvent (load) { var bEnded = false; this.onEnterFrame = function () { if ((_root.player._x > this._x) && (_root.player._x < (this._x + this._width))) { if ((_root.player._y > (this._y - 10)) && (_root.player._y < (this._y + this._height))) { if (!this.bEnded) { _root.game._x = (-_root.game.lw) + Stage.width; _root.game._y = (-_root.game.lh) + Stage.height; _root.player.bRun = false; this.bEnded = true; _root.endGame(16, 9); } } } }; }
Symbol 1870 MovieClip Frame 1
if (X1 == undefined) { var X1 = -19; var X2 = 19; var Y1 = -37; var Y2 = 0; var nVecX = 0; var nVecY = 0; var nInvi = 0; var bRun = true; var mcChild = null; var mcWall = null; var mcWallNot = null; var oTmp; var sIter; var nAnimFrame; var bTouch = false; var bMove = true; _root.player = _root.game.player; if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; if (this.nInvi <= 30) { this.gotoAndStop(this.nAnimFrame); } } this.nVecX = 0; if (this.bTouch) { this.nAnimFrame = 1; if (this.bRun && (this.bMove)) { if (Key.isDown(_root.nKeyR)) { this.nVecX = _root.nSpeed; this._xscale = 100; if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 7; } else { this.nAnimFrame = 2; } } else if (Key.isDown(_root.nKeyL)) { this.nVecX = -_root.nSpeed; this._xscale = -100; if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 7; } else { this.nAnimFrame = 2; } } else if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 5; } _root.bNearItem = false; if (Key.isDown(_root.nKeyU)) { this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this.nAnimFrame = 3; } } } else { this.nAnimFrame = 4; if (this.bRun && (this.bMove)) { if (Key.isDown(_root.nKeyU)) { if ((this.mcWall != this.mcWallNot) && (this.hitTest(this.mcWall))) { if (Key.isDown(_root.nKeyR) && (this.mcWall._x < this._x)) { this.mcWallNot = this.mcWall; this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this._xscale = 100; } else if (Key.isDown(_root.nKeyL) && (this.mcWall._x > this._x)) { this.mcWallNot = this.mcWall; this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this._xscale = -100; } } } if (Key.isDown(_root.nKeyR)) { this.nVecX = _root.nSpeed; this._xscale = 100; } if (Key.isDown(_root.nKeyL)) { this.nVecX = -_root.nSpeed; this._xscale = -100; } if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 6; } _root.bNearItem = false; } } if ((this._currentframe < 5) || (this._currentframe == 7)) { this.gotoAndStop(this.nAnimFrame); } this.bTouch = false; this.nVecY = this.nVecY + _root.nGrav; for (sIter in _root.aPlates) { this.TestHit(_root.aPlates[sIter]); } if (this.nVecX < 0) { if (((this._x + this.X1) + _root.game._x) > 0) { this._x = this._x + this.nVecX; } } else if (((this._x + this.X2) + _root.game._x) < 550) { this._x = this._x + this.nVecX; } this._y = this._y + this.nVecY; if ((this._y - _root.game._y) > _root.nResetDepth) { this._y = _root.nFallY; this._x = _root.nFallX; } if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); if (_root.bDebugBox) { _root.game.mcPlayerVec._x = this._x + this.nVecX; _root.game.mcPlayerVec._y = this._y + this.nVecY; } }; var TestHit = function (mc) { if (!mc._visible) { return(undefined); } this.oTmp = mc.box.getBounds(_root.game); if (this.thisTestHit(this._x, (this._y + this.Y1) + this.nVecY)) { if (this.nVecY < 1) { this.nVecY = 1; } } if (this.thisTestHit(this._x + this.nVecX, this._y + (this.Y1 / 2)) || (this.thisTestHit(this._x + this.nVecX, this._y - 10))) { this.mcWall = mc; if (this._x >= this.oTmp.xMax) { this._x = this.oTmp.xMax + 1; } else if (this._x <= this.oTmp.xMin) { this._x = this.oTmp.xMin - 1; } else if (Math.abs(this._x - this.oTmp.xMin) < Math.abs(this._x - this.oTmp.xMax)) { this._x = this.oTmp.xMin - 1; } else { this._x = this.oTmp.xMax + 1; } this.nVecX = 0; } else if (this.thisTestHit(this._x, this._y + this.nVecY)) { this.nVecY = 0; this.mcChild = mc; this.mcWallNot = null; this.mcWall = null; this.bTouch = true; this._y = this.oTmp.yMin; } }; var thisTestHit = function (nPointX, nPointY) { if ((this.oTmp.xMin <= nPointX) && (this.oTmp.xMax >= nPointX)) { if ((this.oTmp.yMin <= nPointY) && ((this.oTmp.yMax + this.nVecY) >= nPointY)) { return(true); } } return(false); }; var hit = function () { if (this.bRun) { if (this.nInvi <= 0) { this.nInvi = 60; if (!_root.bCheat) { _root.nLife--; } if (_root.nLife < 0) { this.nAnimFrame = 10; this.gotoAndStop(this.nAnimFrame); this.onEnterFrame = function () { if (_root.d_msg == null) { _root.bTimerStop = true; _root.attachMovie("Death_Message", "d_msg", _root.getNextHighestDepth()); _root.d_msg._x = Stage.width / 2; _root.d_msg._y = Stage.height / 2; } this.bTouch = false; this.nVecY = this.nVecY + _root.nGrav; if ((this._y - _root.game._y) > _root.nResetDepth) { this._y = _root.nFallY; this._x = _root.nFallX; } for (sIter in _root.aPlates) { var _local3 = _root.aPlates[sIter].box.getBounds(_root.game); if ((((this._y + this.Y2) + this.nVecY) >= _local3.yMin) && ((this._y + this.Y2) <= (_local3.yMax + this.nVecY))) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this.nVecY = 0; this._y = _local3.yMin; } } } if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); }; this.mcChild = null; } else if (this.bTouch) { this.nAnimFrame = 8; this.gotoAndStop(this.nAnimFrame); } else { this.nAnimFrame = 9; this.gotoAndStop(this.nAnimFrame); } } } }; } X1 = -10; X2 = 10; Y1 = -40; Y2 = 0;
Instance of Symbol 1852 MovieClip "npc2" in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { function nextState() { _root.endGame(16, 10); } var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var bTalk = false; } onClipEvent (enterFrame) { if ((!this.bTalk) && (this._visible)) { if (this.hitTest(_root.player)) { _root.showMessage("What took ya so long? Anyway, congratulations! ", _root.game.npc2._x, _root.game.npc2._y, _root.game.npc2.nextState); _root.player.bRun = false; this.bTalk = true; } } }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1873 MovieClip "npc1" in Symbol 1874 MovieClip Frame 1
onClipEvent (load) { function nextState() { nState++; } var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var nState = 0; } onClipEvent (enterFrame) { switch (nState) { case 0 : _root.showMessage("Yo! Welcome to the Labyrinth! To complete this level, just find the exit - theres my twin brother waiting there, talk to him and you're done.", _root.game.npc1._x, _root.game.npc1._y, _root.game.npc1.nextState); _root.player.bRun = false; nState++; break; case 2 : _root.showMessage("Dude, just go and find that exit already! You're wasting time here.", _root.game.npc1._x, _root.game.npc1._y, _root.game.npc1.nextState); nState++; break; case 4 : _root.player.bRun = true; nState++; } if ((this.nState > 3) && (this._visible)) { if (this.hitTest(_root.player)) { nState = 2; } } }
Symbol 1904 MovieClip Frame 1
_root.game.watergear.gotoAndPlay(1);
Symbol 1905 MovieClip Frame 11
stop();
Symbol 1944 MovieClip Frame 1
this._visible = false;
Instance of Symbol 2006 MovieClip in Symbol 2007 MovieClip Frame 1
onClipEvent (load) { this.gotoAndPlay(random(this._totalframes)); }
Instance of Symbol 2006 MovieClip in Symbol 2007 MovieClip Frame 1
onClipEvent (load) { this.gotoAndPlay(random(this._totalframes)); }
Instance of Symbol 2006 MovieClip in Symbol 2007 MovieClip Frame 1
onClipEvent (load) { this.gotoAndPlay(random(this._totalframes)); }
Instance of Symbol 2006 MovieClip in Symbol 2007 MovieClip Frame 1
onClipEvent (load) { this.gotoAndPlay(random(this._totalframes)); }
Instance of Symbol 2006 MovieClip in Symbol 2007 MovieClip Frame 1
onClipEvent (load) { this.gotoAndPlay(random(this._totalframes)); }
Symbol 2028 MovieClip Frame 14
this.gotoAndPlay(2);
Symbol 2052 MovieClip Frame 1
var X1 = -11; var X2 = 11; var Y1 = -38; var Y2 = 0;
Symbol 2078 MovieClip Frame 8
this._parent.gotoAndStop(1);
Symbol 2081 MovieClip Frame 6
this._parent.gotoAndStop(1);
Symbol 2088 MovieClip Frame 1
if (X1 == undefined) { var X1 = -19; var X2 = 19; var Y1 = -37; var Y2 = 0; var nVecX = 0; var nVecY = 0; var nInvi = 0; var bRun = true; var mcChild = null; var mcWall = null; var mcWallNot = null; var oTmp; var sIter; var nAnimFrame; var bTouch = false; var bMove = true; _root.player = _root.game.player; if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); this.onEnterFrame = function () { if (this.nInvi > 0) { this._visible = !this._visible; this.nInvi--; if (this.nInvi <= 30) { this.gotoAndStop(this.nAnimFrame); } } this.nVecX = 0; if (this.bTouch) { this.nAnimFrame = 1; if (this.bRun && (this.bMove)) { if (Key.isDown(_root.nKeyR)) { this.nVecX = _root.nSpeed; this._xscale = 100; if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 7; } else { this.nAnimFrame = 2; } } else if (Key.isDown(_root.nKeyL)) { this.nVecX = -_root.nSpeed; this._xscale = -100; if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 7; } else { this.nAnimFrame = 2; } } else if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 5; } _root.bNearItem = false; if (Key.isDown(_root.nKeyU)) { this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this.nAnimFrame = 3; } } } else { this.nAnimFrame = 4; if (this.bRun && (this.bMove)) { if (Key.isDown(_root.nKeyU)) { if ((this.mcWall != this.mcWallNot) && (this.hitTest(this.mcWall))) { if (Key.isDown(_root.nKeyR) && (this.mcWall._x < this._x)) { this.mcWallNot = this.mcWall; this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this._xscale = 100; } else if (Key.isDown(_root.nKeyL) && (this.mcWall._x > this._x)) { this.mcWallNot = this.mcWall; this.nVecY = (-_root.nSpeed) * _root.nJumpAmp; this._xscale = -100; } } } if (Key.isDown(_root.nKeyR)) { this.nVecX = _root.nSpeed; this._xscale = 100; } if (Key.isDown(_root.nKeyL)) { this.nVecX = -_root.nSpeed; this._xscale = -100; } if (Key.isDown(_root.nKeyS) && (_root.bAllowAttack || (_root.bNearItem))) { this.nAnimFrame = 6; } _root.bNearItem = false; } } if ((this._currentframe < 5) || (this._currentframe == 7)) { this.gotoAndStop(this.nAnimFrame); } this.bTouch = false; this.nVecY = this.nVecY + _root.nGrav; for (sIter in _root.aPlates) { this.TestHit(_root.aPlates[sIter]); } if (this.nVecX < 0) { if (((this._x + this.X1) + _root.game._x) > 0) { this._x = this._x + this.nVecX; } } else if (((this._x + this.X2) + _root.game._x) < 550) { this._x = this._x + this.nVecX; } this._y = this._y + this.nVecY; if ((this._y - _root.game._y) > _root.nResetDepth) { this._y = _root.nFallY; this._x = _root.nFallX; } if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); if (_root.bDebugBox) { _root.game.mcPlayerVec._x = this._x + this.nVecX; _root.game.mcPlayerVec._y = this._y + this.nVecY; } }; var TestHit = function (mc) { if (!mc._visible) { return(undefined); } this.oTmp = mc.box.getBounds(_root.game); if (this.thisTestHit(this._x, (this._y + this.Y1) + this.nVecY)) { if (this.nVecY < 1) { this.nVecY = 1; } } if (this.thisTestHit(this._x + this.nVecX, this._y + (this.Y1 / 2)) || (this.thisTestHit(this._x + this.nVecX, this._y - 10))) { this.mcWall = mc; if (this._x >= this.oTmp.xMax) { this._x = this.oTmp.xMax + 1; } else if (this._x <= this.oTmp.xMin) { this._x = this.oTmp.xMin - 1; } else if (Math.abs(this._x - this.oTmp.xMin) < Math.abs(this._x - this.oTmp.xMax)) { this._x = this.oTmp.xMin - 1; } else { this._x = this.oTmp.xMax + 1; } this.nVecX = 0; } else if (this.thisTestHit(this._x, this._y + this.nVecY)) { this.nVecY = 0; this.mcChild = mc; this.mcWallNot = null; this.mcWall = null; this.bTouch = true; this._y = this.oTmp.yMin; } }; var thisTestHit = function (nPointX, nPointY) { if ((this.oTmp.xMin <= nPointX) && (this.oTmp.xMax >= nPointX)) { if ((this.oTmp.yMin <= nPointY) && ((this.oTmp.yMax + this.nVecY) >= nPointY)) { return(true); } } return(false); }; var hit = function () { if (this.bRun) { if (this.nInvi <= 0) { this.nInvi = 60; if (!_root.bCheat) { _root.nLife--; } if (_root.nLife < 0) { this.nAnimFrame = 10; this.gotoAndStop(this.nAnimFrame); this.onEnterFrame = function () { if (_root.d_msg == null) { _root.bTimerStop = true; _root.attachMovie("Death_Message", "d_msg", _root.getNextHighestDepth()); _root.d_msg._x = Stage.width / 2; _root.d_msg._y = Stage.height / 2; } this.bTouch = false; this.nVecY = this.nVecY + _root.nGrav; if ((this._y - _root.game._y) > _root.nResetDepth) { this._y = _root.nFallY; this._x = _root.nFallX; } for (sIter in _root.aPlates) { var _local3 = _root.aPlates[sIter].box.getBounds(_root.game); if ((((this._y + this.Y2) + this.nVecY) >= _local3.yMin) && ((this._y + this.Y2) <= (_local3.yMax + this.nVecY))) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this.nVecY = 0; this._y = _local3.yMin; } } } if (_root.nCamState == 2) { _root.game._x = 240 - this._x; } else if (_root.nCamState == 3) { _root.game._y = 230 - this._y; } else if (_root.nCamState == 1) { _root.game._x = 240 - this._x; _root.game._y = 230 - this._y; } _root.BG._x = _root.BG.nOldX + (_root.game._x / 8); }; this.mcChild = null; } else if (this.bTouch) { this.nAnimFrame = 8; this.gotoAndStop(this.nAnimFrame); } else { this.nAnimFrame = 9; this.gotoAndStop(this.nAnimFrame); } } } }; } var X1 = -12; var X2 = 12; var Y1 = -40; var Y2 = 0;
Symbol 2115 MovieClip Frame 1
var X1 = -8; var X2 = 9; var Y1 = -14; var Y2 = 0;
Instance of Symbol 1877 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1879 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var scx = this._x; var sw = this._width; var bs = false; var snd = new Sound(this); snd.attachSound("jungleday"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if (_root.player._x <= (scx - sw)) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } if (_root.player._x > this._x) { snd.setVolume(100); } else { snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 100); } } }
Instance of Symbol 1881 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1883 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1885 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1887 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1889 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); var scx = this._x; var sw = ((this._width / 2) + 200); var bs = false; var snd = new Sound(this); snd.attachSound("jungleday"); snd.onSoundComplete = function () { this.start(); }; } onClipEvent (enterFrame) { if (_root.player._x >= (scx + sw)) { if (bs) { snd.stop(); bs = false; } } else { if (!bs) { snd.start(); bs = true; } if (_root.player._x < this._x) { snd.setVolume(100); } else { snd.setVolume((1 - (Math.abs(_root.player._x - scx) / sw)) * 100); } } }
Instance of Symbol 1891 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1893 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1905 MovieClip "waterfall" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; this.gotoAndStop(1); }
Instance of Symbol 1907 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1909 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1911 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1914 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1917 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1919 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1921 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1923 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1925 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1927 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1929 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1931 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1933 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1935 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1935 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1937 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1942 MovieClip "watergear" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { this._visible = false; this.gotoAndStop(1); }
Instance of Symbol 1944 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var snd = new Sound(this); var snds = new Array(); snds[0] = "eagle"; snds[1] = "hawk"; snds[2] = "meadownlark"; snds[3] = "oriole"; snds[4] = "skylark"; snds[5] = "woodlark"; snds[6] = "waterdrop1"; snds[7] = "waterdrop2"; snd.attachSound("birds"); var of = random(150); var rx = 2750; var lx = this._x; var uy = -205; } onClipEvent (enterFrame) { if (((_root.player._x > rx) || (_root.player._x < lx)) || (_root.player._y < uy)) { of--; if (of <= 0) { snd.attachSound(snds[random(6)]); snd.setVolume(40 + random(40)); snd.setPan(random(201) - 100); snd.start(); of = random(150) + 60; } } else { of--; if (of <= 0) { snd.attachSound(snds[6 + random(2)]); snd.setVolume(40 + random(40)); snd.setPan(random(201) - 100); snd.start(); of = random(150) + 60; } } }
Instance of Symbol 1947 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1949 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1952 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 1954 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1956 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1958 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1960 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1962 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1964 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1966 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1968 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1976 MovieClip "bridge" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1978 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1980 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1982 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1984 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1986 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1988 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1990 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1992 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1994 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1996 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1998 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2000 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2002 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2002 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2007 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var lx1 = (this._x + 20); var lx2 = ((this._x + this._width) - 20); var ly2 = (this._y + 10); var ly1 = (this._y - 400); var bChanged = true; } onClipEvent (enterFrame) { if ((((_root.player._x > this.lx1) && (_root.player._x < this.lx2)) && (_root.player._y > this.ly1)) && (_root.player._y < this.ly2)) { if (this.bChanged) { this.bChanged = false; _root.nGrav = 0; } } else if (!this.bChanged) { this.bChanged = true; _root.nGrav = 1; } }
Instance of Symbol 2009 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2019 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2007 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var lx1 = (this._x + 20); var lx2 = ((this._x + this._width) - 20); var ly2 = (this._y + 10); var ly1 = (this._y - 400); var bChanged = true; } onClipEvent (enterFrame) { if ((((_root.player._x > this.lx1) && (_root.player._x < this.lx2)) && (_root.player._y > this.ly1)) && (_root.player._y < this.ly2)) { if (this.bChanged) { this.bChanged = false; _root.nGrav = 0; } } else if (!this.bChanged) { this.bChanged = true; _root.nGrav = 1; } }
Instance of Symbol 2021 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2028 MovieClip "tief" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { function nextState() { nState++; } this.gotoAndStop(1); var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var nState = 0; var bDoneWater = false; var bDoneWrench = false; var bDoneMerle = false; var bDoneChief = false; } onClipEvent (enterFrame) { switch (nState) { case 1 : _root.showMessage("Now that you are part of the TKFB, you ought to do something for it, right?", _root.game.tief._x, _root.game.tief._y, _root.game.tief.nextState); nState++; break; case 3 : _root.showMessage("Right! Now, something is blocking the flow of water to the generator - go fix it!", _root.game.tief._x, _root.game.tief._y, _root.game.tief.nextState); nState++; break; case 5 : nState = 0; break; case 6 : _root.showMessage("The water is flowing again but while you were gone some naazi.com bots attacked the server.", _root.game.tief._x, _root.game.tief._y, _root.game.tief.nextState); nState++; break; case 8 : _root.showMessage("Furthermore, thay stole my favorite (and only) wrench and without I can't repair the computer - retrive it!", _root.game.tief._x, _root.game.tief._y, _root.game.tief.nextState); nState++; break; case 10 : nState = 0; break; case 11 : if (this._currentframe == 1) { this.gotoAndPlay(2); } _root.showMessage("Thx for the wrench, I will also need a chewing gum to connect some loose wires - Merle should have it", _root.game.tief._x, _root.game.tief._y, _root.game.tief.nextState); nState++; break; case 13 : nState = 0; break; case 14 : _root.showMessage("Well done! Now I want you to go and talk with the chief of the nearby village for no apprent reason.", _root.game.tief._x, _root.game.tief._y, _root.game.tief.nextState); nState++; break; case 16 : nState = 0; break; case 17 : _root.showMessage("Thats all, you can now go to your room and \"rest\"", _root.game.tief._x, _root.game.tief._y, _root.game.tief.nextState); nState++; break; case 19 : nState = 0; } if (this._visible && (this.nState == 0)) { if (this.hitTest(_root.player)) { nState = 1; if (bDoneWater) { nState = 6; if (bDoneWrench) { nState = 11; if (bDoneMerle) { nState = 14; if (bDoneChief) { nState = 17; } } } } } } }
Instance of Symbol 2031 MovieClip "npc" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { function nextState() { nState++; } var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var nState = 0; } onClipEvent (enterFrame) { switch (nState) { case 1 : _root.showMessage("You still got things to do, no?", _root.game.npc._x, _root.game.npc._y, _root.game.npc.nextState); nState++; break; case 3 : nState = 0; break; case 4 : _root.showMessage("ON YOU KNEES BITCH!", _root.game.npc._x, _root.game.npc._y, _root.game.npc.nextState); nState++; break; case 6 : _root.endLevel(16, 11); _root.player.bRun = false; nState++; } if (this._visible && (this.nState == 0)) { if (this.hitTest(_root.player)) { nState = 1; if (_root.game.tief.bDoneChief) { nState = 4; } } } }
Instance of Symbol 2036 MovieClip "merle" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { function nextState() { nState++; } this.gotoAndStop(1); var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var nState = 0; var bCloth = false; } onClipEvent (enterFrame) { switch (nState) { case 1 : _root.showMessage("WHERE ARE YOU LOOKIN YOU PERV?!", _root.game.merle._x, _root.game.merle._y, _root.game.merle.nextState); nState++; break; case 3 : nState = 0; break; case 4 : _root.showMessage("WHERE ARE YOU LOOKIN YOU PERV?!", _root.game.merle._x, _root.game.merle._y, _root.game.merle.nextState); nState++; break; case 6 : _root.showMessage("Tief asked me to get some chewing gum, do you have any?", _root.game.player._x, _root.game.player._y - 25, _root.game.merle.nextState); nState++; break; case 8 : _root.showMessage("WTF?! ... heh, look, some slime took all my cloths, get them back and I'll give you the damn gum", _root.game.merle._x, _root.game.merle._y - 25, _root.game.merle.nextState); nState++; break; case 10 : nState = 0; break; case 11 : _root.showMessage("Whoa, my cloths! ... Thanks, here's your chewing gum.", _root.game.merle._x, _root.game.merle._y, _root.game.merle.nextState); this.gotoAndStop(2); nState++; _root.game.tief.bDoneMerle = true; break; case 13 : nState = 0; break; case 14 : _root.showMessage("So much better in cloths... or is it ? >=3", _root.game.merle._x, _root.game.merle._y, _root.game.merle.nextState); nState++; break; case 16 : nState = 0; } if (this._visible && (this.nState == 0)) { if (this.hitTest(_root.player)) { nState = 1; if (_root.game.tief.bDoneWrench) { if (bCloth) { if (this._currentframe == 1) { nState = 11; } else { nState = 14; } } else { nState = 4; } } } } }
Instance of Symbol 2041 MovieClip "pau" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { function nextState() { nState++; } this.gotoAndStop(1); var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var nState = 0; } onClipEvent (enterFrame) { switch (nState) { case 1 : _root.showMessage("You better look out as rocks are falling from the waterfall", _root.game.pau._x - 50, _root.game.pau._y, _root.game.pau.nextState); this.gotoAndStop(2); nState++; break; case 3 : nState = 0; this.gotoAndStop(1); } if (this._visible && (this.nState == 0)) { if (this.hitTest(_root.player)) { nState = 1; } } }
Instance of Symbol 2043 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 2052 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 200); var nRightX = (this._x + 200); var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 2052 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var bIgnor = true; if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 2052 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; var nSpeed = 0; var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi < 2) { if (_root.game.tief.bDoneWater) { this.removeMovieClip(); this.unloadMovie(); removeMovieClip(this); delete this.onEnterFrame; _root.game.wrench._x = this._x + ((this._x < _root.player._x) ? -20 : 20); _root.game.wrench._y = this._y; } } else if (this.nInvi < 6) { this._visible = !this._visible; } } if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if ((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && (mc._y <= ((this._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 10; if (_root.game.tief.bDoneWater) { this.stop(); } }; }
Instance of Symbol 2052 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { if (this.nSpeed == undefined) { var nSpeed = 0; } if (this.nLife == undefined) { var nLife = 2; } var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi > 2) { this._visible = !this._visible; } else { this._visible = true; } } if (this.bFlying) { if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } else if (this.testHit2(_root.player)) { _root.player.hit(); } } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if (((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) && (_root.player.bRun)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } if (this.nInvi < 30) { this._x = this._x + this.nDir; } if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if (((this.nInvi <= 0) && (_root.player._currentframe >= 5)) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && ((mc._y + mc.Y1) <= (this._y + this.Y2))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 60; this.nLife--; if (this.nLife <= 0) { delete this.onEnterFrame; _root.removeMovie(this); } }; }
Instance of Symbol 2055 MovieClip "wrench" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this._visible = true; } else { this._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this._visible = true; } else { this._visible = false; } if (this._visible) { if (this.hitTest(_root.player)) { _root.game.tief.bDoneWrench = true; _root.removeMovie(this); } } }; }
Instance of Symbol 2091 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 2093 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2095 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2100 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 1947 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 2102 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 2104 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; }
Instance of Symbol 2110 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { this.gotoAndStop(1); _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); this.bound.xMin = this.bound.xMin - 50; this.bound.xMax = this.bound.xMax + 50; this.onEnterFrame = function () { if ((_root.player._x >= this.bound.xMin) && (_root.player._x <= this.bound.xMax)) { if ((_root.player._y >= this.bound.yMin) && (_root.player._y <= this.bound.yMax)) { if ((_root.player.nAnimFrame > 4) && (_root.player.nAnimFrame < 8)) { this.play(); _root.game.bridge.gotoAndStop(1); _root.game.waterfall.play(); _root.game.watergear._visible = true; this.onEnterFrame = function () { if (this._currentframe >= this._totalframes) { delete this.onEnterFrame; this._visible = false; this.box._xscale = 0; this.box._yscale = 0; this._xscale = 0; this._yscale = 0; _root.game.tief.bDoneWater = true; _root.removeMovie(this); } }; } } } }; }
Instance of Symbol 785 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { _root.aPlates[_root.aPlates.length] = this; var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var xCen = ((this.bound.xMin + this.bound.xMax) / 2); var yCen = ((this.bound.yMin + this.bound.yMax) / 2); }
Instance of Symbol 2115 MovieClip in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var nLeftX = (this._x - 100); var nRightX = (this._x + 100); var bIgnor = true; var nSpeed = 0; var bRun = true; var nVecY = 0; var nDir = (_root.nEnemySpeed + this.nSpeed); var nInvi = 0; var nAnimFrame; var sIter; var mcParent = null; if (this.bFlying == undefined) { var bFlying = false; } if (this.bIgnor == undefined) { var bIgnor = false; } if ((this.nLeftX == undefined) && (this.nRightX == undefined)) { var nLeftX = null; var nRightX = null; } this.onEnterFrame = function () { if (this.nInvi > 0) { this.nInvi--; if (this.nInvi < 2) { if (_root.game.tief.bDoneWrench) { this.removeMovieClip(); this.unloadMovie(); removeMovieClip(this); delete this.onEnterFrame; _root.game.cloth._x = this._x + ((this._x < _root.player._x) ? -20 : 20); _root.game.cloth._y = this._y; } } else if (this.nInvi < 6) { this._visible = !this._visible; } } else if (this.mcParent == null) { this.nVecY = this.nVecY + 0.5; this._y = this._y + this.nVecY; do { if ((in _root.aPlates) == null) { break; } sIter = in _root.aPlates; } while (!this.TestHit(_root.aPlates[sIter])); do { } while ("onEnterFrame" != null); } else if (this.bRun) { if ((_root.player.mcChild == this.mcParent) && (!this.bIgnor)) { this.nDir = (_root.player._x - this._x) / Math.abs(_root.player._x - this._x); this._xscale = this.nDir * 100; this.nDir = this.nDir * (_root.nEnemySpeed + this.nSpeed); } if (this._x >= this.nRightX) { this.nDir = -(_root.nEnemySpeed + this.nSpeed); this._xscale = -100; } else if (this._x <= this.nLeftX) { this.nDir = _root.nEnemySpeed + this.nSpeed; this._xscale = 100; } this._x = this._x + this.nDir; if (this.hitTest(_root.player)) { if (this.testHit2(_root.player)) { _root.player.hit(); } if ((_root.player._currentframe >= 5) && (_root.player._currentframe <= 7)) { this.hit(); } } } }; var TestHit = function (mc) { var _local3 = mc.box.getBounds(_root.game); if ((this._y >= _local3.yMin) && (this._y <= _local3.yMax)) { if ((this._x >= _local3.xMin) && (this._x <= _local3.xMax)) { this._y = _local3.yMin; this.mcParent = mc; if ((this.nLeftX == null) && (this.nRightX == null)) { this.nLeftX = _local3.xMin; this.nRightX = _local3.xMax; } return(true); } } return(false); }; var testHit2 = function (mc) { if ((mc._x >= (this._x + this.X1)) && (mc._x <= (this._x + this.X2))) { if ((mc._y >= (this._y + this.Y1)) && (mc._y <= ((this._y + this.Y2) - _root.player.Y1))) { return(true); } } return(false); }; var hit = function () { _root.game.attachMovie("blood", "blood", _root.game.getNextHighestDepth()); _root.game.blood._x = this._x + (20 * (_root.player._xscale / 100)); _root.game.blood._y = this._y - 10; _root.game.blood._xscale = -_root.player._xscale; this.nInvi = 10; if (_root.game.tief.bDoneWrench) { this.stop(); } }; }
Instance of Symbol 2118 MovieClip "cloth" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this._visible = true; } else { this._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this._visible = true; } else { this._visible = false; } if (this._visible) { if (this.hitTest(_root.player)) { _root.game.merle.bCloth = true; _root.removeMovie(this); } } }; }
Instance of Symbol 504 MovieClip "chief" in Symbol 2119 MovieClip Frame 1
onClipEvent (load) { function nextState() { nState++; } this.gotoAndStop(1); var par = _root.getParent(this); var bound = par.getBounds(_root.game); if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } this.onEnterFrame = function () { if ((((this.bound.xMax >= (-_root.game._x)) && (this.bound.xMin <= ((-_root.game._x) + 550))) && (this.bound.yMax >= (-_root.game._y))) && (this.bound.yMin <= ((-_root.game._y) + 400))) { this.par._visible = true; } else { this.par._visible = false; } }; var nState = 0; } onClipEvent (enterFrame) { switch (nState) { case 1 : _root.showMessage("What do you want bitch?!", _root.game.chief._x, _root.game.chief._y - 40, _root.game.chief.nextState); nState++; break; case 3 : _root.showMessage("Just passing by, fag", _root.game.player._x, _root.game.player._y - 25, _root.game.chief.nextState); nState++; break; case 5 : _root.showMessage("Then get you fatass out of here!", _root.game.chief._x, _root.game.chief._y - 40, _root.game.chief.nextState); nState++; break; case 7 : _root.showMessage("I'll think about it you shit head", _root.game.player._x, _root.game.player._y - 25, _root.game.chief.nextState); nState++; break; case 9 : _root.game.tief.bDoneChief = true; nState = 0; break; case 10 : _root.showMessage("Hi there.", _root.game.chief._x, _root.game.chief._y - 25, _root.game.chief.nextState); nState++; break; case 12 : nState = 0; } if (this._visible && (this.nState == 0)) { if (this.hitTest(_root.player)) { if ((!_root.game.tief.bDoneChief) && (_root.game.tief.bDoneMerle)) { nState = 1; } else { nState = 10; } } } }
Symbol 2123 Button
on (press) { if ((!_root.bCheated) && (_root.nTotalTime > 0)) { _root.nextFrame(); } else { _root.gotoAndStop(_root.nGameMenuFrame); } }
Symbol 2127 Button
on (press) { if ((_root.submit.tfName.text != "") && (_root.submit.tfName.text != undefined)) { _root.sUserName = _root.submit.tfName.text; _root.submitTotalTime(_root.nTotalTime); } }
Symbol 2128 Button
on (press) { _root.gotoAndStop(_root.nGameMenuFrame); }
Symbol 2129 Button
on (press) { _root.gotoAndStop(_root.nGameMenuFrame); }
Symbol 2130 Button
on (press) { _root.gotoAndStop(_root.nGameMenuFrame); }
Symbol 2131 Button
on (press) { _root.submitTotalTime(_root.nTotalTime); }

Library Items

Symbol 1 Font [EFont]Used by:19 21 62 63 69 70 73 79 80 281 283 285 287 288 289 290 291 294 296 297 301 302 304 306 308 310 311 575 591 594 595 596 1828 1829 1830 2120 2124 2126 2133
Symbol 2 GraphicUsed by:7
Symbol 3 GraphicUsed by:7
Symbol 4 GraphicUsed by:7
Symbol 5 GraphicUsed by:7
Symbol 6 GraphicUsed by:7
Symbol 7 MovieClip [blood]Uses:2 3 4 5 6
Symbol 8 GraphicUsed by:9
Symbol 9 MovieClip [Death_Message]Uses:8
Symbol 10 GraphicUsed by:195 324  Timeline
Symbol 11 GraphicUsed by:12
Symbol 12 MovieClipUses:11Used by:22 45 341 371 373 375 377 379 381 391 397 552 568 610 612 614 616 621 629 633 637 646 649 672 674 676 678 680 682 695 697 699 704 706 785 788 804 807 809 814 816 819 998 1002 1016 1021 1023 1025 1026 1051 1053 1055 1057 1059 1061 1063 1274 1352 1374 1376 1378 1384 1386 1388 1390 1392 1394 1396 1400 1402 1404 1406 1408 1412 1414 1416 1418 1420 1422 1568 1570 1574 1576 1578 1580 1582 1584 1588 1668 1676 1848 1889 1937 1949 1954 1956 1958 1960 1962 1964 1966 1968 1976 1978 1980 1982 1984 1986 1988 1990 1992 1994 1996 1998 2000 2002 2009 2019 2021 2093 2095 2100 2110
Symbol 13 GraphicUsed by:22
Symbol 14 GraphicUsed by:18
Symbol 15 GraphicUsed by:18
Symbol 16 ShapeTweeningUsed by:18
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:14 15 16 17Used by:22
Symbol 19 EditableTextUses:1Used by:22
Symbol 20 GraphicUsed by:22
Symbol 21 TextUses:1Used by:22
Symbol 22 MovieClipUses:12 13 18 19 20 21Used by:Timeline
Symbol 23 GraphicUsed by:45
Symbol 24 GraphicUsed by:25
Symbol 25 MovieClipUses:24Used by:45
Symbol 26 GraphicUsed by:45
Symbol 27 GraphicUsed by:33
Symbol 28 GraphicUsed by:33
Symbol 29 GraphicUsed by:33
Symbol 30 GraphicUsed by:33
Symbol 31 GraphicUsed by:33
Symbol 32 GraphicUsed by:33
Symbol 33 MovieClipUses:27 28 29 30 31 32Used by:45
Symbol 34 GraphicUsed by:45
Symbol 35 GraphicUsed by:36
Symbol 36 MovieClipUses:35Used by:45
Symbol 37 GraphicUsed by:38
Symbol 38 MovieClipUses:37Used by:45
Symbol 39 GraphicUsed by:45
Symbol 40 GraphicUsed by:41
Symbol 41 MovieClipUses:40Used by:45
Symbol 42 GraphicUsed by:43
Symbol 43 MovieClipUses:42Used by:45
Symbol 44 GraphicUsed by:45
Symbol 45 MovieClipUses:23 25 26 33 34 36 38 39 41 43 12 44Used by:Timeline
Symbol 46 BitmapUsed by:47
Symbol 47 GraphicUses:46Used by:54
Symbol 48 BitmapUsed by:49
Symbol 49 GraphicUses:48Used by:54
Symbol 50 BitmapUsed by:51
Symbol 51 GraphicUses:50Used by:54
Symbol 52 BitmapUsed by:53
Symbol 53 GraphicUses:52Used by:54
Symbol 54 MovieClipUses:47 49 51 53Used by:468  Timeline
Symbol 55 BitmapUsed by:56 515
Symbol 56 GraphicUses:55Used by:57
Symbol 57 MovieClip [boss1Disk]Uses:56Used by:191
Symbol 58 GraphicUsed by:86 179
Symbol 59 GraphicUsed by:86
Symbol 60 GraphicUsed by:86
Symbol 61 GraphicUsed by:77 2132
Symbol 62 TextUses:1Used by:77 2132
Symbol 63 EditableTextUses:1Used by:77
Symbol 64 GraphicUsed by:65 2127
Symbol 65 ButtonUses:64Used by:77
Symbol 66 GraphicUsed by:67 2128
Symbol 67 ButtonUses:66Used by:77
Symbol 68 GraphicUsed by:77 2132
Symbol 69 TextUses:1Used by:77 2132
Symbol 70 TextUses:1Used by:77 2132
Symbol 71 GraphicUsed by:72 74 2129 2130
Symbol 72 ButtonUses:71Used by:77
Symbol 73 TextUses:1Used by:77 2132
Symbol 74 ButtonUses:71Used by:77
Symbol 75 GraphicUsed by:76 2131
Symbol 76 ButtonUses:75Used by:77
Symbol 77 MovieClipUses:61 62 63 65 67 68 69 70 72 73 74 76Used by:86
Symbol 78 GraphicUsed by:86
Symbol 79 TextUses:1Used by:86
Symbol 80 EditableTextUses:1Used by:81
Symbol 81 MovieClipUses:80Used by:86
Symbol 82 FontUsed by:83 84 85
Symbol 83 EditableTextUses:82Used by:86
Symbol 84 EditableTextUses:82Used by:86
Symbol 85 EditableTextUses:82Used by:86
Symbol 86 MovieClip [Stats]Uses:58 59 60 77 78 79 81 83 84 85Used by:191
Symbol 87 BitmapUsed by:88
Symbol 88 GraphicUses:87Used by:89
Symbol 89 MovieClip [bulBossL2]Uses:88Used by:191
Symbol 90 BitmapUsed by:91
Symbol 91 GraphicUses:90Used by:92
Symbol 92 MovieClip [b3-a2-ball]Uses:91Used by:191
Symbol 93 BitmapUsed by:94
Symbol 94 GraphicUses:93Used by:95
Symbol 95 MovieClip [b3-a3-ball]Uses:94Used by:191
Symbol 96 GraphicUsed by:97
Symbol 97 MovieClip [b4_cola]Uses:96Used by:191
Symbol 98 BitmapUsed by:99
Symbol 99 GraphicUses:98Used by:104
Symbol 100 BitmapUsed by:101
Symbol 101 GraphicUses:100Used by:104
Symbol 102 BitmapUsed by:103
Symbol 103 GraphicUses:102Used by:104
Symbol 104 MovieClip [b4_fire]Uses:99 101 103Used by:191
Symbol 105 BitmapUsed by:106
Symbol 106 GraphicUses:105Used by:107
Symbol 107 MovieClip [b4_kosc1]Uses:106Used by:191
Symbol 108 BitmapUsed by:109
Symbol 109 GraphicUses:108Used by:110
Symbol 110 MovieClip [b4_kosc2]Uses:109Used by:191
Symbol 111 BitmapUsed by:112
Symbol 112 GraphicUses:111Used by:113
Symbol 113 MovieClip [b4_kosc3]Uses:112Used by:191
Symbol 114 BitmapUsed by:115
Symbol 115 GraphicUses:114Used by:116
Symbol 116 MovieClip [b4_fireball]Uses:115Used by:191
Symbol 117 BitmapUsed by:118
Symbol 118 GraphicUses:117Used by:119
Symbol 119 MovieClip [b4_plaszcz]Uses:118Used by:191
Symbol 120 BitmapUsed by:121
Symbol 121 GraphicUses:120Used by:122
Symbol 122 MovieClip [b5_fire1]Uses:121Used by:191
Symbol 123 BitmapUsed by:124
Symbol 124 GraphicUses:123Used by:125
Symbol 125 MovieClip [b5_fire2]Uses:124Used by:191
Symbol 126 BitmapUsed by:127
Symbol 127 GraphicUses:126Used by:128
Symbol 128 MovieClip [b5_bul1]Uses:127Used by:191
Symbol 129 BitmapUsed by:130
Symbol 130 GraphicUses:129Used by:131
Symbol 131 MovieClip [b5_bul2]Uses:130Used by:191
Symbol 132 BitmapUsed by:133
Symbol 133 GraphicUses:132Used by:134
Symbol 134 MovieClip [b6_sopel]Uses:133Used by:191
Symbol 135 BitmapUsed by:136
Symbol 136 GraphicUses:135Used by:137
Symbol 137 MovieClip [b6_fire]Uses:136Used by:191
Symbol 138 GraphicUsed by:167
Symbol 139 GraphicUsed by:167
Symbol 140 SoundUsed by:167
Symbol 141 GraphicUsed by:167
Symbol 142 GraphicUsed by:167
Symbol 143 GraphicUsed by:167
Symbol 144 GraphicUsed by:167
Symbol 145 GraphicUsed by:167
Symbol 146 GraphicUsed by:167
Symbol 147 GraphicUsed by:167
Symbol 148 GraphicUsed by:167
Symbol 149 GraphicUsed by:167
Symbol 150 GraphicUsed by:167
Symbol 151 GraphicUsed by:167
Symbol 152 GraphicUsed by:167
Symbol 153 GraphicUsed by:167
Symbol 154 GraphicUsed by:167
Symbol 155 GraphicUsed by:167
Symbol 156 GraphicUsed by:167
Symbol 157 GraphicUsed by:167
Symbol 158 GraphicUsed by:167
Symbol 159 GraphicUsed by:167
Symbol 160 GraphicUsed by:167
Symbol 161 GraphicUsed by:167
Symbol 162 GraphicUsed by:167
Symbol 163 GraphicUsed by:167
Symbol 164 GraphicUsed by:167
Symbol 165 GraphicUsed by:167
Symbol 166 GraphicUsed by:167
Symbol 167 MovieClip [b7_bomb]Uses:138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166Used by:191
Symbol 168 GraphicUsed by:178
Symbol 169 GraphicUsed by:178
Symbol 170 GraphicUsed by:178
Symbol 171 GraphicUsed by:178
Symbol 172 GraphicUsed by:178
Symbol 173 GraphicUsed by:178
Symbol 174 GraphicUsed by:178
Symbol 175 GraphicUsed by:178
Symbol 176 GraphicUsed by:178
Symbol 177 GraphicUsed by:178
Symbol 178 MovieClip [b7_tencza]Uses:168 169 170 171 172 173 174 175 176 177Used by:191
Symbol 179 MovieClip [LapRecord]Uses:58Used by:191
Symbol 180 GraphicUsed by:182
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClip [Heart]Uses:180 181Used by:191 569 801 1302 1599
Symbol 183 BitmapUsed by:184
Symbol 184 GraphicUses:183Used by:185
Symbol 185 MovieClip [bf1_fire]Uses:184Used by:191
Symbol 186 ShapeTweeningUsed by:190
Symbol 187 GraphicUsed by:190
Symbol 188 ShapeTweeningUsed by:190
Symbol 189 GraphicUsed by:190
Symbol 190 MovieClip [bf2_laser]Uses:186 187 188 189Used by:191
Symbol 191 MovieClipUses:57 86 89 92 95 97 104 107 110 113 116 119 122 125 128 131 134 137 167 178 179 182 185 190Used by:Timeline
Symbol 192 BitmapUsed by:193
Symbol 193 GraphicUses:192Used by:194
Symbol 194 ButtonUses:193Used by:Timeline
Symbol 195 MovieClipUses:10Used by:Timeline
Symbol 196 Sound [boss-rumble]Used by:235
Symbol 197 Sound [birds-stream]Used by:235
Symbol 198 Sound [birds]Used by:235
Symbol 199 Sound [water2]Used by:235
Symbol 200 Sound [music-folk]Used by:235
Symbol 201 Sound [cafe]Used by:235
Symbol 202 Sound [club]Used by:235
Symbol 203 Sound [music-club]Used by:235
Symbol 204 Sound [torch]Used by:235
Symbol 205 Sound [townwalk]Used by:235
Symbol 206 Sound [traffic]Used by:235
Symbol 207 Sound [traffic2]Used by:235
Symbol 208 Sound [schoolbell]Used by:235
Symbol 209 Sound [church]Used by:235
Symbol 210 Sound [choping]Used by:235
Symbol 211 Sound [wolf]Used by:235
Symbol 212 Sound [scream]Used by:235
Symbol 213 Sound [thunder]Used by:235
Symbol 214 Sound [wind]Used by:235
Symbol 215 Sound [sea]Used by:235
Symbol 216 Sound [highway]Used by:235
Symbol 217 Sound [rap]Used by:235
Symbol 218 Sound [riverloop]Used by:235
Symbol 219 Sound [snowwind]Used by:235
Symbol 220 Sound [waterdrop1]Used by:235
Symbol 221 Sound [waterdrop2]Used by:235
Symbol 222 Sound [cricket]Used by:235
Symbol 223 Sound [eagle]Used by:235
Symbol 224 Sound [hawk]Used by:235
Symbol 225 Sound [jungleday]Used by:235
Symbol 226 Sound [meadowlark]Used by:235
Symbol 227 Sound [oriole]Used by:235
Symbol 228 Sound [skylark]Used by:235
Symbol 229 Sound [woodlark]Used by:235
Symbol 230 Sound [spark]Used by:235
Symbol 231 Sound [power-shot]Used by:235
Symbol 232 Sound [gone]Used by:235
Symbol 233 Sound [beep]Used by:235
Symbol 234 Sound [slash]Used by:235
Symbol 235 MovieClipUses:196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234Used by:Timeline
Symbol 236 GraphicUsed by:274
Symbol 237 GraphicUsed by:274
Symbol 238 GraphicUsed by:274
Symbol 239 BitmapUsed by:240
Symbol 240 GraphicUses:239Used by:241
Symbol 241 ButtonUses:240Used by:274
Symbol 242 BitmapUsed by:243
Symbol 243 GraphicUses:242Used by:244
Symbol 244 ButtonUses:243Used by:274
Symbol 245 BitmapUsed by:246
Symbol 246 GraphicUses:245Used by:247
Symbol 247 ButtonUses:246Used by:274
Symbol 248 BitmapUsed by:249
Symbol 249 GraphicUses:248Used by:250
Symbol 250 ButtonUses:249Used by:274
Symbol 251 BitmapUsed by:252
Symbol 252 GraphicUses:251Used by:253
Symbol 253 ButtonUses:252Used by:274
Symbol 254 BitmapUsed by:255
Symbol 255 GraphicUses:254Used by:256
Symbol 256 ButtonUses:255Used by:274
Symbol 257 BitmapUsed by:258
Symbol 258 GraphicUses:257Used by:259
Symbol 259 ButtonUses:258Used by:274
Symbol 260 GraphicUsed by:261 276
Symbol 261 ButtonUses:260Used by:274
Symbol 262 BitmapUsed by:263
Symbol 263 GraphicUses:262Used by:264
Symbol 264 ButtonUses:263Used by:274
Symbol 265 BitmapUsed by:266
Symbol 266 GraphicUses:265Used by:267
Symbol 267 ButtonUses:266Used by:274
Symbol 268 BitmapUsed by:269
Symbol 269 GraphicUses:268Used by:270
Symbol 270 ButtonUses:269Used by:274
Symbol 271 BitmapUsed by:272
Symbol 272 GraphicUses:271Used by:273
Symbol 273 ButtonUses:272Used by:274
Symbol 274 MovieClipUses:236 237 238 241 244 247 250 253 256 259 261 264 267 270 273Used by:Timeline
Symbol 275 GraphicUsed by:313
Symbol 276 ButtonUses:260Used by:313
Symbol 277 GraphicUsed by:278
Symbol 278 ButtonUses:277Used by:313
Symbol 279 GraphicUsed by:280
Symbol 280 ButtonUses:279Used by:313
Symbol 281 TextUses:1Used by:313
Symbol 282 GraphicUsed by:284
Symbol 283 EditableTextUses:1Used by:284
Symbol 284 MovieClipUses:282 283Used by:313
Symbol 285 TextUses:1Used by:313
Symbol 286 GraphicUsed by:313
Symbol 287 EditableTextUses:1Used by:313
Symbol 288 EditableTextUses:1Used by:313
Symbol 289 EditableTextUses:1Used by:313
Symbol 290 EditableTextUses:1Used by:313
Symbol 291 EditableTextUses:1Used by:313
Symbol 292 GraphicUsed by:293
Symbol 293 MovieClipUses:292Used by:313
Symbol 294 EditableTextUses:1Used by:313
Symbol 295 GraphicUsed by:313
Symbol 296 TextUses:1Used by:313
Symbol 297 TextUses:1Used by:313
Symbol 298 GraphicUsed by:313
Symbol 299 BitmapUsed by:300 420
Symbol 300 GraphicUses:299Used by:313
Symbol 301 TextUses:1Used by:313
Symbol 302 TextUses:1Used by:313
Symbol 303 GraphicUsed by:313
Symbol 304 TextUses:1Used by:313
Symbol 305 GraphicUsed by:313
Symbol 306 TextUses:1Used by:313
Symbol 307 GraphicUsed by:313
Symbol 308 TextUses:1Used by:313
Symbol 309 GraphicUsed by:313
Symbol 310 TextUses:1Used by:313
Symbol 311 TextUses:1Used by:313
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:275 276 278 280 281 284 285 286 287 288 289 290 291 293 294 295 296 297 298 300 301 302 303 304 305 306 307 308 309 310 311 312Used by:Timeline
Symbol 314 GraphicUsed by:324
Symbol 315 GraphicUsed by:324
Symbol 316 GraphicUsed by:324
Symbol 317 GraphicUsed by:324
Symbol 318 GraphicUsed by:324
Symbol 319 GraphicUsed by:324
Symbol 320 GraphicUsed by:324
Symbol 321 GraphicUsed by:324
Symbol 322 GraphicUsed by:324
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:314 315 316 317 318 319 320 321 322 10 323Used by:Timeline
Symbol 325 GraphicUsed by:328 379
Symbol 326 BitmapUsed by:327
Symbol 327 GraphicUses:326Used by:328
Symbol 328 MovieClipUses:325 327Used by:569
Symbol 329 GraphicUsed by:341
Symbol 330 GraphicUsed by:331
Symbol 331 MovieClipUses:330Used by:332
Symbol 332 MovieClipUses:331Used by:341
Symbol 333 GraphicUsed by:341
Symbol 334 GraphicUsed by:341
Symbol 335 GraphicUsed by:341
Symbol 336 GraphicUsed by:341
Symbol 337 GraphicUsed by:341
Symbol 338 GraphicUsed by:341
Symbol 339 GraphicUsed by:341
Symbol 340 GraphicUsed by:341
Symbol 341 MovieClipUses:12 329 332 333 334 335 336 337 338 339 340Used by:569
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342Used by:569
Symbol 344 BitmapUsed by:345
Symbol 345 GraphicUses:344Used by:367
Symbol 346 BitmapUsed by:347
Symbol 347 GraphicUses:346Used by:354
Symbol 348 BitmapUsed by:349
Symbol 349 GraphicUses:348Used by:354
Symbol 350 BitmapUsed by:351
Symbol 351 GraphicUses:350Used by:354
Symbol 352 BitmapUsed by:353
Symbol 353 GraphicUses:352Used by:354
Symbol 354 MovieClipUses:347 349 351 353Used by:367
Symbol 355 BitmapUsed by:356
Symbol 356 GraphicUses:355Used by:367
Symbol 357 SoundUsed by:367 995
Symbol 358 BitmapUsed by:359
Symbol 359 GraphicUses:358Used by:366
Symbol 360 BitmapUsed by:361
Symbol 361 GraphicUses:360Used by:366
Symbol 362 BitmapUsed by:363
Symbol 363 GraphicUses:362Used by:366
Symbol 364 BitmapUsed by:365
Symbol 365 GraphicUses:364Used by:366
Symbol 366 MovieClipUses:359 361 363 365Used by:367
Symbol 367 MovieClipUses:345 354 356 357 366Used by:569
Symbol 368 GraphicUsed by:371
Symbol 369 GraphicUsed by:371
Symbol 370 GraphicUsed by:371
Symbol 371 MovieClipUses:368 369 12 370Used by:569
Symbol 372 GraphicUsed by:373
Symbol 373 MovieClipUses:372 12Used by:569
Symbol 374 GraphicUsed by:375
Symbol 375 MovieClipUses:374 12Used by:569
Symbol 376 GraphicUsed by:377
Symbol 377 MovieClipUses:376 12Used by:569
Symbol 378 GraphicUsed by:379
Symbol 379 MovieClipUses:325 378 12Used by:569
Symbol 380 GraphicUsed by:381
Symbol 381 MovieClipUses:12 380Used by:569
Symbol 382 GraphicUsed by:391 1010 1587 1947
Symbol 383 GraphicUsed by:391 1010
Symbol 384 GraphicUsed by:391 1010
Symbol 385 GraphicUsed by:391
Symbol 386 GraphicUsed by:391 1010 1587 1947
Symbol 387 GraphicUsed by:391 1010 1587 1947
Symbol 388 GraphicUsed by:391 1010
Symbol 389 GraphicUsed by:391
Symbol 390 GraphicUsed by:391 1010 1587 1947
Symbol 391 MovieClipUses:382 383 384 385 12 386 387 388 389 390Used by:569
Symbol 392 GraphicUsed by:395
Symbol 393 FontUsed by:394
Symbol 394 EditableTextUses:393Used by:395
Symbol 395 MovieClipUses:392 394Used by:569 801 819 1026 1599
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:396 12Used by:569
Symbol 398 BitmapUsed by:399
Symbol 399 GraphicUses:398Used by:408
Symbol 400 BitmapUsed by:401
Symbol 401 GraphicUses:400Used by:408
Symbol 402 BitmapUsed by:403
Symbol 403 GraphicUses:402Used by:408
Symbol 404 BitmapUsed by:405
Symbol 405 GraphicUses:404Used by:408
Symbol 406 BitmapUsed by:407
Symbol 407 GraphicUses:406Used by:408
Symbol 408 MovieClipUses:399 401 403 405 407Used by:468 1619
Symbol 409 BitmapUsed by:410
Symbol 410 GraphicUses:409Used by:468
Symbol 411 BitmapUsed by:412
Symbol 412 GraphicUses:411Used by:415
Symbol 413 BitmapUsed by:414
Symbol 414 GraphicUses:413Used by:415
Symbol 415 MovieClipUses:412 414Used by:468
Symbol 416 BitmapUsed by:417
Symbol 417 GraphicUses:416Used by:423
Symbol 418 BitmapUsed by:419
Symbol 419 GraphicUses:418Used by:423
Symbol 420 GraphicUses:299Used by:423
Symbol 421 BitmapUsed by:422
Symbol 422 GraphicUses:421Used by:423
Symbol 423 MovieClipUses:417 419 420 422Used by:468
Symbol 424 BitmapUsed by:425
Symbol 425 GraphicUses:424Used by:436
Symbol 426 BitmapUsed by:427
Symbol 427 GraphicUses:426Used by:436
Symbol 428 BitmapUsed by:429
Symbol 429 GraphicUses:428Used by:436
Symbol 430 BitmapUsed by:431
Symbol 431 GraphicUses:430Used by:436
Symbol 432 BitmapUsed by:433
Symbol 433 GraphicUses:432Used by:436
Symbol 434 BitmapUsed by:435
Symbol 435 GraphicUses:434Used by:436
Symbol 436 MovieClipUses:425 427 429 431 433 435Used by:468
Symbol 437 BitmapUsed by:438
Symbol 438 GraphicUses:437Used by:445
Symbol 439 BitmapUsed by:440
Symbol 440 GraphicUses:439Used by:445
Symbol 441 BitmapUsed by:442
Symbol 442 GraphicUses:441Used by:445
Symbol 443 BitmapUsed by:444
Symbol 444 GraphicUses:443Used by:445
Symbol 445 MovieClipUses:438 440 442 444Used by:468
Symbol 446 BitmapUsed by:447
Symbol 447 GraphicUses:446Used by:468
Symbol 448 SoundUsed by:468
Symbol 449 BitmapUsed by:450
Symbol 450 GraphicUses:449Used by:468
Symbol 451 BitmapUsed by:452
Symbol 452 GraphicUses:451Used by:467
Symbol 453 BitmapUsed by:454
Symbol 454 GraphicUses:453Used by:467
Symbol 455 BitmapUsed by:456
Symbol 456 GraphicUses:455Used by:467
Symbol 457 BitmapUsed by:458
Symbol 458 GraphicUses:457Used by:467
Symbol 459 BitmapUsed by:460
Symbol 460 GraphicUses:459Used by:467
Symbol 461 BitmapUsed by:462
Symbol 462 GraphicUses:461Used by:467
Symbol 463 BitmapUsed by:464
Symbol 464 GraphicUses:463Used by:467
Symbol 465 BitmapUsed by:466
Symbol 466 GraphicUses:465Used by:467
Symbol 467 MovieClipUses:452 454 456 458 460 462 464 466Used by:468
Symbol 468 MovieClipUses:408 54 410 415 423 436 445 447 448 450 467Used by:569 801 1003 1156 1302 1599 1827 1848
Symbol 469 BitmapUsed by:470
Symbol 470 GraphicUses:469Used by:477
Symbol 471 BitmapUsed by:472
Symbol 472 GraphicUses:471Used by:477
Symbol 473 BitmapUsed by:474
Symbol 474 GraphicUses:473Used by:477
Symbol 475 BitmapUsed by:476
Symbol 476 GraphicUses:475Used by:477
Symbol 477 MovieClipUses:470 472 474 476Used by:569
Symbol 478 BitmapUsed by:479
Symbol 479 GraphicUses:478Used by:486
Symbol 480 BitmapUsed by:481
Symbol 481 GraphicUses:480Used by:486
Symbol 482 BitmapUsed by:483
Symbol 483 GraphicUses:482Used by:486
Symbol 484 BitmapUsed by:485
Symbol 485 GraphicUses:484Used by:486
Symbol 486 MovieClipUses:479 481 483 485Used by:569
Symbol 487 BitmapUsed by:488
Symbol 488 GraphicUses:487Used by:495
Symbol 489 BitmapUsed by:490
Symbol 490 GraphicUses:489Used by:495
Symbol 491 BitmapUsed by:492
Symbol 492 GraphicUses:491Used by:495
Symbol 493 BitmapUsed by:494
Symbol 494 GraphicUses:493Used by:495
Symbol 495 MovieClipUses:488 490 492 494Used by:569
Symbol 496 BitmapUsed by:497
Symbol 497 GraphicUses:496Used by:504
Symbol 498 BitmapUsed by:499
Symbol 499 GraphicUses:498Used by:504
Symbol 500 BitmapUsed by:501
Symbol 501 GraphicUses:500Used by:504
Symbol 502 BitmapUsed by:503
Symbol 503 GraphicUses:502Used by:504
Symbol 504 MovieClipUses:497 499 501 503Used by:569 2119
Symbol 505 BitmapUsed by:506
Symbol 506 GraphicUses:505Used by:513 539
Symbol 507 BitmapUsed by:508
Symbol 508 GraphicUses:507Used by:513
Symbol 509 BitmapUsed by:510
Symbol 510 GraphicUses:509Used by:513
Symbol 511 BitmapUsed by:512
Symbol 512 GraphicUses:511Used by:513
Symbol 513 MovieClipUses:506 508 510 512Used by:539
Symbol 514 BitmapUsed by:515 516
Symbol 515 GraphicUses:55 514Used by:522
Symbol 516 GraphicUses:514Used by:522
Symbol 517 SoundUsed by:522
Symbol 518 BitmapUsed by:519
Symbol 519 GraphicUses:518Used by:522
Symbol 520 BitmapUsed by:521
Symbol 521 GraphicUses:520Used by:522
Symbol 522 MovieClipUses:515 516 517 519 521Used by:539
Symbol 523 BitmapUsed by:524
Symbol 524 GraphicUses:523Used by:539
Symbol 525 SoundUsed by:539 947
Symbol 526 BitmapUsed by:527
Symbol 527 GraphicUses:526Used by:538
Symbol 528 BitmapUsed by:529
Symbol 529 GraphicUses:528Used by:538
Symbol 530 BitmapUsed by:531
Symbol 531 GraphicUses:530Used by:538
Symbol 532 BitmapUsed by:533
Symbol 533 GraphicUses:532Used by:538
Symbol 534 BitmapUsed by:535
Symbol 535 GraphicUses:534Used by:538
Symbol 536 BitmapUsed by:537
Symbol 537 GraphicUses:536Used by:538
Symbol 538 MovieClipUses:527 529 531 533 535 537Used by:539
Symbol 539 MovieClipUses:506 513 522 524 525 538Used by:569
Symbol 540 GraphicUsed by:550
Symbol 541 GraphicUsed by:550
Symbol 542 GraphicUsed by:550
Symbol 543 GraphicUsed by:550
Symbol 544 GraphicUsed by:550
Symbol 545 GraphicUsed by:550
Symbol 546 GraphicUsed by:550
Symbol 547 GraphicUsed by:550
Symbol 548 GraphicUsed by:550
Symbol 549 GraphicUsed by:550
Symbol 550 MovieClipUses:540 541 542 543 544 545 546 547 548 549Used by:569
Symbol 551 GraphicUsed by:552
Symbol 552 MovieClipUses:551 12Used by:569
Symbol 553 GraphicUsed by:554
Symbol 554 MovieClipUses:553Used by:569
Symbol 555 GraphicUsed by:569
Symbol 556 GraphicUsed by:569
Symbol 557 GraphicUsed by:565
Symbol 558 GraphicUsed by:565
Symbol 559 GraphicUsed by:565
Symbol 560 GraphicUsed by:565
Symbol 561 GraphicUsed by:565
Symbol 562 GraphicUsed by:565
Symbol 563 GraphicUsed by:565
Symbol 564 GraphicUsed by:565
Symbol 565 MovieClipUses:557 558 559 560 561 562 563 564Used by:569
Symbol 566 GraphicUsed by:568
Symbol 567 GraphicUsed by:568
Symbol 568 MovieClipUses:566 12 567Used by:569
Symbol 569 MovieClipUses:328 341 343 367 371 373 375 377 379 381 391 395 397 468 477 486 495 504 539 182 550 552 554 555 556 565 568Used by:Timeline
Symbol 570 GraphicUsed by:593
Symbol 571 GraphicUsed by:573
Symbol 572 GraphicUsed by:573
Symbol 573 MovieClipUses:571 572Used by:593
Symbol 574 GraphicUsed by:576
Symbol 575 EditableTextUses:1Used by:576
Symbol 576 MovieClipUses:574 575Used by:593
Symbol 577 GraphicUsed by:578
Symbol 578 MovieClipUses:577Used by:593
Symbol 579 GraphicUsed by:590
Symbol 580 GraphicUsed by:590
Symbol 581 GraphicUsed by:590
Symbol 582 GraphicUsed by:590
Symbol 583 GraphicUsed by:590
Symbol 584 GraphicUsed by:590
Symbol 585 GraphicUsed by:590
Symbol 586 GraphicUsed by:590
Symbol 587 GraphicUsed by:590
Symbol 588 GraphicUsed by:590
Symbol 589 GraphicUsed by:590
Symbol 590 MovieClipUses:579 580 581 582 583 584 585 586 587 588 589Used by:593
Symbol 591 EditableTextUses:1Used by:592
Symbol 592 MovieClipUses:591Used by:593
Symbol 593 MovieClipUses:570 573 576 578 590 592Used by:Timeline
Symbol 594 EditableTextUses:1Used by:Timeline
Symbol 595 EditableTextUses:1Used by:Timeline
Symbol 596 EditableTextUses:1Used by:Timeline
Symbol 597 GraphicUsed by:801
Symbol 598 GraphicUsed by:599
Symbol 599 MovieClipUses:598Used by:695 801
Symbol 600 GraphicUsed by:601
Symbol 601 MovieClipUses:600Used by:801
Symbol 602 GraphicUsed by:604
Symbol 603 GraphicUsed by:604
Symbol 604 MovieClipUses:602 603Used by:801
Symbol 605 GraphicUsed by:606
Symbol 606 MovieClipUses:605Used by:801
Symbol 607 GraphicUsed by:610
Symbol 608 GraphicUsed by:610
Symbol 609 GraphicUsed by:610
Symbol 610 MovieClipUses:607 608 609 12Used by:801
Symbol 611 GraphicUsed by:612
Symbol 612 MovieClipUses:12 611Used by:801
Symbol 613 GraphicUsed by:614
Symbol 614 MovieClipUses:613 12Used by:801
Symbol 615 GraphicUsed by:616
Symbol 616 MovieClipUses:615 12Used by:801
Symbol 617 GraphicUsed by:621
Symbol 618 GraphicUsed by:621
Symbol 619 GraphicUsed by:621
Symbol 620 GraphicUsed by:621
Symbol 621 MovieClipUses:617 12 618 619 620Used by:801
Symbol 622 GraphicUsed by:629
Symbol 623 GraphicUsed by:629
Symbol 624 GraphicUsed by:629
Symbol 625 GraphicUsed by:629 633
Symbol 626 GraphicUsed by:627
Symbol 627 MovieClipUses:626Used by:629 676
Symbol 628 GraphicUsed by:629
Symbol 629 MovieClipUses:622 623 624 625 627 628 12Used by:801
Symbol 630 GraphicUsed by:633
Symbol 631 GraphicUsed by:633 649
Symbol 632 GraphicUsed by:633
Symbol 633 MovieClipUses:630 625 631 632 12Used by:801
Symbol 634 GraphicUsed by:635
Symbol 635 MovieClipUses:634Used by:801
Symbol 636 GraphicUsed by:637
Symbol 637 MovieClipUses:636 12Used by:801
Symbol 638 GraphicUsed by:649
Symbol 639 GraphicUsed by:649
Symbol 640 GraphicUsed by:649
Symbol 641 GraphicUsed by:649
Symbol 642 GraphicUsed by:649 692
Symbol 643 GraphicUsed by:649
Symbol 644 GraphicUsed by:649
Symbol 645 GraphicUsed by:646
Symbol 646 MovieClipUses:12 645Used by:649
Symbol 647 GraphicUsed by:649
Symbol 648 GraphicUsed by:649
Symbol 649 MovieClipUses:638 639 640 641 642 643 644 646 647 631 648 12Used by:801
Symbol 650 GraphicUsed by:672
Symbol 651 GraphicUsed by:672
Symbol 652 BitmapUsed by:653
Symbol 653 GraphicUses:652Used by:672
Symbol 654 ShapeTweeningUsed by:671
Symbol 655 ShapeTweeningUsed by:671
Symbol 656 ShapeTweeningUsed by:671
Symbol 657 ShapeTweeningUsed by:671
Symbol 658 ShapeTweeningUsed by:671
Symbol 659 ShapeTweeningUsed by:671
Symbol 660 ShapeTweeningUsed by:671
Symbol 661 ShapeTweeningUsed by:671
Symbol 662 ShapeTweeningUsed by:671
Symbol 663 ShapeTweeningUsed by:671
Symbol 664 ShapeTweeningUsed by:671
Symbol 665 ShapeTweeningUsed by:671
Symbol 666 ShapeTweeningUsed by:671
Symbol 667 ShapeTweeningUsed by:671
Symbol 668 ShapeTweeningUsed by:671
Symbol 669 ShapeTweeningUsed by:671
Symbol 670 GraphicUsed by:671
Symbol 671 MovieClipUses:654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670Used by:672
Symbol 672 MovieClipUses:650 651 653 671 12Used by:801
Symbol 673 GraphicUsed by:674
Symbol 674 MovieClipUses:12 673Used by:801
Symbol 675 GraphicUsed by:676
Symbol 676 MovieClipUses:627 675 12Used by:801
Symbol 677 GraphicUsed by:678
Symbol 678 MovieClipUses:12 677Used by:801
Symbol 679 GraphicUsed by:680
Symbol 680 MovieClipUses:12 679Used by:801
Symbol 681 GraphicUsed by:682
Symbol 682 MovieClipUses:12 681Used by:801
Symbol 683 BitmapUsed by:684
Symbol 684 GraphicUses:683Used by:691
Symbol 685 BitmapUsed by:686
Symbol 686 GraphicUses:685Used by:691
Symbol 687 BitmapUsed by:688
Symbol 688 GraphicUses:687Used by:691
Symbol 689 BitmapUsed by:690
Symbol 690 GraphicUses:689Used by:691
Symbol 691 MovieClipUses:684 686 688 690Used by:801
Symbol 692 MovieClipUses:642Used by:695
Symbol 693 GraphicUsed by:695
Symbol 694 GraphicUsed by:695
Symbol 695 MovieClipUses:599 692 693 694 12Used by:801
Symbol 696 GraphicUsed by:697
Symbol 697 MovieClipUses:12 696Used by:801
Symbol 698 GraphicUsed by:699
Symbol 699 MovieClipUses:12 698Used by:801
Symbol 700 GraphicUsed by:701
Symbol 701 MovieClipUses:700Used by:801
Symbol 702 GraphicUsed by:706
Symbol 703 GraphicUsed by:704
Symbol 704 MovieClipUses:12 703Used by:706
Symbol 705 GraphicUsed by:706
Symbol 706 MovieClipUses:12 702 704 705Used by:801
Symbol 707 BitmapUsed by:708
Symbol 708 GraphicUses:707Used by:715 722
Symbol 709 BitmapUsed by:710
Symbol 710 GraphicUses:709Used by:715
Symbol 711 BitmapUsed by:712
Symbol 712 GraphicUses:711Used by:715
Symbol 713 BitmapUsed by:714
Symbol 714 GraphicUses:713Used by:715
Symbol 715 MovieClipUses:708 710 712 714Used by:730
Symbol 716 BitmapUsed by:717
Symbol 717 GraphicUses:716Used by:730
Symbol 718 SoundUsed by:730 764 783
Symbol 719 BitmapUsed by:720
Symbol 720 GraphicUses:719Used by:722
Symbol 721 SoundUsed by:722
Symbol 722 MovieClipUses:708 720 721Used by:730
Symbol 723 BitmapUsed by:724
Symbol 724 GraphicUses:723Used by:729
Symbol 725 BitmapUsed by:726
Symbol 726 GraphicUses:725Used by:729
Symbol 727 BitmapUsed by:728
Symbol 728 GraphicUses:727Used by:729
Symbol 729 MovieClipUses:724 726 728Used by:730
Symbol 730 MovieClipUses:715 717 718 722 729Used by:784
Symbol 731 BitmapUsed by:732
Symbol 732 GraphicUses:731Used by:739
Symbol 733 BitmapUsed by:734
Symbol 734 GraphicUses:733Used by:739
Symbol 735 BitmapUsed by:736
Symbol 736 GraphicUses:735Used by:739
Symbol 737 BitmapUsed by:738
Symbol 738 GraphicUses:737Used by:739
Symbol 739 MovieClipUses:732 734 736 738Used by:764
Symbol 740 BitmapUsed by:741
Symbol 741 GraphicUses:740Used by:764
Symbol 742 BitmapUsed by:743
Symbol 743 GraphicUses:742Used by:764
Symbol 744 BitmapUsed by:745
Symbol 745 GraphicUses:744Used by:756
Symbol 746 BitmapUsed by:747
Symbol 747 GraphicUses:746Used by:756
Symbol 748 BitmapUsed by:749
Symbol 749 GraphicUses:748Used by:756
Symbol 750 BitmapUsed by:751
Symbol 751 GraphicUses:750Used by:756
Symbol 752 BitmapUsed by:753
Symbol 753 GraphicUses:752Used by:756
Symbol 754 BitmapUsed by:755
Symbol 755 GraphicUses:754Used by:756
Symbol 756 MovieClipUses:745 747 749 751 753 755Used by:764
Symbol 757 BitmapUsed by:758
Symbol 758 GraphicUses:757Used by:763
Symbol 759 BitmapUsed by:760
Symbol 760 GraphicUses:759Used by:763
Symbol 761 BitmapUsed by:762
Symbol 762 GraphicUses:761Used by:763
Symbol 763 MovieClipUses:758 760 762Used by:764
Symbol 764 MovieClipUses:739 741 718 743 756 763Used by:784
Symbol 765 BitmapUsed by:766
Symbol 766 GraphicUses:765Used by:773
Symbol 767 BitmapUsed by:768
Symbol 768 GraphicUses:767Used by:773
Symbol 769 BitmapUsed by:770
Symbol 770 GraphicUses:769Used by:773
Symbol 771 BitmapUsed by:772
Symbol 772 GraphicUses:771Used by:773
Symbol 773 MovieClipUses:766 768 770 772Used by:783
Symbol 774 BitmapUsed by:775
Symbol 775 GraphicUses:774Used by:783
Symbol 776 BitmapUsed by:777
Symbol 777 GraphicUses:776Used by:782
Symbol 778 BitmapUsed by:779
Symbol 779 GraphicUses:778Used by:782
Symbol 780 BitmapUsed by:781
Symbol 781 GraphicUses:780Used by:782
Symbol 782 MovieClipUses:777 779 781Used by:783
Symbol 783 MovieClipUses:773 775 718 782Used by:784
Symbol 784 MovieClipUses:730 764 783Used by:801
Symbol 785 MovieClipUses:12Used by:801 1302 1599 1827 1848 1874 2119
Symbol 786 GraphicUsed by:801
Symbol 787 GraphicUsed by:788
Symbol 788 MovieClipUses:787 12Used by:801
Symbol 789 GraphicUsed by:801
Symbol 790 GraphicUsed by:791
Symbol 791 MovieClipUses:790Used by:801
Symbol 792 GraphicUsed by:793
Symbol 793 MovieClipUses:792Used by:801
Symbol 794 GraphicUsed by:795
Symbol 795 MovieClipUses:794Used by:796
Symbol 796 MovieClipUses:795Used by:801
Symbol 797 GraphicUsed by:798
Symbol 798 MovieClipUses:797Used by:801
Symbol 799 GraphicUsed by:800
Symbol 800 MovieClipUses:799Used by:801
Symbol 801 MovieClipUses:597 395 599 601 604 606 610 612 614 616 621 629 633 635 637 649 672 674 676 678 680 682 468 691 695 697 699 701 706 784 785 182 786 788 789 791 793 796 798 800Used by:Timeline
Symbol 802 GraphicUsed by:804
Symbol 803 GraphicUsed by:804
Symbol 804 MovieClipUses:802 12 803Used by:1003
Symbol 805 GraphicUsed by:807
Symbol 806 GraphicUsed by:807
Symbol 807 MovieClipUses:805 12 806Used by:1003
Symbol 808 GraphicUsed by:809
Symbol 809 MovieClipUses:12 808Used by:1003
Symbol 810 BitmapUsed by:811
Symbol 811 GraphicUses:810Used by:812
Symbol 812 MovieClipUses:811Used by:1003
Symbol 813 GraphicUsed by:814
Symbol 814 MovieClipUses:12 813Used by:1003
Symbol 815 GraphicUsed by:816
Symbol 816 MovieClipUses:12 815Used by:1003
Symbol 817 GraphicUsed by:819
Symbol 818 GraphicUsed by:819
Symbol 819 MovieClipUses:12 817 818 395Used by:1003
Symbol 820 BitmapUsed by:821
Symbol 821 GraphicUses:820Used by:828
Symbol 822 BitmapUsed by:823
Symbol 823 GraphicUses:822Used by:828
Symbol 824 BitmapUsed by:825
Symbol 825 GraphicUses:824Used by:828
Symbol 826 BitmapUsed by:827
Symbol 827 GraphicUses:826Used by:828
Symbol 828 MovieClipUses:821 823 825 827Used by:842
Symbol 829 BitmapUsed by:830
Symbol 830 GraphicUses:829Used by:841
Symbol 831 BitmapUsed by:832
Symbol 832 GraphicUses:831Used by:841
Symbol 833 BitmapUsed by:834
Symbol 834 GraphicUses:833Used by:841
Symbol 835 BitmapUsed by:836
Symbol 836 GraphicUses:835Used by:841
Symbol 837 BitmapUsed by:838
Symbol 838 GraphicUses:837Used by:841
Symbol 839 BitmapUsed by:840
Symbol 840 GraphicUses:839Used by:841
Symbol 841 MovieClipUses:830 832 834 836 838 840Used by:842
Symbol 842 MovieClipUses:828 841Used by:893
Symbol 843 BitmapUsed by:844
Symbol 844 GraphicUses:843Used by:851
Symbol 845 BitmapUsed by:846
Symbol 846 GraphicUses:845Used by:851
Symbol 847 BitmapUsed by:848
Symbol 848 GraphicUses:847Used by:851
Symbol 849 BitmapUsed by:850
Symbol 850 GraphicUses:849Used by:851
Symbol 851 MovieClipUses:844 846 848 850Used by:867
Symbol 852 BitmapUsed by:853
Symbol 853 GraphicUses:852Used by:866
Symbol 854 BitmapUsed by:855
Symbol 855 GraphicUses:854Used by:866
Symbol 856 BitmapUsed by:857
Symbol 857 GraphicUses:856Used by:866
Symbol 858 BitmapUsed by:859
Symbol 859 GraphicUses:858Used by:866
Symbol 860 BitmapUsed by:861
Symbol 861 GraphicUses:860Used by:866
Symbol 862 BitmapUsed by:863
Symbol 863 GraphicUses:862Used by:866
Symbol 864 BitmapUsed by:865
Symbol 865 GraphicUses:864Used by:866
Symbol 866 MovieClipUses:853 855 857 859 861 863 865Used by:867
Symbol 867 MovieClipUses:851 866Used by:893
Symbol 868 BitmapUsed by:869
Symbol 869 GraphicUses:868Used by:876
Symbol 870 BitmapUsed by:871
Symbol 871 GraphicUses:870Used by:876
Symbol 872 BitmapUsed by:873
Symbol 873 GraphicUses:872Used by:876
Symbol 874 BitmapUsed by:875
Symbol 875 GraphicUses:874Used by:876
Symbol 876 MovieClipUses:869 871 873 875Used by:892
Symbol 877 BitmapUsed by:878
Symbol 878 GraphicUses:877Used by:891
Symbol 879 BitmapUsed by:880
Symbol 880 GraphicUses:879Used by:891
Symbol 881 BitmapUsed by:882
Symbol 882 GraphicUses:881Used by:891
Symbol 883 BitmapUsed by:884
Symbol 884 GraphicUses:883Used by:891
Symbol 885 BitmapUsed by:886
Symbol 886 GraphicUses:885Used by:891
Symbol 887 BitmapUsed by:888
Symbol 888 GraphicUses:887Used by:891
Symbol 889 BitmapUsed by:890
Symbol 890 GraphicUses:889Used by:891
Symbol 891 MovieClipUses:878 880 882 884 886 888 890Used by:892
Symbol 892 MovieClipUses:876 891Used by:893
Symbol 893 MovieClipUses:842 867 892Used by:1003
Symbol 894 BitmapUsed by:895
Symbol 895 GraphicUses:894Used by:902
Symbol 896 BitmapUsed by:897
Symbol 897 GraphicUses:896Used by:902
Symbol 898 BitmapUsed by:899
Symbol 899 GraphicUses:898Used by:902
Symbol 900 BitmapUsed by:901
Symbol 901 GraphicUses:900Used by:902
Symbol 902 MovieClipUses:895 897 899 901Used by:947
Symbol 903 BitmapUsed by:904
Symbol 904 GraphicUses:903Used by:947
Symbol 905 BitmapUsed by:906
Symbol 906 GraphicUses:905Used by:921
Symbol 907 BitmapUsed by:908
Symbol 908 GraphicUses:907Used by:921
Symbol 909 BitmapUsed by:910
Symbol 910 GraphicUses:909Used by:921
Symbol 911 BitmapUsed by:912
Symbol 912 GraphicUses:911Used by:921
Symbol 913 BitmapUsed by:914
Symbol 914 GraphicUses:913Used by:921
Symbol 915 BitmapUsed by:916 919
Symbol 916 GraphicUses:915Used by:921
Symbol 917 BitmapUsed by:918 920
Symbol 918 GraphicUses:917Used by:921
Symbol 919 GraphicUses:915Used by:921
Symbol 920 GraphicUses:917Used by:921
Symbol 921 MovieClipUses:906 908 910 912 914 916 918 919 920Used by:947
Symbol 922 BitmapUsed by:923
Symbol 923 GraphicUses:922Used by:947
Symbol 924 BitmapUsed by:925
Symbol 925 GraphicUses:924Used by:937
Symbol 926 SoundUsed by:937
Symbol 927 BitmapUsed by:928
Symbol 928 GraphicUses:927Used by:937
Symbol 929 BitmapUsed by:930
Symbol 930 GraphicUses:929Used by:937
Symbol 931 BitmapUsed by:932
Symbol 932 GraphicUses:931Used by:937
Symbol 933 BitmapUsed by:934
Symbol 934 GraphicUses:933Used by:937
Symbol 935 BitmapUsed by:936
Symbol 936 GraphicUses:935Used by:937
Symbol 937 MovieClipUses:925 926 928 930 932 934 936Used by:947
Symbol 938 BitmapUsed by:939
Symbol 939 GraphicUses:938Used by:946
Symbol 940 BitmapUsed by:941
Symbol 941 GraphicUses:940Used by:946
Symbol 942 BitmapUsed by:943
Symbol 943 GraphicUses:942Used by:946
Symbol 944 BitmapUsed by:945
Symbol 945 GraphicUses:944Used by:946
Symbol 946 MovieClipUses:939 941 943 945Used by:947
Symbol 947 MovieClipUses:902 904 525 921 923 937 946Used by:996
Symbol 948 BitmapUsed by:949
Symbol 949 GraphicUses:948Used by:952
Symbol 950 BitmapUsed by:951
Symbol 951 GraphicUses:950Used by:952
Symbol 952 MovieClipUses:949 951Used by:995
Symbol 953 BitmapUsed by:954
Symbol 954 GraphicUses:953Used by:995
Symbol 955 BitmapUsed by:956
Symbol 956 GraphicUses:955Used by:967
Symbol 957 BitmapUsed by:958
Symbol 958 GraphicUses:957Used by:967
Symbol 959 BitmapUsed by:960
Symbol 960 GraphicUses:959Used by:967
Symbol 961 BitmapUsed by:962
Symbol 962 GraphicUses:961Used by:967
Symbol 963 BitmapUsed by:964
Symbol 964 GraphicUses:963Used by:967
Symbol 965 BitmapUsed by:966
Symbol 966 GraphicUses:965Used by:967
Symbol 967 MovieClipUses:956 958 960 962 964 966Used by:995
Symbol 968 BitmapUsed by:969
Symbol 969 GraphicUses:968Used by:983
Symbol 970 BitmapUsed by:971
Symbol 971 GraphicUses:970Used by:983
Symbol 972 BitmapUsed by:973
Symbol 973 GraphicUses:972Used by:983
Symbol 974 SoundUsed by:983
Symbol 975 BitmapUsed by:976
Symbol 976 GraphicUses:975Used by:983
Symbol 977 BitmapUsed by:978
Symbol 978 GraphicUses:977Used by:983
Symbol 979 BitmapUsed by:980
Symbol 980 GraphicUses:979Used by:983
Symbol 981 BitmapUsed by:982
Symbol 982 GraphicUses:981Used by:983
Symbol 983 MovieClipUses:969 971 973 974 976 978 980 982Used by:995
Symbol 984 BitmapUsed by:985
Symbol 985 GraphicUses:984Used by:990
Symbol 986 BitmapUsed by:987
Symbol 987 GraphicUses:986Used by:990
Symbol 988 BitmapUsed by:989
Symbol 989 GraphicUses:988Used by:990
Symbol 990 MovieClipUses:985 987 989Used by:995
Symbol 991 BitmapUsed by:992
Symbol 992 GraphicUses:991Used by:994
Symbol 993 SoundUsed by:994 1141 1249 1432 1747 1748
Symbol 994 MovieClipUses:992 993Used by:995
Symbol 995 MovieClipUses:952 954 357 967 983 990 994Used by:996
Symbol 996 MovieClipUses:947 995Used by:1003
Symbol 997 GraphicUsed by:998
Symbol 998 MovieClipUses:12 997Used by:1003
Symbol 999 GraphicUsed by:1000
Symbol 1000 MovieClipUses:999Used by:1003
Symbol 1001 GraphicUsed by:1002
Symbol 1002 MovieClipUses:12 1001Used by:1003
Symbol 1003 MovieClipUses:804 807 809 812 814 816 819 468 893 996 998 1000 1002Used by:Timeline
Symbol 1004 BitmapUsed by:1005 1007
Symbol 1005 GraphicUses:1004Used by:1006
Symbol 1006 MovieClipUses:1005Used by:Timeline
Symbol 1007 GraphicUses:1004Used by:1008
Symbol 1008 MovieClipUses:1007Used by:Timeline
Symbol 1009 GraphicUsed by:1026
Symbol 1010 MovieClipUses:382 383 384 386 387 388 390Used by:1026
Symbol 1011 GraphicUsed by:1026
Symbol 1012 GraphicUsed by:1013
Symbol 1013 MovieClipUses:1012Used by:1026
Symbol 1014 GraphicUsed by:1026
Symbol 1015 GraphicUsed by:1016
Symbol 1016 MovieClipUses:1015 12Used by:1026
Symbol 1017 GraphicUsed by:1018
Symbol 1018 MovieClipUses:1017Used by:1026
Symbol 1019 GraphicUsed by:1026
Symbol 1020 GraphicUsed by:1021
Symbol 1021 MovieClipUses:12 1020Used by:1026
Symbol 1022 GraphicUsed by:1023
Symbol 1023 MovieClipUses:12 1022Used by:1026
Symbol 1024 GraphicUsed by:1025
Symbol 1025 MovieClipUses:1024 12Used by:1026
Symbol 1026 MovieClipUses:12 1009 1010 1011 1013 1014 395 1016 1018 1019 1021 1023 1025Used by:1156
Symbol 1027 GraphicUsed by:1028
Symbol 1028 MovieClipUses:1027Used by:1156
Symbol 1029 GraphicUsed by:1030
Symbol 1030 MovieClipUses:1029Used by:1156
Symbol 1031 GraphicUsed by:1032
Symbol 1032 MovieClipUses:1031Used by:1156
Symbol 1033 GraphicUsed by:1051
Symbol 1034 GraphicUsed by:1050
Symbol 1035 GraphicUsed by:1050
Symbol 1036 GraphicUsed by:1050
Symbol 1037 GraphicUsed by:1050
Symbol 1038 GraphicUsed by:1050
Symbol 1039 GraphicUsed by:1050
Symbol 1040 GraphicUsed by:1050
Symbol 1041 GraphicUsed by:1050
Symbol 1042 GraphicUsed by:1050
Symbol 1043 GraphicUsed by:1050
Symbol 1044 GraphicUsed by:1050
Symbol 1045 GraphicUsed by:1050
Symbol 1046 GraphicUsed by:1050
Symbol 1047 GraphicUsed by:1050
Symbol 1048 GraphicUsed by:1050
Symbol 1049 GraphicUsed by:1050
Symbol 1050 MovieClipUses:1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049Used by:1051
Symbol 1051 MovieClipUses:1033 1050 12Used by:1156
Symbol 1052 GraphicUsed by:1053
Symbol 1053 MovieClipUses:1052 12Used by:1156
Symbol 1054 GraphicUsed by:1055
Symbol 1055 MovieClipUses:1054 12Used by:1156
Symbol 1056 GraphicUsed by:1057
Symbol 1057 MovieClipUses:1056 12Used by:1156
Symbol 1058 GraphicUsed by:1059
Symbol 1059 MovieClipUses:1058 12Used by:1156
Symbol 1060 GraphicUsed by:1061
Symbol 1061 MovieClipUses:1060 12Used by:1156
Symbol 1062 GraphicUsed by:1063
Symbol 1063 MovieClipUses:1062 12Used by:1156
Symbol 1064 BitmapUsed by:1065
Symbol 1065 GraphicUses:1064Used by:1066
Symbol 1066 MovieClipUses:1065Used by:1156
Symbol 1067 BitmapUsed by:1068
Symbol 1068 GraphicUses:1067Used by:1075
Symbol 1069 BitmapUsed by:1070
Symbol 1070 GraphicUses:1069Used by:1075
Symbol 1071 BitmapUsed by:1072
Symbol 1072 GraphicUses:1071Used by:1075
Symbol 1073 BitmapUsed by:1074
Symbol 1074 GraphicUses:1073Used by:1075
Symbol 1075 MovieClipUses:1068 1070 1072 1074Used by:1156
Symbol 1076 BitmapUsed by:1077
Symbol 1077 GraphicUses:1076Used by:1084
Symbol 1078 BitmapUsed by:1079
Symbol 1079 GraphicUses:1078Used by:1084
Symbol 1080 BitmapUsed by:1081
Symbol 1081 GraphicUses:1080Used by:1084
Symbol 1082 BitmapUsed by:1083
Symbol 1083 GraphicUses:1082Used by:1084
Symbol 1084 MovieClipUses:1077 1079 1081 1083Used by:1156
Symbol 1085 BitmapUsed by:1086
Symbol 1086 GraphicUses:1085Used by:1093
Symbol 1087 BitmapUsed by:1088
Symbol 1088 GraphicUses:1087Used by:1093
Symbol 1089 BitmapUsed by:1090
Symbol 1090 GraphicUses:1089Used by:1093
Symbol 1091 BitmapUsed by:1092
Symbol 1092 GraphicUses:1091Used by:1093
Symbol 1093 MovieClipUses:1086 1088 1090 1092Used by:1156
Symbol 1094 BitmapUsed by:1095
Symbol 1095 GraphicUses:1094Used by:1098
Symbol 1096 BitmapUsed by:1097
Symbol 1097 GraphicUses:1096Used by:1098
Symbol 1098 MovieClipUses:1095 1097Used by:1155
Symbol 1099 BitmapUsed by:1100
Symbol 1100 GraphicUses:1099Used by:1107
Symbol 1101 BitmapUsed by:1102
Symbol 1102 GraphicUses:1101Used by:1107
Symbol 1103 BitmapUsed by:1104
Symbol 1104 GraphicUses:1103Used by:1107
Symbol 1105 BitmapUsed by:1106
Symbol 1106 GraphicUses:1105Used by:1107
Symbol 1107 MovieClipUses:1100 1102 1104 1106Used by:1155
Symbol 1108 BitmapUsed by:1109
Symbol 1109 GraphicUses:1108Used by:1118
Symbol 1110 BitmapUsed by:1111
Symbol 1111 GraphicUses:1110Used by:1118
Symbol 1112 BitmapUsed by:1113
Symbol 1113 GraphicUses:1112Used by:1118
Symbol 1114 BitmapUsed by:1115
Symbol 1115 GraphicUses:1114Used by:1118
Symbol 1116 BitmapUsed by:1117
Symbol 1117 GraphicUses:1116Used by:1118
Symbol 1118 MovieClipUses:1109 1111 1113 1115 1117Used by:1155
Symbol 1119 BitmapUsed by:1120
Symbol 1120 GraphicUses:1119Used by:1136
Symbol 1121 BitmapUsed by:1122
Symbol 1122 GraphicUses:1121Used by:1136
Symbol 1123 BitmapUsed by:1124
Symbol 1124 GraphicUses:1123Used by:1136
Symbol 1125 BitmapUsed by:1126
Symbol 1126 GraphicUses:1125Used by:1136
Symbol 1127 BitmapUsed by:1128
Symbol 1128 GraphicUses:1127Used by:1136
Symbol 1129 BitmapUsed by:1130
Symbol 1130 GraphicUses:1129Used by:1136
Symbol 1131 BitmapUsed by:1132
Symbol 1132 GraphicUses:1131Used by:1136
Symbol 1133 SoundUsed by:1136 1244
Symbol 1134 BitmapUsed by:1135
Symbol 1135 GraphicUses:1134Used by:1136
Symbol 1136 MovieClipUses:1120 1122 1124 1126 1128 1130 1132 1133 1135Used by:1155
Symbol 1137 BitmapUsed by:1138
Symbol 1138 GraphicUses:1137Used by:1141
Symbol 1139 BitmapUsed by:1140
Symbol 1140 GraphicUses:1139Used by:1141
Symbol 1141 MovieClipUses:1138 1140 993Used by:1155
Symbol 1142 BitmapUsed by:1143
Symbol 1143 GraphicUses:1142Used by:1148
Symbol 1144 BitmapUsed by:1145
Symbol 1145 GraphicUses:1144Used by:1148
Symbol 1146 BitmapUsed by:1147
Symbol 1147 GraphicUses:1146Used by:1148
Symbol 1148 MovieClipUses:1143 1145 1147Used by:1155
Symbol 1149 BitmapUsed by:1150
Symbol 1150 GraphicUses:1149Used by:1151
Symbol 1151 MovieClipUses:1150Used by:1155
Symbol 1152 SoundUsed by:1155
Symbol 1153 BitmapUsed by:1154
Symbol 1154 GraphicUses:1153Used by:1155
Symbol 1155 MovieClipUses:1098 1107 1118 1136 1141 1148 1151 1152 1154Used by:1156
Symbol 1156 MovieClipUses:1026 1028 1030 1032 1051 1053 1055 1057 1059 1061 1063 1066 468 1075 1084 1093 1155Used by:Timeline
Symbol 1157 GraphicUsed by:1302
Symbol 1158 GraphicUsed by:1159
Symbol 1159 MovieClipUses:1158Used by:1302
Symbol 1160 GraphicUsed by:1161
Symbol 1161 MovieClipUses:1160Used by:1302
Symbol 1162 GraphicUsed by:1302
Symbol 1163 GraphicUsed by:1164
Symbol 1164 MovieClipUses:1163Used by:1302
Symbol 1165 GraphicUsed by:1166
Symbol 1166 MovieClipUses:1165Used by:1302
Symbol 1167 GraphicUsed by:1302
Symbol 1168 BitmapUsed by:1169
Symbol 1169 GraphicUses:1168Used by:1170
Symbol 1170 MovieClipUses:1169Used by:1302
Symbol 1171 GraphicUsed by:1183 1302
Symbol 1172 GraphicUsed by:1173
Symbol 1173 MovieClipUses:1172Used by:1302
Symbol 1174 GraphicUsed by:1175
Symbol 1175 MovieClipUses:1174Used by:1302
Symbol 1176 GraphicUsed by:1177
Symbol 1177 MovieClipUses:1176Used by:1302
Symbol 1178 GraphicUsed by:1302
Symbol 1179 GraphicUsed by:1180
Symbol 1180 MovieClipUses:1179Used by:1302
Symbol 1181 GraphicUsed by:1182
Symbol 1182 MovieClipUses:1181Used by:1302
Symbol 1183 MovieClipUses:1171Used by:1302
Symbol 1184 GraphicUsed by:1185
Symbol 1185 MovieClipUses:1184Used by:1302
Symbol 1186 GraphicUsed by:1187
Symbol 1187 MovieClipUses:1186Used by:1302
Symbol 1188 GraphicUsed by:1189
Symbol 1189 MovieClipUses:1188Used by:1302
Symbol 1190 GraphicUsed by:1191
Symbol 1191 MovieClipUses:1190Used by:1302
Symbol 1192 GraphicUsed by:1193
Symbol 1193 MovieClipUses:1192Used by:1302
Symbol 1194 GraphicUsed by:1195
Symbol 1195 MovieClipUses:1194Used by:1302
Symbol 1196 GraphicUsed by:1197
Symbol 1197 MovieClipUses:1196Used by:1302
Symbol 1198 GraphicUsed by:1199
Symbol 1199 MovieClipUses:1198Used by:1302
Symbol 1200 GraphicUsed by:1201
Symbol 1201 MovieClipUses:1200Used by:1302
Symbol 1202 GraphicUsed by:1203
Symbol 1203 MovieClipUses:1202Used by:1302
Symbol 1204 GraphicUsed by:1205
Symbol 1205 MovieClipUses:1204Used by:1302
Symbol 1206 GraphicUsed by:1207
Symbol 1207 MovieClipUses:1206Used by:1302
Symbol 1208 GraphicUsed by:1209
Symbol 1209 MovieClipUses:1208Used by:1302
Symbol 1210 GraphicUsed by:1211
Symbol 1211 MovieClipUses:1210Used by:1302
Symbol 1212 GraphicUsed by:1213
Symbol 1213 MovieClipUses:1212Used by:1302
Symbol 1214 GraphicUsed by:1215
Symbol 1215 MovieClipUses:1214Used by:1302
Symbol 1216 BitmapUsed by:1217
Symbol 1217 GraphicUses:1216Used by:1302
Symbol 1218 GraphicUsed by:1219
Symbol 1219 MovieClipUses:1218Used by:1302
Symbol 1220 BitmapUsed by:1221
Symbol 1221 GraphicUses:1220Used by:1222
Symbol 1222 MovieClipUses:1221Used by:1269
Symbol 1223 BitmapUsed by:1224
Symbol 1224 GraphicUses:1223Used by:1231
Symbol 1225 BitmapUsed by:1226
Symbol 1226 GraphicUses:1225Used by:1231
Symbol 1227 BitmapUsed by:1228
Symbol 1228 GraphicUses:1227Used by:1231
Symbol 1229 BitmapUsed by:1230
Symbol 1230 GraphicUses:1229Used by:1231
Symbol 1231 MovieClipUses:1224 1226 1228 1230Used by:1269
Symbol 1232 BitmapUsed by:1233
Symbol 1233 GraphicUses:1232Used by:1269
Symbol 1234 BitmapUsed by:1235
Symbol 1235 GraphicUses:1234Used by:1236
Symbol 1236 MovieClipUses:1235Used by:1269
Symbol 1237 SoundUsed by:1269 1819
Symbol 1238 BitmapUsed by:1239
Symbol 1239 GraphicUses:1238Used by:1269
Symbol 1240 BitmapUsed by:1241
Symbol 1241 GraphicUses:1240Used by:1244
Symbol 1242 BitmapUsed by:1243
Symbol 1243 GraphicUses:1242Used by:1244
Symbol 1244 MovieClipUses:1241 1243 1133Used by:1269
Symbol 1245 BitmapUsed by:1246
Symbol 1246 GraphicUses:1245Used by:1249
Symbol 1247 BitmapUsed by:1248
Symbol 1248 GraphicUses:1247Used by:1249
Symbol 1249 MovieClipUses:1246 1248 993Used by:1269
Symbol 1250 BitmapUsed by:1251
Symbol 1251 GraphicUses:1250Used by:1260
Symbol 1252 BitmapUsed by:1253
Symbol 1253 GraphicUses:1252Used by:1260
Symbol 1254 SoundUsed by:1260 1817 1818
Symbol 1255 BitmapUsed by:1256
Symbol 1256 GraphicUses:1255Used by:1260
Symbol 1257 SoundUsed by:1260 1817 1818
Symbol 1258 BitmapUsed by:1259
Symbol 1259 GraphicUses:1258Used by:1260
Symbol 1260 MovieClipUses:1251 1253 1254 1256 1257 1259Used by:1269
Symbol 1261 BitmapUsed by:1262
Symbol 1262 GraphicUses:1261Used by:1264
Symbol 1263 SoundUsed by:1264
Symbol 1264 MovieClipUses:1262 1263Used by:1269
Symbol 1265 BitmapUsed by:1266
Symbol 1266 GraphicUses:1265Used by:1268
Symbol 1267 SoundUsed by:1268
Symbol 1268 MovieClipUses:1266 1267Used by:1269
Symbol 1269 MovieClipUses:1222 1231 1233 1236 1237 1239 1244 1249 1260 1264 1268Used by:1302
Symbol 1270 GraphicUsed by:1274
Symbol 1271 GraphicUsed by:1274
Symbol 1272 GraphicUsed by:1274
Symbol 1273 GraphicUsed by:1274
Symbol 1274 MovieClipUses:1270 12 1271 1272 1273Used by:1302
Symbol 1275 BitmapUsed by:1276
Symbol 1276 GraphicUses:1275Used by:1283
Symbol 1277 BitmapUsed by:1278
Symbol 1278 GraphicUses:1277Used by:1283
Symbol 1279 BitmapUsed by:1280
Symbol 1280 GraphicUses:1279Used by:1283
Symbol 1281 BitmapUsed by:1282
Symbol 1282 GraphicUses:1281Used by:1283
Symbol 1283 MovieClipUses:1276 1278 1280 1282Used by:1302
Symbol 1284 BitmapUsed by:1285
Symbol 1285 GraphicUses:1284Used by:1292
Symbol 1286 BitmapUsed by:1287
Symbol 1287 GraphicUses:1286Used by:1292
Symbol 1288 BitmapUsed by:1289
Symbol 1289 GraphicUses:1288Used by:1292
Symbol 1290 BitmapUsed by:1291
Symbol 1291 GraphicUses:1290Used by:1292
Symbol 1292 MovieClipUses:1285 1287 1289 1291Used by:1302
Symbol 1293 BitmapUsed by:1294
Symbol 1294 GraphicUses:1293Used by:1301
Symbol 1295 BitmapUsed by:1296
Symbol 1296 GraphicUses:1295Used by:1301
Symbol 1297 BitmapUsed by:1298
Symbol 1298 GraphicUses:1297Used by:1301
Symbol 1299 BitmapUsed by:1300
Symbol 1300 GraphicUses:1299Used by:1301
Symbol 1301 MovieClipUses:1294 1296 1298 1300Used by:1302
Symbol 1302 MovieClipUses:1157 1159 1161 1162 1164 1166 1167 1170 1171 1173 1175 1177 1178 1180 1182 1183 1185 1187 1189 1191 1193 1195 1197 1199 1201 1203 1205 1207 1209 1211 1213 1215 1217 1219 785 1269 182 1274 468 1283 1292 1301Used by:Timeline
Symbol 1303 GraphicUsed by:1304
Symbol 1304 MovieClipUses:1303Used by:1599
Symbol 1305 GraphicUsed by:1306
Symbol 1306 MovieClipUses:1305Used by:1599
Symbol 1307 GraphicUsed by:1313
Symbol 1308 GraphicUsed by:1311
Symbol 1309 GraphicUsed by:1311 1345 1352
Symbol 1310 GraphicUsed by:1311
Symbol 1311 MovieClipUses:1308 1309 1310Used by:1313 1347 1599
Symbol 1312 GraphicUsed by:1313
Symbol 1313 MovieClipUses:1307 1311 1312Used by:1599
Symbol 1314 GraphicUsed by:1315
Symbol 1315 MovieClipUses:1314Used by:1599
Symbol 1316 GraphicUsed by:1317
Symbol 1317 MovieClipUses:1316Used by:1599
Symbol 1318 GraphicUsed by:1319
Symbol 1319 MovieClipUses:1318Used by:1599
Symbol 1320 GraphicUsed by:1321
Symbol 1321 MovieClipUses:1320Used by:1599
Symbol 1322 GraphicUsed by:1323
Symbol 1323 MovieClipUses:1322Used by:1599
Symbol 1324 GraphicUsed by:1339
Symbol 1325 GraphicUsed by:1339
Symbol 1326 GraphicUsed by:1339
Symbol 1327 GraphicUsed by:1339
Symbol 1328 GraphicUsed by:1339
Symbol 1329 GraphicUsed by:1339
Symbol 1330 GraphicUsed by:1339
Symbol 1331 GraphicUsed by:1339
Symbol 1332 GraphicUsed by:1339
Symbol 1333 GraphicUsed by:1339
Symbol 1334 GraphicUsed by:1339
Symbol 1335 GraphicUsed by:1339
Symbol 1336 GraphicUsed by:1339
Symbol 1337 GraphicUsed by:1339
Symbol 1338 GraphicUsed by:1339
Symbol 1339 MovieClipUses:1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338Used by:1599
Symbol 1340 GraphicUsed by:1341
Symbol 1341 MovieClipUses:1340Used by:1599
Symbol 1342 GraphicUsed by:1347
Symbol 1343 GraphicUsed by:1345
Symbol 1344 GraphicUsed by:1345
Symbol 1345 MovieClipUses:1343 1309 1344Used by:1347
Symbol 1346 GraphicUsed by:1347
Symbol 1347 MovieClipUses:1342 1311 1345 1346Used by:1599
Symbol 1348 GraphicUsed by:1349
Symbol 1349 MovieClipUses:1348Used by:1599
Symbol 1350 GraphicUsed by:1352
Symbol 1351 GraphicUsed by:1352
Symbol 1352 MovieClipUses:1350 1309 1351 12Used by:1599
Symbol 1353 GraphicUsed by:1354
Symbol 1354 MovieClipUses:1353Used by:1599
Symbol 1355 GraphicUsed by:1356
Symbol 1356 MovieClipUses:1355Used by:1599
Symbol 1357 GraphicUsed by:1358
Symbol 1358 MovieClipUses:1357Used by:1599
Symbol 1359 GraphicUsed by:1360
Symbol 1360 MovieClipUses:1359Used by:1599
Symbol 1361 GraphicUsed by:1362
Symbol 1362 MovieClipUses:1361Used by:1599
Symbol 1363 GraphicUsed by:1364
Symbol 1364 MovieClipUses:1363Used by:1599
Symbol 1365 GraphicUsed by:1366
Symbol 1366 MovieClipUses:1365Used by:1599
Symbol 1367 GraphicUsed by:1368
Symbol 1368 MovieClipUses:1367Used by:1599
Symbol 1369 GraphicUsed by:1370
Symbol 1370 MovieClipUses:1369Used by:1599
Symbol 1371 BitmapUsed by:1372
Symbol 1372 GraphicUses:1371Used by:1599
Symbol 1373 GraphicUsed by:1374
Symbol 1374 MovieClipUses:1373 12Used by:1599
Symbol 1375 GraphicUsed by:1376
Symbol 1376 MovieClipUses:1375 12Used by:1599
Symbol 1377 GraphicUsed by:1378
Symbol 1378 MovieClipUses:1377 12Used by:1599
Symbol 1379 GraphicUsed by:1380
Symbol 1380 MovieClipUses:1379Used by:1599
Symbol 1381 GraphicUsed by:1382
Symbol 1382 MovieClipUses:1381Used by:1599
Symbol 1383 GraphicUsed by:1384
Symbol 1384 MovieClipUses:1383 12Used by:1599
Symbol 1385 GraphicUsed by:1386
Symbol 1386 MovieClipUses:1385 12Used by:1599
Symbol 1387 GraphicUsed by:1388
Symbol 1388 MovieClipUses:1387 12Used by:1599
Symbol 1389 GraphicUsed by:1390
Symbol 1390 MovieClipUses:1389 12Used by:1599
Symbol 1391 GraphicUsed by:1392
Symbol 1392 MovieClipUses:1391 12Used by:1599
Symbol 1393 GraphicUsed by:1394
Symbol 1394 MovieClipUses:1393 12Used by:1599
Symbol 1395 GraphicUsed by:1396
Symbol 1396 MovieClipUses:1395 12Used by:1599
Symbol 1397 GraphicUsed by:1398
Symbol 1398 MovieClipUses:1397Used by:1599
Symbol 1399 GraphicUsed by:1400
Symbol 1400 MovieClipUses:1399 12Used by:1599
Symbol 1401 GraphicUsed by:1402
Symbol 1402 MovieClipUses:1401 12Used by:1599
Symbol 1403 GraphicUsed by:1404
Symbol 1404 MovieClipUses:1403 12Used by:1408 1599
Symbol 1405 GraphicUsed by:1406
Symbol 1406 MovieClipUses:1405 12Used by:1599
Symbol 1407 GraphicUsed by:1408
Symbol 1408 MovieClipUses:1404 1407 12Used by:1599
Symbol 1409 GraphicUsed by:1410
Symbol 1410 MovieClipUses:1409Used by:1599
Symbol 1411 GraphicUsed by:1412
Symbol 1412 MovieClipUses:1411 12Used by:1599
Symbol 1413 GraphicUsed by:1414
Symbol 1414 MovieClipUses:1413 12Used by:1599
Symbol 1415 GraphicUsed by:1416
Symbol 1416 MovieClipUses:1415 12Used by:1599
Symbol 1417 GraphicUsed by:1418
Symbol 1418 MovieClipUses:1417 12Used by:1599
Symbol 1419 GraphicUsed by:1420
Symbol 1420 MovieClipUses:1419 12Used by:1599
Symbol 1421 GraphicUsed by:1422
Symbol 1422 MovieClipUses:1421 12Used by:1599
Symbol 1423 BitmapUsed by:1424
Symbol 1424 GraphicUses:1423Used by:1599
Symbol 1425 BitmapUsed by:1426
Symbol 1426 GraphicUses:1425Used by:1427 1481
Symbol 1427 MovieClipUses:1426Used by:1483
Symbol 1428 BitmapUsed by:1429 1430 1431
Symbol 1429 GraphicUses:1428Used by:1432 1433 1481
Symbol 1430 GraphicUses:1428Used by:1432
Symbol 1431 GraphicUses:1428Used by:1432
Symbol 1432 MovieClipUses:1429 1430 993 1431Used by:1483
Symbol 1433 MovieClipUses:1429Used by:1483
Symbol 1434 ShapeTweeningUsed by:1481
Symbol 1435 GraphicUsed by:1481
Symbol 1436 GraphicUsed by:1481
Symbol 1437 GraphicUsed by:1481
Symbol 1438 GraphicUsed by:1481
Symbol 1439 GraphicUsed by:1481
Symbol 1440 GraphicUsed by:1481
Symbol 1441 GraphicUsed by:1481
Symbol 1442 GraphicUsed by:1481
Symbol 1443 GraphicUsed by:1481
Symbol 1444 GraphicUsed by:1481
Symbol 1445 GraphicUsed by:1481
Symbol 1446 GraphicUsed by:1481
Symbol 1447 GraphicUsed by:1481
Symbol 1448 GraphicUsed by:1481
Symbol 1449 GraphicUsed by:1481
Symbol 1450 GraphicUsed by:1481
Symbol 1451 GraphicUsed by:1481
Symbol 1452 GraphicUsed by:1481
Symbol 1453 GraphicUsed by:1481
Symbol 1454 GraphicUsed by:1481
Symbol 1455 GraphicUsed by:1481
Symbol 1456 GraphicUsed by:1481
Symbol 1457 GraphicUsed by:1481
Symbol 1458 GraphicUsed by:1481
Symbol 1459 GraphicUsed by:1481
Symbol 1460 GraphicUsed by:1481
Symbol 1461 GraphicUsed by:1481
Symbol 1462 GraphicUsed by:1481
Symbol 1463 GraphicUsed by:1481
Symbol 1464 GraphicUsed by:1481
Symbol 1465 GraphicUsed by:1481
Symbol 1466 GraphicUsed by:1481
Symbol 1467 GraphicUsed by:1481
Symbol 1468 GraphicUsed by:1481
Symbol 1469 GraphicUsed by:1481
Symbol 1470 GraphicUsed by:1481
Symbol 1471 GraphicUsed by:1481
Symbol 1472 GraphicUsed by:1481
Symbol 1473 GraphicUsed by:1481
Symbol 1474 GraphicUsed by:1481
Symbol 1475 GraphicUsed by:1481
Symbol 1476 GraphicUsed by:1481
Symbol 1477 GraphicUsed by:1481
Symbol 1478 GraphicUsed by:1481
Symbol 1479 GraphicUsed by:1481
Symbol 1480 GraphicUsed by:1481
Symbol 1481 MovieClipUses:1434 1426 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1429 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480Used by:1483
Symbol 1482 GraphicUsed by:1483
Symbol 1483 MovieClipUses:1427 1432 1433 1481 1482Used by:1599
Symbol 1484 BitmapUsed by:1485
Symbol 1485 GraphicUses:1484Used by:1488
Symbol 1486 BitmapUsed by:1487
Symbol 1487 GraphicUses:1486Used by:1488
Symbol 1488 MovieClipUses:1485 1487Used by:1599
Symbol 1489 GraphicUsed by:1497
Symbol 1490 GraphicUsed by:1496
Symbol 1491 BitmapUsed by:1492
Symbol 1492 GraphicUses:1491Used by:1495
Symbol 1493 BitmapUsed by:1494
Symbol 1494 GraphicUses:1493Used by:1495
Symbol 1495 MovieClipUses:1492 1494Used by:1496
Symbol 1496 MovieClipUses:1490 1495Used by:1497
Symbol 1497 MovieClipUses:1489 1496Used by:1599
Symbol 1498 BitmapUsed by:1499
Symbol 1499 GraphicUses:1498Used by:1506
Symbol 1500 BitmapUsed by:1501
Symbol 1501 GraphicUses:1500Used by:1506
Symbol 1502 BitmapUsed by:1503
Symbol 1503 GraphicUses:1502Used by:1506
Symbol 1504 BitmapUsed by:1505
Symbol 1505 GraphicUses:1504Used by:1506
Symbol 1506 MovieClipUses:1499 1501 1503 1505Used by:1599
Symbol 1507 BitmapUsed by:1508
Symbol 1508 GraphicUses:1507Used by:1515
Symbol 1509 BitmapUsed by:1510
Symbol 1510 GraphicUses:1509Used by:1515
Symbol 1511 BitmapUsed by:1512
Symbol 1512 GraphicUses:1511Used by:1515
Symbol 1513 BitmapUsed by:1514
Symbol 1514 GraphicUses:1513Used by:1515
Symbol 1515 MovieClipUses:1508 1510 1512 1514Used by:1599
Symbol 1516 BitmapUsed by:1517
Symbol 1517 GraphicUses:1516Used by:1524
Symbol 1518 BitmapUsed by:1519
Symbol 1519 GraphicUses:1518Used by:1524
Symbol 1520 BitmapUsed by:1521
Symbol 1521 GraphicUses:1520Used by:1524
Symbol 1522 BitmapUsed by:1523
Symbol 1523 GraphicUses:1522Used by:1524
Symbol 1524 MovieClipUses:1517 1519 1521 1523Used by:1599
Symbol 1525 BitmapUsed by:1526
Symbol 1526 GraphicUses:1525Used by:1531
Symbol 1527 BitmapUsed by:1528
Symbol 1528 GraphicUses:1527Used by:1531
Symbol 1529 BitmapUsed by:1530
Symbol 1530 GraphicUses:1529Used by:1531
Symbol 1531 MovieClipUses:1526 1528 1530Used by:1599
Symbol 1532 BitmapUsed by:1533
Symbol 1533 GraphicUses:1532Used by:1536
Symbol 1534 BitmapUsed by:1535
Symbol 1535 GraphicUses:1534Used by:1536
Symbol 1536 MovieClipUses:1533 1535Used by:1599
Symbol 1537 BitmapUsed by:1538
Symbol 1538 GraphicUses:1537Used by:1539
Symbol 1539 MovieClipUses:1538Used by:1565
Symbol 1540 BitmapUsed by:1541
Symbol 1541 GraphicUses:1540Used by:1548
Symbol 1542 BitmapUsed by:1543
Symbol 1543 GraphicUses:1542Used by:1548
Symbol 1544 BitmapUsed by:1545
Symbol 1545 GraphicUses:1544Used by:1548
Symbol 1546 BitmapUsed by:1547
Symbol 1547 GraphicUses:1546Used by:1548
Symbol 1548 MovieClipUses:1541 1543 1545 1547Used by:1565
Symbol 1549 BitmapUsed by:1550
Symbol 1550 GraphicUses:1549Used by:1551
Symbol 1551 MovieClipUses:1550Used by:1565
Symbol 1552 SoundUsed by:1565
Symbol 1553 BitmapUsed by:1554
Symbol 1554 GraphicUses:1553Used by:1565
Symbol 1555 BitmapUsed by:1556
Symbol 1556 GraphicUses:1555Used by:1559
Symbol 1557 BitmapUsed by:1558
Symbol 1558 GraphicUses:1557Used by:1559
Symbol 1559 MovieClipUses:1556 1558Used by:1565
Symbol 1560 BitmapUsed by:1561
Symbol 1561 GraphicUses:1560Used by:1564
Symbol 1562 BitmapUsed by:1563
Symbol 1563 GraphicUses:1562Used by:1564
Symbol 1564 MovieClipUses:1561 1563Used by:1565
Symbol 1565 MovieClipUses:1539 1548 1551 1552 1554 1559 1564Used by:1599
Symbol 1566 GraphicUsed by:1568
Symbol 1567 GraphicUsed by:1568
Symbol 1568 MovieClipUses:1566 1567 12Used by:1599
Symbol 1569 GraphicUsed by:1570
Symbol 1570 MovieClipUses:1569 12Used by:1599
Symbol 1571 GraphicUsed by:1572
Symbol 1572 MovieClipUses:1571Used by:1599
Symbol 1573 GraphicUsed by:1574
Symbol 1574 MovieClipUses:1573 12Used by:1599
Symbol 1575 GraphicUsed by:1576
Symbol 1576 MovieClipUses:1575 12Used by:1599
Symbol 1577 GraphicUsed by:1578
Symbol 1578 MovieClipUses:1577 12Used by:1599
Symbol 1579 GraphicUsed by:1580
Symbol 1580 MovieClipUses:1579 12Used by:1599
Symbol 1581 GraphicUsed by:1582
Symbol 1582 MovieClipUses:1581 12Used by:1599
Symbol 1583 GraphicUsed by:1584
Symbol 1584 MovieClipUses:1583 12Used by:1599
Symbol 1585 GraphicUsed by:1588
Symbol 1586 GraphicUsed by:1587
Symbol 1587 MovieClipUses:382 1586 386 387 390Used by:1588
Symbol 1588 MovieClipUses:1585 1587 12Used by:1599
Symbol 1589 GraphicUsed by:1594
Symbol 1590 GraphicUsed by:1594
Symbol 1591 GraphicUsed by:1594
Symbol 1592 GraphicUsed by:1594
Symbol 1593 GraphicUsed by:1594
Symbol 1594 MovieClipUses:1589 1590 1591 1592 1593Used by:1599
Symbol 1595 GraphicUsed by:1596
Symbol 1596 MovieClipUses:1595Used by:1599
Symbol 1597 GraphicUsed by:1598
Symbol 1598 MovieClipUses:1597Used by:1599
Symbol 1599 MovieClipUses:1304 1306 1313 1315 1317 1319 1321 1323 1339 1341 1347 1349 1311 1352 1354 1356 1358 1360 1362 1364 1366 1368 1370 1372 1374 1376 1378 1380 1382 395 1384 1386 1388 1390 1392 1394 1396 1398 1400 1402 1404 1406 1408 1410 1412 1414 1416 785 1418 1420 1422 1424 1483 1488 1497 468 1506 1515 1524 1531 1536 1565 1568 182 1570 1572 1574 1576 1578 1580 1582 1584 1588 1594 1596 1598Used by:Timeline
Symbol 1600 GraphicUsed by:1615
Symbol 1601 GraphicUsed by:1615
Symbol 1602 GraphicUsed by:1615
Symbol 1603 GraphicUsed by:1615
Symbol 1604 GraphicUsed by:1615
Symbol 1605 GraphicUsed by:1615
Symbol 1606 GraphicUsed by:1615
Symbol 1607 GraphicUsed by:1615
Symbol 1608 GraphicUsed by:1615
Symbol 1609 GraphicUsed by:1615
Symbol 1610 GraphicUsed by:1615
Symbol 1611 GraphicUsed by:1615
Symbol 1612 GraphicUsed by:1615
Symbol 1613 GraphicUsed by:1615
Symbol 1614 GraphicUsed by:1615
Symbol 1615 MovieClipUses:1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614Used by:1616 1636
Symbol 1616 MovieClipUses:1615Used by:1620
Symbol 1617 GraphicUsed by:1618
Symbol 1618 MovieClipUses:1617Used by:1619
Symbol 1619 MovieClipUses:1618 408Used by:1620
Symbol 1620 MovieClipUses:1616 1619Used by:Timeline
Symbol 1621 GraphicUsed by:1626
Symbol 1622 GraphicUsed by:1626
Symbol 1623 GraphicUsed by:1626
Symbol 1624 GraphicUsed by:1626
Symbol 1625 GraphicUsed by:1626
Symbol 1626 MovieClipUses:1621 1622 1623 1624 1625Used by:Timeline
Symbol 1627 ShapeTweeningUsed by:1631
Symbol 1628 ShapeTweeningUsed by:1631
Symbol 1629 GraphicUsed by:1631
Symbol 1630 GraphicUsed by:1631 1635
Symbol 1631 MovieClipUses:1627 1628 1629 1630Used by:Timeline
Symbol 1632 ShapeTweeningUsed by:1635
Symbol 1633 ShapeTweeningUsed by:1635
Symbol 1634 GraphicUsed by:1635
Symbol 1635 MovieClipUses:1632 1633 1634 1630Used by:Timeline
Symbol 1636 MovieClipUses:1615Used by:Timeline
Symbol 1637 GraphicUsed by:1638
Symbol 1638 MovieClipUses:1637Used by:1827
Symbol 1639 GraphicUsed by:1640
Symbol 1640 MovieClipUses:1639Used by:1827
Symbol 1641 GraphicUsed by:1665
Symbol 1642 GraphicUsed by:1665
Symbol 1643 GraphicUsed by:1665
Symbol 1644 GraphicUsed by:1665
Symbol 1645 GraphicUsed by:1665
Symbol 1646 GraphicUsed by:1665
Symbol 1647 GraphicUsed by:1665
Symbol 1648 GraphicUsed by:1665
Symbol 1649 GraphicUsed by:1665
Symbol 1650 GraphicUsed by:1665
Symbol 1651 GraphicUsed by:1665
Symbol 1652 GraphicUsed by:1665
Symbol 1653 GraphicUsed by:1665
Symbol 1654 GraphicUsed by:1665
Symbol 1655 GraphicUsed by:1665
Symbol 1656 GraphicUsed by:1665
Symbol 1657 GraphicUsed by:1665
Symbol 1658 GraphicUsed by:1665
Symbol 1659 GraphicUsed by:1665
Symbol 1660 GraphicUsed by:1665
Symbol 1661 GraphicUsed by:1665
Symbol 1662 GraphicUsed by:1665
Symbol 1663 GraphicUsed by:1665
Symbol 1664 GraphicUsed by:1665
Symbol 1665 MovieClipUses:1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664Used by:1827
Symbol 1666 GraphicUsed by:1827
Symbol 1667 GraphicUsed by:1668
Symbol 1668 MovieClipUses:1667 12Used by:1827
Symbol 1669 GraphicUsed by:1827
Symbol 1670 GraphicUsed by:1676
Symbol 1671 GraphicUsed by:1675
Symbol 1672 GraphicUsed by:1675
Symbol 1673 GraphicUsed by:1675
Symbol 1674 GraphicUsed by:1675
Symbol 1675 MovieClipUses:1671 1672 1673 1674Used by:1676
Symbol 1676 MovieClipUses:1670 1675 12Used by:1827
Symbol 1677 BitmapUsed by:1678
Symbol 1678 GraphicUses:1677Used by:1749
Symbol 1679 BitmapUsed by:1680
Symbol 1680 GraphicUses:1679Used by:1687
Symbol 1681 BitmapUsed by:1682
Symbol 1682 GraphicUses:1681Used by:1687
Symbol 1683 BitmapUsed by:1684
Symbol 1684 GraphicUses:1683Used by:1687
Symbol 1685 BitmapUsed by:1686
Symbol 1686 GraphicUses:1685Used by:1687
Symbol 1687 MovieClipUses:1680 1682 1684 1686Used by:1742 1749
Symbol 1688 BitmapUsed by:1689
Symbol 1689 GraphicUses:1688Used by:1749
Symbol 1690 BitmapUsed by:1691
Symbol 1691 GraphicUses:1690Used by:1692
Symbol 1692 MovieClipUses:1691Used by:1749
Symbol 1693 SoundUsed by:1749
Symbol 1694 BitmapUsed by:1695
Symbol 1695 GraphicUses:1694Used by:1749
Symbol 1696 BitmapUsed by:1697
Symbol 1697 GraphicUses:1696Used by:1742
Symbol 1698 ShapeTweeningUsed by:1742
Symbol 1699 GraphicUsed by:1742
Symbol 1700 GraphicUsed by:1742
Symbol 1701 GraphicUsed by:1742
Symbol 1702 GraphicUsed by:1742
Symbol 1703 ShapeTweeningUsed by:1742
Symbol 1704 GraphicUsed by:1742
Symbol 1705 GraphicUsed by:1742
Symbol 1706 GraphicUsed by:1742
Symbol 1707 GraphicUsed by:1742
Symbol 1708 GraphicUsed by:1742
Symbol 1709 BitmapUsed by:1710
Symbol 1710 GraphicUses:1709Used by:1742
Symbol 1711 GraphicUsed by:1742
Symbol 1712 GraphicUsed by:1742
Symbol 1713 GraphicUsed by:1742
Symbol 1714 GraphicUsed by:1742
Symbol 1715 GraphicUsed by:1742
Symbol 1716 GraphicUsed by:1742
Symbol 1717 GraphicUsed by:1742
Symbol 1718 GraphicUsed by:1742
Symbol 1719 GraphicUsed by:1742
Symbol 1720 GraphicUsed by:1742
Symbol 1721 GraphicUsed by:1742
Symbol 1722 GraphicUsed by:1742
Symbol 1723 GraphicUsed by:1742
Symbol 1724 GraphicUsed by:1742
Symbol 1725 GraphicUsed by:1742
Symbol 1726 BitmapUsed by:1727
Symbol 1727 GraphicUses:1726Used by:1742
Symbol 1728 GraphicUsed by:1742
Symbol 1729 GraphicUsed by:1742
Symbol 1730 GraphicUsed by:1742
Symbol 1731 GraphicUsed by:1742
Symbol 1732 GraphicUsed by:1742
Symbol 1733 GraphicUsed by:1742
Symbol 1734 GraphicUsed by:1742
Symbol 1735 GraphicUsed by:1742
Symbol 1736 ShapeTweeningUsed by:1742
Symbol 1737 GraphicUsed by:1742
Symbol 1738 GraphicUsed by:1742
Symbol 1739 GraphicUsed by:1742
Symbol 1740 GraphicUsed by:1742
Symbol 1741 GraphicUsed by:1742
Symbol 1742 MovieClipUses:1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1687Used by:1749
Symbol 1743 BitmapUsed by:1744
Symbol 1744 GraphicUses:1743Used by:1747 1748
Symbol 1745 BitmapUsed by:1746
Symbol 1746 GraphicUses:1745Used by:1747 1748
Symbol 1747 MovieClipUses:1744 1746 993Used by:1749
Symbol 1748 MovieClipUses:1744 1746 993Used by:1749
Symbol 1749 MovieClipUses:1678 1687 1689 1692 1693 1695 1742 1747 1748Used by:1827
Symbol 1750 BitmapUsed by:1751
Symbol 1751 GraphicUses:1750Used by:1817 1819
Symbol 1752 BitmapUsed by:1753
Symbol 1753 GraphicUses:1752Used by:1760
Symbol 1754 BitmapUsed by:1755
Symbol 1755 GraphicUses:1754Used by:1760
Symbol 1756 BitmapUsed by:1757
Symbol 1757 GraphicUses:1756Used by:1760
Symbol 1758 BitmapUsed by:1759
Symbol 1759 GraphicUses:1758Used by:1760
Symbol 1760 MovieClipUses:1753 1755 1757 1759Used by:1808 1819
Symbol 1761 BitmapUsed by:1762
Symbol 1762 GraphicUses:1761Used by:1819
Symbol 1763 BitmapUsed by:1764
Symbol 1764 GraphicUses:1763Used by:1765
Symbol 1765 MovieClipUses:1764Used by:1819
Symbol 1766 BitmapUsed by:1767
Symbol 1767 GraphicUses:1766Used by:1819
Symbol 1768 BitmapUsed by:1769
Symbol 1769 GraphicUses:1768Used by:1808
Symbol 1770 GraphicUsed by:1808
Symbol 1771 GraphicUsed by:1808
Symbol 1772 GraphicUsed by:1808
Symbol 1773 GraphicUsed by:1808
Symbol 1774 GraphicUsed by:1808
Symbol 1775 GraphicUsed by:1808
Symbol 1776 GraphicUsed by:1808
Symbol 1777 GraphicUsed by:1808
Symbol 1778 GraphicUsed by:1808
Symbol 1779 BitmapUsed by:1780
Symbol 1780 GraphicUses:1779Used by:1808
Symbol 1781 GraphicUsed by:1808
Symbol 1782 GraphicUsed by:1808
Symbol 1783 GraphicUsed by:1808
Symbol 1784 GraphicUsed by:1808
Symbol 1785 GraphicUsed by:1808
Symbol 1786 GraphicUsed by:1808
Symbol 1787 GraphicUsed by:1808
Symbol 1788 GraphicUsed by:1808
Symbol 1789 GraphicUsed by:1808
Symbol 1790 GraphicUsed by:1808
Symbol 1791 GraphicUsed by:1808
Symbol 1792 GraphicUsed by:1808
Symbol 1793 GraphicUsed by:1808
Symbol 1794 GraphicUsed by:1808
Symbol 1795 GraphicUsed by:1808
Symbol 1796 BitmapUsed by:1797
Symbol 1797 GraphicUses:1796Used by:1808
Symbol 1798 GraphicUsed by:1808
Symbol 1799 GraphicUsed by:1808
Symbol 1800 GraphicUsed by:1808
Symbol 1801 GraphicUsed by:1808
Symbol 1802 GraphicUsed by:1808
Symbol 1803 GraphicUsed by:1808
Symbol 1804 GraphicUsed by:1808
Symbol 1805 GraphicUsed by:1808
Symbol 1806 GraphicUsed by:1808
Symbol 1807 GraphicUsed by:1808
Symbol 1808 MovieClipUses:1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1760Used by:1819
Symbol 1809 BitmapUsed by:1810
Symbol 1810 GraphicUses:1809Used by:1817 1818
Symbol 1811 BitmapUsed by:1812
Symbol 1812 GraphicUses:1811Used by:1817 1818
Symbol 1813 BitmapUsed by:1814
Symbol 1814 GraphicUses:1813Used by:1817 1818
Symbol 1815 BitmapUsed by:1816
Symbol 1816 GraphicUses:1815Used by:1817 1818
Symbol 1817 MovieClipUses:1751 1810 1257 1812 1254 1814 1816Used by:1819
Symbol 1818 MovieClipUses:1810 1254 1812 1257 1814 1816Used by:1819
Symbol 1819 MovieClipUses:1751 1760 1762 1765 1237 1767 1808 1817 1818Used by:1827
Symbol 1820 GraphicUsed by:1827
Symbol 1821 GraphicUsed by:1822
Symbol 1822 MovieClipUses:1821Used by:1827
Symbol 1823 GraphicUsed by:1824
Symbol 1824 MovieClipUses:1823Used by:1827
Symbol 1825 GraphicUsed by:1826
Symbol 1826 MovieClipUses:1825Used by:1827
Symbol 1827 MovieClipUses:1638 1640 1665 1666 1668 1669 1676 1749 468 785 1819 1820 1822 1824 1826Used by:Timeline
Symbol 1828 EditableTextUses:1Used by:1831
Symbol 1829 EditableTextUses:1Used by:1831
Symbol 1830 EditableTextUses:1Used by:1831
Symbol 1831 MovieClipUses:1828 1829 1830Used by:Timeline
Symbol 1832 BitmapUsed by:1833
Symbol 1833 GraphicUses:1832Used by:1848
Symbol 1834 GraphicUsed by:1847
Symbol 1835 GraphicUsed by:1847
Symbol 1836 GraphicUsed by:1847
Symbol 1837 GraphicUsed by:1847
Symbol 1838 GraphicUsed by:1847
Symbol 1839 GraphicUsed by:1847
Symbol 1840 GraphicUsed by:1847
Symbol 1841 GraphicUsed by:1847
Symbol 1842 GraphicUsed by:1847
Symbol 1843 GraphicUsed by:1847
Symbol 1844 GraphicUsed by:1847
Symbol 1845 GraphicUsed by:1847
Symbol 1846 GraphicUsed by:1847
Symbol 1847 MovieClipUses:1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846Used by:1848
Symbol 1848 MovieClipUses:1833 785 12 1847 468Used by:Timeline
Symbol 1849 GraphicUsed by:1874
Symbol 1850 BitmapUsed by:1851
Symbol 1851 GraphicUses:1850Used by:1852
Symbol 1852 MovieClipUses:1851Used by:1874
Symbol 1853 BitmapUsed by:1854
Symbol 1854 GraphicUses:1853Used by:1870
Symbol 1855 BitmapUsed by:1856
Symbol 1856 GraphicUses:1855Used by:1863 1870
Symbol 1857 BitmapUsed by:1858
Symbol 1858 GraphicUses:1857Used by:1863
Symbol 1859 BitmapUsed by:1860
Symbol 1860 GraphicUses:1859Used by:1863 1870
Symbol 1861 BitmapUsed by:1862
Symbol 1862 GraphicUses:1861Used by:1863 1870
Symbol 1863 MovieClipUses:1856 1858 1860 1862Used by:1870
Symbol 1864 BitmapUsed by:1865
Symbol 1865 GraphicUses:1864Used by:1870
Symbol 1866 BitmapUsed by:1867
Symbol 1867 GraphicUses:1866Used by:1870
Symbol 1868 BitmapUsed by:1869
Symbol 1869 GraphicUses:1868Used by:1870
Symbol 1870 MovieClipUses:1854 1863 1865 1856 1860 1862 1867 1869Used by:1874
Symbol 1871 BitmapUsed by:1872
Symbol 1872 GraphicUses:1871Used by:1873
Symbol 1873 MovieClipUses:1872Used by:1874
Symbol 1874 MovieClipUses:1849 1852 785 1870 1873Used by:Timeline
Symbol 1875 GraphicUsed by:2119
Symbol 1876 GraphicUsed by:1877
Symbol 1877 MovieClipUses:1876Used by:2119
Symbol 1878 GraphicUsed by:1879
Symbol 1879 MovieClipUses:1878Used by:2119
Symbol 1880 GraphicUsed by:1881
Symbol 1881 MovieClipUses:1880Used by:2119
Symbol 1882 GraphicUsed by:1883
Symbol 1883 MovieClipUses:1882Used by:2119
Symbol 1884 GraphicUsed by:1885
Symbol 1885 MovieClipUses:1884Used by:2119
Symbol 1886 GraphicUsed by:1887
Symbol 1887 MovieClipUses:1886Used by:2119
Symbol 1888 GraphicUsed by:1889
Symbol 1889 MovieClipUses:1888 12Used by:2119
Symbol 1890 GraphicUsed by:1891
Symbol 1891 MovieClipUses:1890Used by:2119
Symbol 1892 GraphicUsed by:1893
Symbol 1893 MovieClipUses:1892Used by:2119
Symbol 1894 GraphicUsed by:1905
Symbol 1895 GraphicUsed by:1905
Symbol 1896 GraphicUsed by:1905
Symbol 1897 GraphicUsed by:1905
Symbol 1898 GraphicUsed by:1905
Symbol 1899 GraphicUsed by:1905
Symbol 1900 GraphicUsed by:1905
Symbol 1901 GraphicUsed by:1904
Symbol 1902 GraphicUsed by:1904
Symbol 1903 GraphicUsed by:1904
Symbol 1904 MovieClipUses:1901 1902 1903Used by:1905
Symbol 1905 MovieClipUses:1894 1895 1896 1897 1898 1899 1900 1904Used by:2119
Symbol 1906 GraphicUsed by:1907
Symbol 1907 MovieClipUses:1906Used by:2119
Symbol 1908 GraphicUsed by:1909
Symbol 1909 MovieClipUses:1908Used by:2119
Symbol 1910 GraphicUsed by:1911
Symbol 1911 MovieClipUses:1910Used by:2119
Symbol 1912 GraphicUsed by:1914
Symbol 1913 GraphicUsed by:1914 1921
Symbol 1914 MovieClipUses:1912 1913Used by:2119
Symbol 1915 GraphicUsed by:1917
Symbol 1916 GraphicUsed by:1917
Symbol 1917 MovieClipUses:1915 1916Used by:2119
Symbol 1918 GraphicUsed by:1919
Symbol 1919 MovieClipUses:1918Used by:2119
Symbol 1920 GraphicUsed by:1921
Symbol 1921 MovieClipUses:1920 1913Used by:2119
Symbol 1922 GraphicUsed by:1923
Symbol 1923 MovieClipUses:1922Used by:2119
Symbol 1924 GraphicUsed by:1925
Symbol 1925 MovieClipUses:1924Used by:2119
Symbol 1926 GraphicUsed by:1927
Symbol 1927 MovieClipUses:1926Used by:2119
Symbol 1928 GraphicUsed by:1929
Symbol 1929 MovieClipUses:1928Used by:2119
Symbol 1930 GraphicUsed by:1931
Symbol 1931 MovieClipUses:1930Used by:2119
Symbol 1932 GraphicUsed by:1933
Symbol 1933 MovieClipUses:1932Used by:2119
Symbol 1934 GraphicUsed by:1935
Symbol 1935 MovieClipUses:1934Used by:2119
Symbol 1936 GraphicUsed by:1937
Symbol 1937 MovieClipUses:1936 12Used by:2119
Symbol 1938 GraphicUsed by:1942
Symbol 1939 GraphicUsed by:1942
Symbol 1940 GraphicUsed by:1942
Symbol 1941 GraphicUsed by:1942
Symbol 1942 MovieClipUses:1938 1939 1940 1941Used by:2119
Symbol 1943 GraphicUsed by:1944
Symbol 1944 MovieClipUses:1943Used by:2119
Symbol 1945 GraphicUsed by:2119
Symbol 1946 GraphicUsed by:1947
Symbol 1947 MovieClipUses:382 1946 386 387 390Used by:2119
Symbol 1948 GraphicUsed by:1949
Symbol 1949 MovieClipUses:1948 12Used by:2119
Symbol 1950 GraphicUsed by:1952
Symbol 1951 GraphicUsed by:1952
Symbol 1952 MovieClipUses:1950 1951Used by:2119
Symbol 1953 GraphicUsed by:1954
Symbol 1954 MovieClipUses:1953 12Used by:2119
Symbol 1955 GraphicUsed by:1956
Symbol 1956 MovieClipUses:1955 12Used by:2119
Symbol 1957 GraphicUsed by:1958
Symbol 1958 MovieClipUses:1957 12Used by:2119
Symbol 1959 GraphicUsed by:1960
Symbol 1960 MovieClipUses:1959 12Used by:2119
Symbol 1961 GraphicUsed by:1962
Symbol 1962 MovieClipUses:1961 12Used by:2119
Symbol 1963 GraphicUsed by:1964
Symbol 1964 MovieClipUses:1963 12Used by:2119
Symbol 1965 GraphicUsed by:1966
Symbol 1966 MovieClipUses:1965 12Used by:2119
Symbol 1967 GraphicUsed by:1968
Symbol 1968 MovieClipUses:1967 12Used by:2119
Symbol 1969 GraphicUsed by:1976
Symbol 1970 ShapeTweeningUsed by:1976
Symbol 1971 GraphicUsed by:1976
Symbol 1972 ShapeTweeningUsed by:1976
Symbol 1973 ShapeTweeningUsed by:1976
Symbol 1974 GraphicUsed by:1976
Symbol 1975 GraphicUsed by:1976
Symbol 1976 MovieClipUses:1969 1970 1971 1972 1973 12 1974 1975Used by:2119
Symbol 1977 GraphicUsed by:1978
Symbol 1978 MovieClipUses:1977 12Used by:2119
Symbol 1979 GraphicUsed by:1980
Symbol 1980 MovieClipUses:1979 12Used by:2119
Symbol 1981 GraphicUsed by:1982
Symbol 1982 MovieClipUses:1981 12Used by:2119
Symbol 1983 GraphicUsed by:1984
Symbol 1984 MovieClipUses:1983 12Used by:2119
Symbol 1985 GraphicUsed by:1986
Symbol 1986 MovieClipUses:1985 12Used by:2119
Symbol 1987 GraphicUsed by:1988
Symbol 1988 MovieClipUses:1987 12Used by:2119
Symbol 1989 GraphicUsed by:1990
Symbol 1990 MovieClipUses:1989 12Used by:2119
Symbol 1991 GraphicUsed by:1992
Symbol 1992 MovieClipUses:1991 12Used by:2119
Symbol 1993 GraphicUsed by:1994
Symbol 1994 MovieClipUses:1993 12Used by:2119
Symbol 1995 GraphicUsed by:1996
Symbol 1996 MovieClipUses:1995 12Used by:2119
Symbol 1997 GraphicUsed by:1998
Symbol 1998 MovieClipUses:1997 12Used by:2119
Symbol 1999 GraphicUsed by:2000
Symbol 2000 MovieClipUses:1999 12Used by:2119
Symbol 2001 GraphicUsed by:2002
Symbol 2002 MovieClipUses:2001 12Used by:2119
Symbol 2003 GraphicUsed by:2119
Symbol 2004 GraphicUsed by:2007
Symbol 2005 GraphicUsed by:2006
Symbol 2006 MovieClipUses:2005Used by:2007
Symbol 2007 MovieClipUses:2004 2006Used by:2119
Symbol 2008 GraphicUsed by:2009
Symbol 2009 MovieClipUses:2008 12Used by:2119
Symbol 2010 GraphicUsed by:2011
Symbol 2011 MovieClipUses:2010Used by:2119
Symbol 2012 GraphicUsed by:2017
Symbol 2013 GraphicUsed by:2017
Symbol 2014 GraphicUsed by:2017
Symbol 2015 GraphicUsed by:2017
Symbol 2016 GraphicUsed by:2017
Symbol 2017 MovieClipUses:2012 2013 2014 2015 2016Used by:2119
Symbol 2018 GraphicUsed by:2019
Symbol 2019 MovieClipUses:2018 12Used by:2119
Symbol 2020 GraphicUsed by:2021
Symbol 2021 MovieClipUses:2020 12Used by:2119
Symbol 2022 BitmapUsed by:2023
Symbol 2023 GraphicUses:2022Used by:2028
Symbol 2024 BitmapUsed by:2025
Symbol 2025 GraphicUses:2024Used by:2028
Symbol 2026 BitmapUsed by:2027
Symbol 2027 GraphicUses:2026Used by:2028
Symbol 2028 MovieClipUses:2023 2025 2027Used by:2119
Symbol 2029 BitmapUsed by:2030
Symbol 2030 GraphicUses:2029Used by:2031
Symbol 2031 MovieClipUses:2030Used by:2119
Symbol 2032 BitmapUsed by:2033
Symbol 2033 GraphicUses:2032Used by:2036
Symbol 2034 BitmapUsed by:2035
Symbol 2035 GraphicUses:2034Used by:2036
Symbol 2036 MovieClipUses:2033 2035Used by:2119
Symbol 2037 BitmapUsed by:2038
Symbol 2038 GraphicUses:2037Used by:2041
Symbol 2039 BitmapUsed by:2040
Symbol 2040 GraphicUses:2039Used by:2041
Symbol 2041 MovieClipUses:2038 2040Used by:2119
Symbol 2042 GraphicUsed by:2043
Symbol 2043 MovieClipUses:2042Used by:2119
Symbol 2044 BitmapUsed by:2045
Symbol 2045 GraphicUses:2044Used by:2052
Symbol 2046 BitmapUsed by:2047
Symbol 2047 GraphicUses:2046Used by:2052
Symbol 2048 BitmapUsed by:2049
Symbol 2049 GraphicUses:2048Used by:2052
Symbol 2050 BitmapUsed by:2051
Symbol 2051 GraphicUses:2050Used by:2052
Symbol 2052 MovieClipUses:2045 2047 2049 2051Used by:2119
Symbol 2053 BitmapUsed by:2054
Symbol 2054 GraphicUses:2053Used by:2055
Symbol 2055 MovieClipUses:2054Used by:2119
Symbol 2056 BitmapUsed by:2057
Symbol 2057 GraphicUses:2056Used by:2062
Symbol 2058 BitmapUsed by:2059
Symbol 2059 GraphicUses:2058Used by:2062
Symbol 2060 BitmapUsed by:2061
Symbol 2061 GraphicUses:2060Used by:2062
Symbol 2062 MovieClipUses:2057 2059 2061Used by:2088
Symbol 2063 BitmapUsed by:2064
Symbol 2064 GraphicUses:2063Used by:2071
Symbol 2065 BitmapUsed by:2066
Symbol 2066 GraphicUses:2065Used by:2071
Symbol 2067 BitmapUsed by:2068
Symbol 2068 GraphicUses:2067Used by:2071
Symbol 2069 BitmapUsed by:2070
Symbol 2070 GraphicUses:2069Used by:2071
Symbol 2071 MovieClipUses:2064 2066 2068 2070Used by:2088
Symbol 2072 BitmapUsed by:2073
Symbol 2073 GraphicUses:2072Used by:2088
Symbol 2074 BitmapUsed by:2075
Symbol 2075 GraphicUses:2074Used by:2078
Symbol 2076 BitmapUsed by:2077
Symbol 2077 GraphicUses:2076Used by:2078
Symbol 2078 MovieClipUses:2075 2077Used by:2088
Symbol 2079 BitmapUsed by:2080
Symbol 2080 GraphicUses:2079Used by:2081
Symbol 2081 MovieClipUses:2080Used by:2088
Symbol 2082 BitmapUsed by:2083
Symbol 2083 GraphicUses:2082Used by:2088
Symbol 2084 BitmapUsed by:2085
Symbol 2085 GraphicUses:2084Used by:2088
Symbol 2086 BitmapUsed by:2087
Symbol 2087 GraphicUses:2086Used by:2088
Symbol 2088 MovieClipUses:2062 2071 2073 2078 2081 2083 2085 2087Used by:2119
Symbol 2089 GraphicUsed by:2119
Symbol 2090 GraphicUsed by:2091
Symbol 2091 MovieClipUses:2090Used by:2119
Symbol 2092 GraphicUsed by:2093
Symbol 2093 MovieClipUses:2092 12Used by:2119
Symbol 2094 GraphicUsed by:2095
Symbol 2095 MovieClipUses:2094 12Used by:2119
Symbol 2096 GraphicUsed by:2097
Symbol 2097 MovieClipUses:2096Used by:2119
Symbol 2098 GraphicUsed by:2100
Symbol 2099 GraphicUsed by:2100
Symbol 2100 MovieClipUses:2098 2099 12Used by:2119
Symbol 2101 GraphicUsed by:2102
Symbol 2102 MovieClipUses:2101Used by:2119
Symbol 2103 GraphicUsed by:2104
Symbol 2104 MovieClipUses:2103Used by:2119
Symbol 2105 GraphicUsed by:2110
Symbol 2106 GraphicUsed by:2110
Symbol 2107 GraphicUsed by:2110
Symbol 2108 GraphicUsed by:2110
Symbol 2109 GraphicUsed by:2110
Symbol 2110 MovieClipUses:2105 12 2106 2107 2108 2109Used by:2119
Symbol 2111 BitmapUsed by:2112
Symbol 2112 GraphicUses:2111Used by:2115
Symbol 2113 BitmapUsed by:2114
Symbol 2114 GraphicUses:2113Used by:2115
Symbol 2115 MovieClipUses:2112 2114Used by:2119
Symbol 2116 BitmapUsed by:2117
Symbol 2117 GraphicUses:2116Used by:2118
Symbol 2118 MovieClipUses:2117Used by:2119
Symbol 2119 MovieClipUses:1875 1877 1879 1881 1883 1885 1887 1889 1891 1893 1905 1907 1909 1911 1914 1917 1919 1921 1923 1925 1927 1929 1931 1933 1935 1937 1942 1944 1945 1947 1949 1952 1954 1956 1958 1960 1962 1964 1966 1968 1976 1978 1980 1982 785 1984 1986 1988 1990 1992 1994 1996 1998 2000 2002 2003 2007 2009 2011 2017 2019 2021 2028 2031 2036 2041 2043 2052 2055 2088 2089 2091 2093 2095 2097 2100 2102 2104 2110 2115 2118 504Used by:Timeline
Symbol 2120 EditableTextUses:1Used by:Timeline
Symbol 2121 GraphicUsed by:Timeline
Symbol 2122 GraphicUsed by:2123
Symbol 2123 ButtonUses:2122Used by:Timeline
Symbol 2124 EditableTextUses:1Used by:Timeline
Symbol 2125 GraphicUsed by:Timeline
Symbol 2126 EditableTextUses:1Used by:2132
Symbol 2127 ButtonUses:64Used by:2132
Symbol 2128 ButtonUses:66Used by:2132
Symbol 2129 ButtonUses:71Used by:2132
Symbol 2130 ButtonUses:71Used by:2132
Symbol 2131 ButtonUses:75Used by:2132
Symbol 2132 MovieClipUses:61 62 2126 2127 2128 68 69 70 2129 73 2130 2131Used by:Timeline
Symbol 2133 EditableTextUses:1Used by:Timeline

Instance Names

"pChar"Frame 2Symbol 54 MovieClip
"fadeBG"Frame 2Symbol 195 MovieClip
"loadscreen"Frame 2Symbol 274 MovieClip
"infoscreen"Frame 2Symbol 313 MovieClip
"BG"Frame 3Symbol 324 MovieClip
"game"Frame 3Symbol 569 MovieClip
"inter"Frame 3Symbol 593 MovieClip
"chMess"Frame 3Symbol 594 EditableText
"deMess"Frame 3Symbol 595 EditableText
"tfDebug"Frame 3Symbol 596 EditableText
"game"Frame 4Symbol 801 MovieClip
"game"Frame 5Symbol 1003 MovieClip
"fog1"Frame 5Symbol 1006 MovieClip
"fog2"Frame 5Symbol 1008 MovieClip
"game"Frame 6Symbol 1156 MovieClip
"game"Frame 7Symbol 1302 MovieClip
"game"Frame 8Symbol 1599 MovieClip
"game"Frame 9Symbol 1620 MovieClip
"keypad"Frame 9Symbol 1626 MovieClip
"fireFail"Frame 9Symbol 1631 MovieClip
"firePass"Frame 9Symbol 1635 MovieClip
"effect"Frame 9Symbol 1636 MovieClip
"game"Frame 10Symbol 1827 MovieClip
"chat"Frame 10Symbol 1831 MovieClip
"game"Frame 11Symbol 1848 MovieClip
"game"Frame 12Symbol 1874 MovieClip
"game"Frame 13Symbol 2119 MovieClip
"tfCredits"Frame 14Symbol 2120 EditableText
"tfSecret"Frame 14Symbol 2124 EditableText
"submit"Frame 15Symbol 2132 MovieClip
"tfTime"Frame 15Symbol 2133 EditableText
"box"Symbol 22 MovieClip Frame 1Symbol 12 MovieClip
"LBar"Symbol 22 MovieClip Frame 1Symbol 18 MovieClip
"LText"Symbol 22 MovieClip Frame 1Symbol 19 EditableText
"box"Symbol 45 MovieClip Frame 1Symbol 12 MovieClip
"tfName"Symbol 77 MovieClip Frame 1Symbol 63 EditableText
"submit"Symbol 86 MovieClip [Stats] Frame 2Symbol 77 MovieClip
"conbut"Symbol 86 MovieClip [Stats] Frame 3Symbol 81 MovieClip
"texted1"Symbol 86 MovieClip [Stats] Frame 3Symbol 83 EditableText
"texted2"Symbol 86 MovieClip [Stats] Frame 3Symbol 84 EditableText
"texted3"Symbol 86 MovieClip [Stats] Frame 3Symbol 85 EditableText
"l1"Symbol 274 MovieClip Frame 1Symbol 241 Button
"l2"Symbol 274 MovieClip Frame 1Symbol 244 Button
"l3"Symbol 274 MovieClip Frame 1Symbol 247 Button
"l4"Symbol 274 MovieClip Frame 1Symbol 250 Button
"l5"Symbol 274 MovieClip Frame 1Symbol 253 Button
"l6"Symbol 274 MovieClip Frame 1Symbol 256 Button
"l7"Symbol 274 MovieClip Frame 1Symbol 259 Button
"l8"Symbol 274 MovieClip Frame 1Symbol 264 Button
"l10"Symbol 274 MovieClip Frame 1Symbol 267 Button
"l9"Symbol 274 MovieClip Frame 1Symbol 270 Button
"l11"Symbol 274 MovieClip Frame 1Symbol 273 Button
"tfKey"Symbol 284 MovieClip Frame 1Symbol 283 EditableText
"bNext"Symbol 313 MovieClip Frame 1Symbol 278 Button
"bBack"Symbol 313 MovieClip Frame 1Symbol 280 Button
"box"Symbol 341 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 371 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 373 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 375 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 377 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 379 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 381 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 391 MovieClip Frame 1Symbol 12 MovieClip
"sign"Symbol 395 MovieClip Frame 1Symbol 394 EditableText
"box"Symbol 397 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 552 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 568 MovieClip Frame 1Symbol 12 MovieClip
"boss2"Symbol 569 MovieClip Frame 1Symbol 367 MovieClip
"chata"Symbol 569 MovieClip Frame 1Symbol 375 MovieClip
"player"Symbol 569 MovieClip Frame 1Symbol 468 MovieClip
"boss"Symbol 569 MovieClip Frame 1Symbol 539 MovieClip
"tfTime"Symbol 576 MovieClip Frame 1Symbol 575 EditableText
"tfFPS"Symbol 592 MovieClip Frame 1Symbol 591 EditableText
"stimer"Symbol 593 MovieClip Frame 1Symbol 576 MovieClip
"timer"Symbol 593 MovieClip Frame 1Symbol 576 MovieClip
"effect"Symbol 593 MovieClip Frame 1Symbol 578 MovieClip
"heart"Symbol 593 MovieClip Frame 1Symbol 590 MovieClip
"box"Symbol 610 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 612 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 614 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 616 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 621 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 629 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 633 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 637 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 646 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 649 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 672 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 674 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 676 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 678 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 680 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 682 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 695 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 697 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 699 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 704 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 706 MovieClip Frame 1Symbol 12 MovieClip
"anim"Symbol 730 MovieClip Frame 1Symbol 715 MovieClip
"anim"Symbol 730 MovieClip Frame 3Symbol 722 MovieClip
"anim"Symbol 730 MovieClip Frame 4Symbol 729 MovieClip
"anim"Symbol 764 MovieClip Frame 5Symbol 763 MovieClip
"anim"Symbol 784 MovieClip Frame 1Symbol 730 MovieClip
"anim"Symbol 784 MovieClip Frame 2Symbol 764 MovieClip
"anim"Symbol 784 MovieClip Frame 3Symbol 783 MovieClip
"box"Symbol 785 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 788 MovieClip Frame 1Symbol 12 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"leafe"Symbol 796 MovieClip Frame 1Symbol 795 MovieClip
"chata"Symbol 801 MovieClip Frame 1Symbol 674 MovieClip
"player"Symbol 801 MovieClip Frame 1Symbol 468 MovieClip
"boss"Symbol 801 MovieClip Frame 1Symbol 784 MovieClip
"box"Symbol 804 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 807 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 809 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 814 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 816 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 819 MovieClip Frame 1Symbol 12 MovieClip
"anim"Symbol 842 MovieClip Frame 1Symbol 828 MovieClip
"anim"Symbol 842 MovieClip Frame 2Symbol 841 MovieClip
"anim"Symbol 867 MovieClip Frame 1Symbol 851 MovieClip
"anim"Symbol 867 MovieClip Frame 2Symbol 866 MovieClip
"anim"Symbol 892 MovieClip Frame 1Symbol 876 MovieClip
"anim"Symbol 892 MovieClip Frame 2Symbol 891 MovieClip
"anim"Symbol 893 MovieClip Frame 1Symbol 842 MovieClip
"anim"Symbol 893 MovieClip Frame 2Symbol 867 MovieClip
"anim"Symbol 893 MovieClip Frame 3Symbol 892 MovieClip
"anim"Symbol 947 MovieClip Frame 1Symbol 902 MovieClip
"anim"Symbol 947 MovieClip Frame 3Symbol 921 MovieClip
"anim"Symbol 947 MovieClip Frame 5Symbol 937 MovieClip
"anim"Symbol 947 MovieClip Frame 6Symbol 946 MovieClip
"anim"Symbol 995 MovieClip Frame 1Symbol 952 MovieClip
"anim"Symbol 995 MovieClip Frame 3Symbol 967 MovieClip
"anim"Symbol 995 MovieClip Frame 4Symbol 983 MovieClip
"anim"Symbol 995 MovieClip Frame 5Symbol 990 MovieClip
"anim"Symbol 995 MovieClip Frame 6Symbol 994 MovieClip
"anim"Symbol 996 MovieClip Frame 1Symbol 947 MovieClip
"anim"Symbol 996 MovieClip Frame 2Symbol 995 MovieClip
"box"Symbol 998 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1002 MovieClip Frame 1Symbol 12 MovieClip
"player"Symbol 1003 MovieClip Frame 1Symbol 468 MovieClip
"boss"Symbol 1003 MovieClip Frame 1Symbol 996 MovieClip
"chata"Symbol 1003 MovieClip Frame 1Symbol 1002 MovieClip
"box"Symbol 1016 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1021 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1023 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1025 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1026 MovieClip Frame 1Symbol 12 MovieClip
"tunel"Symbol 1026 MovieClip Frame 1Symbol 1025 MovieClip
"box"Symbol 1051 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1053 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1055 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1057 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1059 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1061 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1063 MovieClip Frame 1Symbol 12 MovieClip
"anim"Symbol 1155 MovieClip Frame 1Symbol 1098 MovieClip
"anim"Symbol 1155 MovieClip Frame 2Symbol 1107 MovieClip
"anim"Symbol 1155 MovieClip Frame 3Symbol 1118 MovieClip
"anim"Symbol 1155 MovieClip Frame 4Symbol 1136 MovieClip
"anim"Symbol 1155 MovieClip Frame 5Symbol 1141 MovieClip
"anim"Symbol 1155 MovieClip Frame 6Symbol 1148 MovieClip
"anim"Symbol 1155 MovieClip Frame 7Symbol 1151 MovieClip
"tower"Symbol 1156 MovieClip Frame 1Symbol 1026 MovieClip
"towerwall"Symbol 1156 MovieClip Frame 1Symbol 1028 MovieClip
"floor1"Symbol 1156 MovieClip Frame 1Symbol 1061 MovieClip
"npc1"Symbol 1156 MovieClip Frame 1Symbol 1066 MovieClip
"player"Symbol 1156 MovieClip Frame 1Symbol 468 MovieClip
"boss"Symbol 1156 MovieClip Frame 1Symbol 1155 MovieClip
"anim"Symbol 1269 MovieClip Frame 1Symbol 1222 MovieClip
"anim"Symbol 1269 MovieClip Frame 2Symbol 1231 MovieClip
"anim"Symbol 1269 MovieClip Frame 4Symbol 1236 MovieClip
"anim"Symbol 1269 MovieClip Frame 6Symbol 1244 MovieClip
"anim"Symbol 1269 MovieClip Frame 7Symbol 1249 MovieClip
"anim"Symbol 1269 MovieClip Frame 8Symbol 1260 MovieClip
"anim"Symbol 1269 MovieClip Frame 9Symbol 1264 MovieClip
"anim"Symbol 1269 MovieClip Frame 10Symbol 1268 MovieClip
"box"Symbol 1274 MovieClip Frame 1Symbol 12 MovieClip
"block"Symbol 1302 MovieClip Frame 1Symbol 785 MovieClip
"boss"Symbol 1302 MovieClip Frame 1Symbol 1269 MovieClip
"player"Symbol 1302 MovieClip Frame 1Symbol 468 MovieClip
"box"Symbol 1352 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1374 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1376 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1378 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1384 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1386 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1388 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1390 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1392 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1394 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1396 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1400 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1402 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1404 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1406 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1408 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1412 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1414 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1416 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1418 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1420 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1422 MovieClip Frame 1Symbol 12 MovieClip
"anim"Symbol 1483 MovieClip Frame 1Symbol 1427 MovieClip
"anim"Symbol 1483 MovieClip Frame 2Symbol 1432 MovieClip
"anim"Symbol 1483 MovieClip Frame 3Symbol 1433 MovieClip
"anim"Symbol 1483 MovieClip Frame 4Symbol 1481 MovieClip
"anim"Symbol 1565 MovieClip Frame 1Symbol 1539 MovieClip
"anim"Symbol 1565 MovieClip Frame 2Symbol 1548 MovieClip
"anim"Symbol 1565 MovieClip Frame 3Symbol 1551 MovieClip
"anim"Symbol 1565 MovieClip Frame 5Symbol 1559 MovieClip
"anim"Symbol 1565 MovieClip Frame 6Symbol 1564 MovieClip
"box"Symbol 1568 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1570 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1574 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1576 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1578 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1580 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1582 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1584 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1588 MovieClip Frame 1Symbol 12 MovieClip
"cavebottom"Symbol 1599 MovieClip Frame 1Symbol 1408 MovieClip
"boss2"Symbol 1599 MovieClip Frame 1Symbol 1483 MovieClip
"npc1"Symbol 1599 MovieClip Frame 1Symbol 1488 MovieClip
"npc2"Symbol 1599 MovieClip Frame 1Symbol 1497 MovieClip
"player"Symbol 1599 MovieClip Frame 1Symbol 468 MovieClip
"boss1"Symbol 1599 MovieClip Frame 1Symbol 1565 MovieClip
"b6block"Symbol 1599 MovieClip Frame 1Symbol 785 MovieClip
"b6plat1"Symbol 1599 MovieClip Frame 1Symbol 1568 MovieClip
"b7plat1"Symbol 1599 MovieClip Frame 1Symbol 1568 MovieClip
"b7plat2"Symbol 1599 MovieClip Frame 1Symbol 1568 MovieClip
"b7plat3"Symbol 1599 MovieClip Frame 1Symbol 1568 MovieClip
"heart"Symbol 1599 MovieClip Frame 1Symbol 182 MovieClip [Heart]
"mountaintop"Symbol 1599 MovieClip Frame 1Symbol 1588 MovieClip
"effect2"Symbol 1620 MovieClip Frame 1Symbol 1616 MovieClip
"player"Symbol 1620 MovieClip Frame 1Symbol 1619 MovieClip
"box"Symbol 1668 MovieClip Frame 1Symbol 12 MovieClip
"gem"Symbol 1676 MovieClip Frame 1Symbol 1675 MovieClip
"box"Symbol 1676 MovieClip Frame 1Symbol 12 MovieClip
"anim"Symbol 1749 MovieClip Frame 2Symbol 1687 MovieClip
"anim"Symbol 1749 MovieClip Frame 4Symbol 1692 MovieClip
"anim"Symbol 1749 MovieClip Frame 6Symbol 1742 MovieClip
"anim"Symbol 1749 MovieClip Frame 7Symbol 1747 MovieClip
"anim"Symbol 1749 MovieClip Frame 8Symbol 1748 MovieClip
"anim"Symbol 1819 MovieClip Frame 2Symbol 1760 MovieClip
"anim"Symbol 1819 MovieClip Frame 4Symbol 1765 MovieClip
"anim"Symbol 1819 MovieClip Frame 6Symbol 1808 MovieClip
"anim"Symbol 1819 MovieClip Frame 7Symbol 1817 MovieClip
"anim"Symbol 1819 MovieClip Frame 8Symbol 1818 MovieClip
"ground"Symbol 1827 MovieClip Frame 1Symbol 1668 MovieClip
"plat3"Symbol 1827 MovieClip Frame 1Symbol 1676 MovieClip
"plat1"Symbol 1827 MovieClip Frame 1Symbol 1676 MovieClip
"plat6"Symbol 1827 MovieClip Frame 1Symbol 1676 MovieClip
"plat4"Symbol 1827 MovieClip Frame 1Symbol 1676 MovieClip
"plat7"Symbol 1827 MovieClip Frame 1Symbol 1676 MovieClip
"plat5"Symbol 1827 MovieClip Frame 1Symbol 1676 MovieClip
"plat2"Symbol 1827 MovieClip Frame 1Symbol 1676 MovieClip
"boss1"Symbol 1827 MovieClip Frame 1Symbol 1749 MovieClip
"player"Symbol 1827 MovieClip Frame 1Symbol 468 MovieClip
"boss2"Symbol 1827 MovieClip Frame 1Symbol 1819 MovieClip
"stairs"Symbol 1827 MovieClip Frame 1Symbol 1826 MovieClip
"tf1"Symbol 1831 MovieClip Frame 1Symbol 1828 EditableText
"tf2"Symbol 1831 MovieClip Frame 1Symbol 1829 EditableText
"tf3"Symbol 1831 MovieClip Frame 1Symbol 1830 EditableText
"player"Symbol 1848 MovieClip Frame 1Symbol 468 MovieClip
"anim"Symbol 1870 MovieClip Frame 2Symbol 1863 MovieClip
"npc2"Symbol 1874 MovieClip Frame 1Symbol 1852 MovieClip
"player"Symbol 1874 MovieClip Frame 1Symbol 1870 MovieClip
"npc1"Symbol 1874 MovieClip Frame 1Symbol 1873 MovieClip
"box"Symbol 1889 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1937 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1949 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1954 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1956 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1958 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1960 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1962 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1964 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1966 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1968 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1976 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1978 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1980 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1982 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1984 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1986 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1988 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1990 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1992 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1994 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1996 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 1998 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 2000 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 2002 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 2009 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 2019 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 2021 MovieClip Frame 1Symbol 12 MovieClip
"anim"Symbol 2088 MovieClip Frame 1Symbol 2062 MovieClip
"anim"Symbol 2088 MovieClip Frame 2Symbol 2071 MovieClip
"anim"Symbol 2088 MovieClip Frame 5Symbol 2078 MovieClip
"anim"Symbol 2088 MovieClip Frame 6Symbol 2081 MovieClip
"box"Symbol 2093 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 2095 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 2100 MovieClip Frame 1Symbol 12 MovieClip
"box"Symbol 2110 MovieClip Frame 1Symbol 12 MovieClip
"waterfall"Symbol 2119 MovieClip Frame 1Symbol 1905 MovieClip
"watergear"Symbol 2119 MovieClip Frame 1Symbol 1942 MovieClip
"bridge"Symbol 2119 MovieClip Frame 1Symbol 1976 MovieClip
"tief"Symbol 2119 MovieClip Frame 1Symbol 2028 MovieClip
"npc"Symbol 2119 MovieClip Frame 1Symbol 2031 MovieClip
"merle"Symbol 2119 MovieClip Frame 1Symbol 2036 MovieClip
"pau"Symbol 2119 MovieClip Frame 1Symbol 2041 MovieClip
"wrench"Symbol 2119 MovieClip Frame 1Symbol 2055 MovieClip
"player"Symbol 2119 MovieClip Frame 1Symbol 2088 MovieClip
"cloth"Symbol 2119 MovieClip Frame 1Symbol 2118 MovieClip
"chief"Symbol 2119 MovieClip Frame 1Symbol 504 MovieClip
"tfName"Symbol 2132 MovieClip Frame 1Symbol 2126 EditableText

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS1/AS2.
ExportAssets (56)Timeline Frame 1Symbol 1 as "EFont"
ExportAssets (56)Timeline Frame 1Symbol 7 as "blood"
ExportAssets (56)Timeline Frame 1Symbol 9 as "Death_Message"
ExportAssets (56)Timeline Frame 2Symbol 57 as "boss1Disk"
ExportAssets (56)Timeline Frame 2Symbol 86 as "Stats"
ExportAssets (56)Timeline Frame 2Symbol 89 as "bulBossL2"
ExportAssets (56)Timeline Frame 2Symbol 92 as "b3-a2-ball"
ExportAssets (56)Timeline Frame 2Symbol 95 as "b3-a3-ball"
ExportAssets (56)Timeline Frame 2Symbol 97 as "b4_cola"
ExportAssets (56)Timeline Frame 2Symbol 104 as "b4_fire"
ExportAssets (56)Timeline Frame 2Symbol 107 as "b4_kosc1"
ExportAssets (56)Timeline Frame 2Symbol 110 as "b4_kosc2"
ExportAssets (56)Timeline Frame 2Symbol 113 as "b4_kosc3"
ExportAssets (56)Timeline Frame 2Symbol 116 as "b4_fireball"
ExportAssets (56)Timeline Frame 2Symbol 119 as "b4_plaszcz"
ExportAssets (56)Timeline Frame 2Symbol 122 as "b5_fire1"
ExportAssets (56)Timeline Frame 2Symbol 125 as "b5_fire2"
ExportAssets (56)Timeline Frame 2Symbol 128 as "b5_bul1"
ExportAssets (56)Timeline Frame 2Symbol 131 as "b5_bul2"
ExportAssets (56)Timeline Frame 2Symbol 134 as "b6_sopel"
ExportAssets (56)Timeline Frame 2Symbol 137 as "b6_fire"
ExportAssets (56)Timeline Frame 2Symbol 167 as "b7_bomb"
ExportAssets (56)Timeline Frame 2Symbol 178 as "b7_tencza"
ExportAssets (56)Timeline Frame 2Symbol 179 as "LapRecord"
ExportAssets (56)Timeline Frame 2Symbol 182 as "Heart"
ExportAssets (56)Timeline Frame 2Symbol 185 as "bf1_fire"
ExportAssets (56)Timeline Frame 2Symbol 190 as "bf2_laser"
ExportAssets (56)Timeline Frame 2Symbol 196 as "boss-rumble"
ExportAssets (56)Timeline Frame 2Symbol 197 as "birds-stream"
ExportAssets (56)Timeline Frame 2Symbol 198 as "birds"
ExportAssets (56)Timeline Frame 2Symbol 199 as "water2"
ExportAssets (56)Timeline Frame 2Symbol 200 as "music-folk"
ExportAssets (56)Timeline Frame 2Symbol 201 as "cafe"
ExportAssets (56)Timeline Frame 2Symbol 202 as "club"
ExportAssets (56)Timeline Frame 2Symbol 203 as "music-club"
ExportAssets (56)Timeline Frame 2Symbol 204 as "torch"
ExportAssets (56)Timeline Frame 2Symbol 205 as "townwalk"
ExportAssets (56)Timeline Frame 2Symbol 206 as "traffic"
ExportAssets (56)Timeline Frame 2Symbol 207 as "traffic2"
ExportAssets (56)Timeline Frame 2Symbol 208 as "schoolbell"
ExportAssets (56)Timeline Frame 2Symbol 209 as "church"
ExportAssets (56)Timeline Frame 2Symbol 210 as "choping"
ExportAssets (56)Timeline Frame 2Symbol 211 as "wolf"
ExportAssets (56)Timeline Frame 2Symbol 212 as "scream"
ExportAssets (56)Timeline Frame 2Symbol 213 as "thunder"
ExportAssets (56)Timeline Frame 2Symbol 214 as "wind"
ExportAssets (56)Timeline Frame 2Symbol 215 as "sea"
ExportAssets (56)Timeline Frame 2Symbol 216 as "highway"
ExportAssets (56)Timeline Frame 2Symbol 217 as "rap"
ExportAssets (56)Timeline Frame 2Symbol 218 as "riverloop"
ExportAssets (56)Timeline Frame 2Symbol 219 as "snowwind"
ExportAssets (56)Timeline Frame 2Symbol 220 as "waterdrop1"
ExportAssets (56)Timeline Frame 2Symbol 221 as "waterdrop2"
ExportAssets (56)Timeline Frame 2Symbol 222 as "cricket"
ExportAssets (56)Timeline Frame 2Symbol 223 as "eagle"
ExportAssets (56)Timeline Frame 2Symbol 224 as "hawk"
ExportAssets (56)Timeline Frame 2Symbol 225 as "jungleday"
ExportAssets (56)Timeline Frame 2Symbol 226 as "meadowlark"
ExportAssets (56)Timeline Frame 2Symbol 227 as "oriole"
ExportAssets (56)Timeline Frame 2Symbol 228 as "skylark"
ExportAssets (56)Timeline Frame 2Symbol 229 as "woodlark"
ExportAssets (56)Timeline Frame 2Symbol 230 as "spark"
ExportAssets (56)Timeline Frame 2Symbol 231 as "power-shot"
ExportAssets (56)Timeline Frame 2Symbol 232 as "gone"
ExportAssets (56)Timeline Frame 2Symbol 233 as "beep"
ExportAssets (56)Timeline Frame 2Symbol 234 as "slash"

Labels

"idzie"Symbol 730 MovieClip Frame 1
"obrywa"Symbol 730 MovieClip Frame 2
"atak"Symbol 730 MovieClip Frame 3
"umiera"Symbol 730 MovieClip Frame 4
"idzie"Symbol 764 MovieClip Frame 1
"obrywa"Symbol 764 MovieClip Frame 2
"skacze"Symbol 764 MovieClip Frame 3
"atakuje"Symbol 764 MovieClip Frame 4
"umiera"Symbol 764 MovieClip Frame 5
"idzie"Symbol 783 MovieClip Frame 1
"obrywa"Symbol 783 MovieClip Frame 2
"umiera"Symbol 783 MovieClip Frame 3
"phase1"Symbol 784 MovieClip Frame 1
"phase2"Symbol 784 MovieClip Frame 2
"phase3"Symbol 784 MovieClip Frame 3
"idzie"Symbol 947 MovieClip Frame 1
"obrywa"Symbol 947 MovieClip Frame 2
"umiera"Symbol 947 MovieClip Frame 3
"skacze"Symbol 947 MovieClip Frame 4
"atakuje1"Symbol 947 MovieClip Frame 5
"atakuj2"Symbol 947 MovieClip Frame 6
"leci"Symbol 995 MovieClip Frame 1
"obrywa"Symbol 995 MovieClip Frame 2
"umiera"Symbol 995 MovieClip Frame 3
"atakuje3"Symbol 995 MovieClip Frame 4
"atakuje1"Symbol 995 MovieClip Frame 5
"atakuje2"Symbol 995 MovieClip Frame 6
"stoi"Symbol 1155 MovieClip Frame 1
"idzie"Symbol 1155 MovieClip Frame 2
"poczatek"Symbol 1155 MovieClip Frame 3
"atak1"Symbol 1155 MovieClip Frame 4
"atak2"Symbol 1155 MovieClip Frame 5
"atak3"Symbol 1155 MovieClip Frame 6
"obrywa"Symbol 1155 MovieClip Frame 7
"smierc"Symbol 1155 MovieClip Frame 8
"stoi"Symbol 1269 MovieClip Frame 1
"idzie"Symbol 1269 MovieClip Frame 2
"skok"Symbol 1269 MovieClip Frame 3
"block"Symbol 1269 MovieClip Frame 4
"dead"Symbol 1269 MovieClip Frame 5
"atak1"Symbol 1269 MovieClip Frame 6
"atak2"Symbol 1269 MovieClip Frame 7
"atak3"Symbol 1269 MovieClip Frame 8
"atak4"Symbol 1269 MovieClip Frame 9
"atak5"Symbol 1269 MovieClip Frame 10
"idle1"Symbol 1483 MovieClip Frame 1
"attack"Symbol 1483 MovieClip Frame 2
"idleSSJ"Symbol 1483 MovieClip Frame 3
"transform"Symbol 1483 MovieClip Frame 4
"dead"Symbol 1483 MovieClip Frame 5
"stoi"Symbol 1565 MovieClip Frame 1
"idzie"Symbol 1565 MovieClip Frame 2
"obrywa"Symbol 1565 MovieClip Frame 3
"dead"Symbol 1565 MovieClip Frame 4
"atak1"Symbol 1565 MovieClip Frame 5
"atak2"Symbol 1565 MovieClip Frame 6
"idle"Symbol 1749 MovieClip Frame 1
"walk"Symbol 1749 MovieClip Frame 2
"jump"Symbol 1749 MovieClip Frame 3
"hurt"Symbol 1749 MovieClip Frame 4
"dead"Symbol 1749 MovieClip Frame 5
"trans"Symbol 1749 MovieClip Frame 6
"attack"Symbol 1749 MovieClip Frame 7
"killer"Symbol 1749 MovieClip Frame 8
"idle"Symbol 1819 MovieClip Frame 1
"walk"Symbol 1819 MovieClip Frame 2
"jump"Symbol 1819 MovieClip Frame 3
"hurt"Symbol 1819 MovieClip Frame 4
"dead"Symbol 1819 MovieClip Frame 5
"transform"Symbol 1819 MovieClip Frame 6
"attack"Symbol 1819 MovieClip Frame 7
"killer"Symbol 1819 MovieClip Frame 8




http://swfchan.com/25/123389/info.shtml
Created: 2/3 -2019 19:04:56 Last modified: 2/3 -2019 19:04:56 Server time: 29/04 -2024 08:41:01