Frame 1
_root.game = new Object();
_root.game.canKick = true;
_root.game.bitCompleted = false;
_root.game.intLevel = 1;
_root.game.bitSoundOn = true;
_root.playSound = function (strSoundName) {
if (_root.game.bitSoundOn) {
var _local2 = new Sound();
_local2.attachSound(strSoundName);
_local2.start();
}
};
_root.func = new Object();
_root.func.flyMoglin = function () {
_root.func.fly(_root.mcStage.mcMoglin, 50);
_root.mcStage.mcMoglin.mcArrow._visible = false;
};
_root.func.fly = function (mcFlyObj) {
mcFlyObj.gotoAndPlay("Flail");
_root.mcStage.mcReset._visible = true;
mcFlyObj.intPower = (5 * _root.game.intPower) / 100;
mcFlyObj.intGravity = 1;
mcFlyObj.intWindSpeed = 0;
mcFlyObj.intXIntensity = 5;
mcFlyObj.intYIntensity = 6;
mcFlyObj.intAngle = _root.game.intAngle;
mcFlyObj.intSpeedX = 0;
mcFlyObj.intSpeedY = 0;
mcFlyObj.intAcceleration = 0;
mcFlyObj.Bouncing = false;
mcFlyObj.onEnterFrame = function () {
this.intAcceleration = this.intAcceleration + this.intGravity;
this.intSpeedX = ((this.intXIntensity * this.intPower) * Math.cos(((this.intAngle * 2) * Math.PI) / 360)) + this.intWindSpeed;
this.intSpeedY = ((this.intYIntensity * this.intPower) * Math.sin(((this.intAngle * 2) * Math.PI) / 360)) - this.intAcceleration;
this._x = this._x + this.intSpeedX;
this._y = this._y - this.intSpeedY;
this.intNewAngle = Math.atan(this.intSpeedY / this.intSpeedX) / (Math.PI/180);
if (this.intSpeedX < 0) {
this.intNewAngle = this.intNewAngle + 180;
}
if ((this.intSpeedX >= 0) && (this.intSpeedY)) {
this.intNewAngle = this.intNewAngle + 360;
}
this._rotation = this.intNewAngle * -1;
this.Bouncing = false;
for (var _local3 in _root.mcStage) {
if (_root.mcStage[_local3].isSolid && (!_root.mcStage[_local3].isHit)) {
if (this.mcHit.hitTest(_root.mcStage[_local3])) {
trace("HIT");
_root.mcStage[_local3].onHit(this);
}
}
}
};
};
_root.func.fail = function () {
_root.mcStage.mcContinue.gotoAndPlay("Fail");
};
_root.func.pass = function () {
};
_root.func.showResult = function () {
_root.mcStage.mcMoglin.gotoAndPlay("Splat");
_root.mcStage.mcContinue.gotoAndPlay("Waiting");
};
_root.func.showContinue = function () {
clearInterval(_root.func.pass.intContinueTimer);
_root.mcStage.mcContinue.gotoAndPlay("Pass");
};
_root.func.retryLevel = function () {
_root.game.bitCompleted = false;
_root.game.canKick = true;
_root.mcStage.mcReset._visible = false;
_root.mcStage.gotoAndPlay("Blank");
};
_root.func.nextLevel = function () {
_root.game.intLevel++;
_root.game.canKick = true;
_root.game.bitCompleted = false;
_root.mcStage.gotoAndPlay("Blank");
};
Stage.showMenu = false;
var strURL = _url.toLowerCase();
trace(strURL);
if ((((strURL.indexOf("battleon.com") == -1) && (strURL.indexOf("adventurequest.com") == -1)) && (strURL.indexOf("ebilgames.com") == -1)) && (strURL.indexOf("dragonfable.com") == -1)) {
trace("use tracking");
indicator = _url.toLowerCase();
_root.strURL = "http://www.battleon.com/default.asp?cabbcc2daa433f68eec0c3a7ad85e5000";
trace(strURL);
} else {
trace("no tracking");
indicator = "Battleon.com";
_root.strURL = "http://www.battleon.com/default.asp";
trace(strURL);
}
soundOn = true;
levelcoins = new Array(1, 1, 4, 1, 3, 3, 2, 3, 3, 2, 2, 1, 1, 9, 6, 21, 1, 2, 3, 2, 3, 3, 10, 2, 4, 2, 3, 3, 6, 4, 4, 10, 4, 5, 9, 30, 13, 4, 8, 11, 2, 6, 2, 2, 2, 2, 4, 4, 2, 3);
playerlevelcoins = new Array(50);
clearlevels = new Array(50);
clearcoins = new Array(50);
userHighscore = SharedObject.getLocal("TwillyHighScoreData");
if (userHighscore.data.clearlevels != null) {
clearlevels = userHighscore.data.clearlevels;
}
if (userHighscore.data.clearcoins != null) {
clearcoins = userHighscore.data.clearcoins;
}
if (userHighscore.data.playerlevelcoins != null) {
playerlevelcoins = userHighscore.data.playerlevelcoins;
}
stop();
Instance of Symbol 94 MovieClip [GT-Preloader] in Frame 1
//component parameters
onClipEvent (construct) {
strTitle = "Monster Hunt";
strSubTitle = "Loading!";
strFrame = "Init";
}
Frame 9
_root.mcMusic.stopMusic();
_root.mcMusic.playMusic("Music-Twilly.wav");
stop();
Instance of Symbol 213 MovieClip in Frame 9
on (press) {
if (_root.game.bitSoundOn) {
_root.mcMusic.stopMusic();
_root.game.bitSoundOn = false;
gotoAndStop ("Off");
} else {
_root.game.bitSoundOn = true;
_root.mcMusic.playMusic("Music-Twilly.wav");
gotoAndStop ("On");
}
}
Frame 15
_root.mcMusic.stopMusic();
stop();
Frame 29
_root.mcMusic.stopMusic();
_root.mcMusic.playMusic("Music-Twilly.wav");
for (var i in levelcoins) {
if (clearlevels[i]) {
if (playerlevelcoins[i] != undefined) {
eval ("p" + i).text = (playerlevelcoins[i] + " / ") + levelcoins[i];
} else {
eval ("p" + i).text = "0 / " + levelcoins[i];
}
} else {
eval ("p" + i).text = "? / ?";
}
}
stop();
Symbol 23 MovieClip [Twilly] Frame 1
stop();
Symbol 23 MovieClip [Twilly] Frame 17
stop();
Symbol 23 MovieClip [Twilly] Frame 29
gotoAndPlay ("Flail");
Symbol 35 Button
on (release) {
play();
}
Symbol 37 MovieClip Frame 1
stop();
Symbol 37 MovieClip Frame 2
stop();
Instance of Symbol 46 MovieClip "base" in Symbol 50 MovieClip Frame 1
onClipEvent (load) {
obj = _parent._parent._parent.myData;
_root.game.changeMyColor(this, obj, "Skin", "none");
}
Instance of Symbol 48 MovieClip "shade" in Symbol 50 MovieClip Frame 1
onClipEvent (load) {
obj = _parent._parent._parent.myData;
_root.game.changeMyColor(this, obj, "Skin", "darkskin");
}
Symbol 57 MovieClip Frame 1
stop();
Symbol 57 MovieClip Frame 2
stop();
Symbol 57 MovieClip Frame 3
stop();
Symbol 57 MovieClip Frame 4
stop();
Symbol 57 MovieClip Frame 5
stop();
Symbol 57 MovieClip Frame 6
stop();
Symbol 57 MovieClip Frame 7
stop();
Symbol 60 MovieClip Frame 1
stop();
Symbol 60 MovieClip Frame 2
stop();
Symbol 63 MovieClip Frame 1
stop();
Symbol 63 MovieClip Frame 2
stop();
Symbol 63 MovieClip Frame 3
stop();
Symbol 63 MovieClip Frame 4
stop();
Symbol 63 MovieClip Frame 5
stop();
Instance of Symbol 70 MovieClip in Symbol 76 MovieClip Frame 1
onClipEvent (load) {
obj = _parent._parent._parent.myData;
_root.game.changeMyColor(this, obj, "Skin", "none");
}
Instance of Symbol 72 MovieClip in Symbol 76 MovieClip Frame 1
onClipEvent (load) {
obj = _parent._parent._parent.myData;
_root.game.changeMyColor(this, obj, "Skin", "darkskin");
}
Instance of Symbol 74 MovieClip in Symbol 76 MovieClip Frame 1
onClipEvent (load) {
obj = _parent._parent._parent.myData;
_root.game.changeMyColor(this, obj, "Skin", "darker");
}
Instance of Symbol 66 MovieClip "base" in Symbol 77 MovieClip Frame 1
onClipEvent (load) {
obj = _parent._parent._parent.myData;
_root.game.changeMyColor(this, obj, "Hair", "none");
}
Instance of Symbol 68 MovieClip "shade" in Symbol 77 MovieClip Frame 1
onClipEvent (load) {
obj = _parent._parent._parent.myData;
_root.game.changeMyColor(this, obj, "Hair", "dark");
}
Symbol 78 MovieClip Frame 1
stop();
Symbol 82 MovieClip [Warrior] Frame 1
stop();
Symbol 82 MovieClip [Warrior] Frame 12
gotoAndPlay ("Idle");
Instance of Symbol 86 MovieClip "base" in Symbol 87 MovieClip [Arrow] Frame 1
onClipEvent (load) {
this._visible = false;
}
onClipEvent (mouseMove) {
if (_root.game.canKick) {
intX = this._xmouse;
intY = this._ymouse;
if (intX < 0) {
intX = 0;
}
if (intY > 0) {
intY = 0;
}
intY = intY * -1;
intAngle = Math.atan(intY / intX) / (Math.PI/180);
if (intX < 0) {
intAngle = intAngle + 180;
}
if ((intX >= 0) && (intY < 0)) {
intAngle = intAngle + 360;
}
if ((!intAngle) > 0) {
intAngle = 0;
}
_root.game.intAngle = Math.round(intAngle);
_root.outAngle = Math.round(intAngle);
_parent.pointer._rotation = intAngle * -1;
intDistance = Math.sqrt((intX * intX) + (intY * intY));
intScale = Math.ceil((intDistance - 280) / 12.2) + 100;
_parent.pointer._xscale = intScale;
var intPower = Math.ceil(intScale - 100);
if (intPower < 0) {
intPower = 0;
}
_root.mcStage.mcBottom.intPower = intPower;
_root.mcStage.mcBottom.mcBar.mcDial._x = intPower * 2;
_root.game.intPower = Math.ceil(intPower / 2) + 50;
if (_root.game.intPower > 100) {
_root.game.intPower = 100;
}
_root.outPower = _root.game.intPower;
updateAfterEvent();
}
}
Symbol 94 MovieClip [GT-Preloader] Frame 1
if (_root.getBytesLoaded() >= _root.getBytesTotal()) {
_parent.loaded = true;
_parent.status = "Ready";
_parent.gotoAndStop("Init");
} else {
gotoAndStop ("loading");
strLoad.text = ("Loading " + String(Math.ceil((_root.getBytesLoaded() * 100) / _root.getBytesTotal()))) + "%";
}
Symbol 94 MovieClip [GT-Preloader] Frame 2
gotoAndPlay (1);
Symbol 133 MovieClip Frame 1
stop();
Symbol 177 Button
on (press) {
gotoAndPlay ("levelSelect");
_root.playSound("Button-Press.wav");
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}
Symbol 180 Button
on (release) {
_root.mcMusic.stopMusic();
_root.game.intLevel = 1;
gotoAndPlay ("Game");
_root.playSound("Button-Press.wav");
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}
Symbol 182 Button
on (release) {
_root.playSound("Button-Press.wav");
getURL (_root.strURL);
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}
Symbol 202 Button
on (release) {
_root.playSound("Button-Press.wav");
getURL (_root.strURL);
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}
Symbol 208 Button
on (press) {
gotoAndStop ("Off");
}
Symbol 211 Button
on (press) {
gotoAndStop ("On");
}
Symbol 213 MovieClip Frame 1
if (_root.soundOn == true) {
_root.soundStatus = "Sound is On";
stop();
} else {
_root.soundStatus = "Sound is Off";
gotoAndStop ("Off");
}
stop();
Symbol 213 MovieClip Frame 5
_root.soundStatus = "Sound is Off";
stop();
Symbol 217 MovieClip Frame 1
function playMusic(strSoundName) {
if (_root.game.bitSoundOn) {
my_music.attachSound(strSoundName);
my_music.start(0, 99999);
}
}
function stopMusic() {
my_music.stop();
}
var my_music = new Sound();
_visible = false;
playMusic("Music-Twilly.wav");
stop();
Symbol 265 MovieClip Frame 28
gotoAndPlay (1);
Symbol 266 MovieClip Frame 1
_root.playSound("Footstep.wav");
Symbol 266 MovieClip Frame 15
_root.playSound("Footstep.wav");
Symbol 281 Button
on (press) {
play();
}
Symbol 303 MovieClip Frame 1
stop();
Symbol 303 MovieClip Frame 2
stop();
Symbol 303 MovieClip Frame 3
stop();
Symbol 303 MovieClip Frame 4
stop();
Symbol 315 MovieClip [TMPe5xtyxw370] Frame 1
function onUpdate() {
var _local5;
var _local4;
if (_root.game.convertBubbleText != undefined) {
strName = _root.game.convertBubbleText(strName);
strText = _root.game.convertBubbleText(strText);
}
this.helpernumbers._visible = intStyle == 0;
this.mcNamePlate._visible = bitShowNamePlate;
strText = ((("<font color='#" + strTextColor.toString(16)) + "'>") + strText) + "</font>";
var _local6 = new Color(mcBG);
_local6.setRGB(strBGColor);
_local5 = 1;
while (_local5 < 11) {
_local4 = "a" + _local5;
if ((intStyle == 0) || (intStyle == _local5)) {
this[_local4]._visible = true;
this[_local4].gotoAndStop(strArrowStyle);
_local6 = new Color(this[_local4].mcArrow);
_local6.setRGB(strBGColor);
} else {
this[_local4]._visible = false;
}
_local5++;
}
if (bitStop == true) {
_parent.stop();
}
}
onUpdate();
stop();
Symbol 351 MovieClip Frame 48
_root.playSound("alarm.wav");
Symbol 351 MovieClip Frame 77
_root.playSound("Smash_MetalLockShatter.wav");
Symbol 351 MovieClip Frame 140
_root.playSound("rumbleTummy.wav");
Symbol 351 MovieClip Frame 221
_root.mcMusic.playMusic("Music-Twilly.wav");
_root.playSound("Door_Close.wav");
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 351 MovieClip Frame 248
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "Good morning sunshine! want some Her-O's for breakfast?";
intStyle = 6;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = true;
}
Symbol 351 MovieClip Frame 270
_root.playSound("plink.wav");
Symbol 351 MovieClip Frame 381
_root.playSound("kbird2.wav");
Symbol 351 MovieClip Frame 409
_root.playSound("Twilly-Oooh.wav");
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 351 MovieClip Frame 439
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "Look! There's a new bakery! Cakes and cookies taste much better than Twilly!";
intStyle = 10;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = true;
}
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 351 MovieClip Frame 440
//component parameters
onClipEvent (construct) {
strName = "";
strText = "Hmmm...do I dare eat desert for breakfast?";
intStyle = 1;
strArrowStyle = "Thought";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 351 MovieClip Frame 441
//component parameters
onClipEvent (construct) {
strName = "";
strText = "To the Bakery!";
intStyle = 1;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Symbol 351 MovieClip Frame 455
_root.playSound("Hit-Wall.wav");
Symbol 351 MovieClip Frame 475
_root.mcMusic.stopMusic();
_parent.gotoAndPlay("F1");
Symbol 352 Button
on (release) {
_root.mcMusic.stopMusic();
play();
}
Symbol 392 Button
on (press) {
if (_root.game.canKick) {
_root.game.canKick = false;
mcWarrior.gotoAndPlay("Kick");
mcMoglin.gotoAndPlay("Flail");
_root.func.flyMoglin(_parent.mcMoglin);
_root.playSound("Hit.wav");
}
}
Symbol 399 Button
on (release) {
_root.playSound("Button-Press.wav");
_parent.perfectMsg.gotoAndStop(1);
_parent.playerCoins = 0;
_root.func.retryLevel();
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}
Symbol 401 Button
on (release) {
_root.playSound("Button-Press.wav");
_parent.perfectMsg.gotoAndStop(1);
if (_root.game.intLevel == 50) {
_root.mcStage.gotoAndPlay("CS-End");
}
if (_root.game.intLevel == 51) {
_root.mcStage.gotoAndPlay("DF-Bonus");
} else {
_root.func.nextLevel();
}
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}
Symbol 405 MovieClip Frame 1
_parent.mcReset._x = _parent.mcArrow._x;
_parent.mcReset._y = _parent.mcArrow._y;
_parent.mcReset.visible = false;
stop();
Instance of Symbol 394 MovieClip in Symbol 405 MovieClip Frame 1
onClipEvent (load) {
_visible = false;
}
Symbol 405 MovieClip Frame 9
_root.mcStage.mcMoglin.gotoAndPlay("Splat");
Symbol 405 MovieClip Frame 24
if (_root.game.bitCompleted == true) {
_parent.mcReset._visible = false;
_root.mcStage.mcContinue.gotoAndPlay("Pass");
} else {
_root.mcStage.mcContinue.gotoAndPlay("Fail");
}
Symbol 405 MovieClip Frame 31
arrWhoops = new Array();
arrWhoops.push("Whoops!");
arrWhoops.push("That will leave a mark!");
arrWhoops.push("Ouch!");
arrWhoops.push("Doh!");
arrWhoops.push("Lock and load!");
arrWhoops.push("Holy Moglin burgers!");
arrWhoops.push("I was so close!");
arrWhoops.push("and... it's.... bad!?");
arrWhoops.push("The quarterback... is toast!");
arrWhoops.push("Twilly should get frequent flyer miles for this....");
arrWhoops.push("Ouch!");
arrWhoops.push("Ack!");
arrWhoops.push("Yikes!");
arrWhoops.push("Egads!");
arrWhoops.push("Woah!");
arrWhoops.push("Oh snap!");
arrWhoops.push("The horror!");
arrWhoops.push("Thats gotta hurt!");
arrWhoops.push("Oh the pain!");
arrWhoops.push("Ouch!");
intRoll = Math.floor(Math.random() * arrWhoops.length);
strWhoops = ("\"" + arrWhoops[intRoll]) + "\"";
onMouseUp = function () {
_root.playSound("Button-Press.wav");
_parent.perfectMsg.gotoAndStop(1);
_parent.playerCoins = 0;
_root.func.retryLevel();
};
stop();
Symbol 405 MovieClip Frame 39
if (!_root.clearlevels[_root.game.intLevel - 1]) {
_root.clearlevels[_root.game.intLevel - 1] = true;
_root.userHighscore.data.clearlevels = _root.clearlevels;
_root.userHighscore.flush;
trace(_root.userHighscore.data.clearlevels[_root.game.intLevel - 1]);
trace("stored clear level");
}
_root.playSound("Button-Press3.wav");
arrReward = new Array();
arrReward.push("Teamwork will get you everywhere...");
arrReward.push("Motivation is a swift kick in the rump...");
arrReward.push("Twilly should get frequent flyer miles for this....");
intRoll = Math.floor(Math.random() * arrReward.length);
strReward = arrReward[intRoll];
if (_parent.playerCoins == _parent.levelCoins) {
_parent.perfectMsg.gotoAndPlay("perfect");
if (!_root.clearcoins[_root.game.intLevel - 1]) {
_root.clearcoins[_root.game.intLevel - 1] = true;
_root.playerlevelcoins[_root.game.intLevel - 1] = _parent.playerCoins;
_root.userHighscore.data.clearcoins = _root.clearcoins;
_root.userHighscore.data.playerlevelcoins = _root.playerlevelcoins;
_root.userHighscore.flush;
trace(_root.userHighscore.data.clearcoins[_root.game.intLevel - 1]);
trace("stored clear coins");
}
} else if (((_parent.playerCoins < _root.levelcoins[_root.game.intLevel - 1]) && (_parent.playerCoins < _root.playerlevelcoins[_root.game.intLevel - 1])) || (_root.playerlevelcoins[_root.game.intLevel - 1] == undefined)) {
if (!_root.clearcoins[_root.game.intLevel - 1]) {
_root.playerlevelcoins[_root.game.intLevel - 1] = _parent.playerCoins;
_root.userHighscore.data.clearcoins = _root.clearcoins;
_root.userHighscore.data.playerlevelcoins = _root.playerlevelcoins;
_root.userHighscore.flush;
trace("stored player level coins");
}
}
onMouseUp = function () {
};
stop();
Symbol 408 MovieClip Frame 1
stop();
Symbol 408 MovieClip Frame 5
_root.playSound("Whoosh.wav");
Symbol 408 MovieClip Frame 35
_root.playSound("Hit-Wall.wav");
_root.func.showResult();
stop();
Symbol 415 Button
on (press) {
_parent.mcBottom._visible = true;
_visible = false;
}
Symbol 417 MovieClip Frame 1
if (!_root.clearlevels[0]) {
if (!_root.bitF1) {
_parent.mcBottom._visible = false;
_root.bitF1 = true;
} else {
_parent.mcBottom._visible = true;
_visible = false;
}
} else {
_parent.mcBottom._visible = true;
_visible = false;
}
stop();
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 417 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "Oh noes! How can we possibly get the <b>cake</b> all the way over there?";
intStyle = 2;
strArrowStyle = "Down";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = true;
}
Symbol 428 MovieClip Frame 1
stop();
Symbol 428 MovieClip Frame 10
stop();
Symbol 442 Button
on (press) {
if (_root.game.canKick) {
_root.game.canKick = false;
mcWarrior.gotoAndPlay("Kick");
_root.func.flyMoglin(_parent.mcMoglin);
_root.playSound("Hit.wav");
}
}
Symbol 519 MovieClip Frame 1
stop();
Symbol 519 MovieClip Frame 5
_root.playSound("bounceB.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Woohoo.wav");
}
Symbol 526 MovieClip Frame 1
stop();
Symbol 526 MovieClip Frame 5
_root.playSound("kbird2.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Woohoo.wav");
}
Symbol 541 MovieClip Frame 1
stop();
Symbol 541 MovieClip Frame 6
_root.playSound("bounceB.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Woohoo.wav");
}
Symbol 574 MovieClip Frame 1
stop();
Symbol 574 MovieClip Frame 5
_root.playSound("Tennis_Crack08.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Oooh.wav");
}
Symbol 588 MovieClip Frame 1
stop();
Symbol 588 MovieClip Frame 5
_root.playSound("Baseball_Bat_Crack07.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Oooh.wav");
}
Symbol 601 MovieClip Frame 1
stop();
Symbol 601 MovieClip Frame 5
_root.playSound("bounceB.wav");
roll = Math.random(100);
if (roll > 50) {
_root.playSound("Twilly-Oooh.wav");
}
Symbol 607 MovieClip Frame 1
stop();
Symbol 607 MovieClip Frame 5
_root.playSound("Hit_RedBall.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Oooh.wav");
}
Symbol 610 MovieClip Frame 1
stop();
Symbol 610 MovieClip Frame 13
stop();
Symbol 625 MovieClip Frame 1
stop();
Symbol 625 MovieClip Frame 5
_root.playSound("bounceB.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Woohoo.wav");
}
Symbol 626 MovieClip Frame 1
stop();
Symbol 626 MovieClip Frame 5
_root.playSound("bounceB.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Woohoo.wav");
}
Symbol 635 MovieClip Frame 1
stop();
Symbol 635 MovieClip Frame 5
_root.playSound("bounceB.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Woohoo.wav");
}
Symbol 643 MovieClip Frame 1
stop();
Symbol 643 MovieClip Frame 5
_root.playSound("bigBite.wav");
Symbol 645 MovieClip Frame 1
stop();
Symbol 645 MovieClip Frame 5
_root.playSound("bigBite.wav");
Symbol 645 MovieClip Frame 15
stop();
Symbol 660 MovieClip Frame 1
isSolid = true;
stop();
Symbol 673 MovieClip Frame 1
stop();
Symbol 673 MovieClip Frame 5
_root.playSound("Menu_Click04.wav");
roll = Math.random() * 100;
if (roll > 50) {
_root.playSound("Twilly-Woohoo.wav");
}
Symbol 717 Button
on (release) {
_root.playSound("Button-Press.wav");
_root.mcMusic.stopMusic();
_root.gotoAndPlay("Init");
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 1
//component parameters
onClipEvent (construct) {
strName = "";
strText = "And now to get some delicious breakfast...";
intStyle = 1;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Symbol 719 MovieClip Frame 32
_root.playSound("KickWoodDoor.wav");
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 38
//component parameters
onClipEvent (construct) {
strName = "";
strText = "Hmm, the door is a little stuck...";
intStyle = 7;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Symbol 719 MovieClip Frame 51
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 75
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 80
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 85
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 92
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 109
_root.playSound("Whoosh.wav");
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 150
//component parameters
onClipEvent (construct) {
strName = "";
strText = "CAAAAAAKE!";
intStyle = 7;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Symbol 719 MovieClip Frame 153
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 158
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 163
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 170
_root.playSound("KickWoodDoor.wav");
Symbol 719 MovieClip Frame 199
_root.playSound("SmashWoodDoor.wav");
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 219
//component parameters
onClipEvent (construct) {
strName = "";
strText = "Ow.";
intStyle = 4;
strArrowStyle = "Right";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Symbol 719 MovieClip Frame 223
_root.playSound("Whoosh.wav");
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 236
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "Need a heal?";
intStyle = 2;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = true;
}
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 237
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "So what do you wanna do now?";
intStyle = 2;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 238
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "I dunno, what do you wanna do?";
intStyle = 6;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = true;
}
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 239
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "I dunno, what do you wanna do?";
intStyle = 2;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 240
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "Well, what do you wanna do?";
intStyle = 6;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = true;
}
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 241
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "Wanna head over to Battleon?";
intStyle = 2;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = false;
}
Symbol 719 MovieClip Frame 242
stop();
Instance of Symbol 315 MovieClip [TMPe5xtyxw370] in Symbol 719 MovieClip Frame 242
//component parameters
onClipEvent (construct) {
strName = "Twilly";
strText = "Sure! Let's go!";
intStyle = 6;
strArrowStyle = "Left";
bitStop = true;
strTextColor = 0;
strBGColor = 16777215 /* 0xFFFFFF */;
bitShowNamePlate = true;
}
Symbol 722 Button
on (release) {
_root.playSound("Button-Press.wav");
getURL ("http://www.dragonfable.com");
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}
Symbol 724 Button
on (release) {
_root.gotoAndPlay("Init");
}
Symbol 726 MovieClip Frame 1
if (_root.levelSelected) {
_root.levelSelected = false;
gotoAndPlay("F" + _root.game.intLevel);
}
Symbol 726 MovieClip Frame 6
var outPower = 50;
var outAngle = 0;
levelCoins = 1;
playerCoins = 0;
stop();
Symbol 726 MovieClip Frame 10
_root.game.intLevel = 1;
var outPower = 50;
var outAngle = 0;
levelCoins = 1;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 410 MovieClip "mcReset" in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 413 MovieClip "mcReset" in Symbol 726 MovieClip Frame 10
onClipEvent (load) {
onRelease = function () {
_root.playSound("Button-Press.wav");
_root.game.bitCompleted = false;
_root.game.canKick = true;
_root.gotoAndPlay("levelSelect");
};
onRollOver = function () {
_root.playSound("Button-MouseOver.wav");
};
}
Symbol 726 MovieClip Frame 15
_root.game.intLevel = 2;
levelCoins = 1;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 15
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 15
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 15
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 19
_root.game.intLevel = 3;
levelCoins = 4;
playerCoins = 0;
stop();
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 19
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 19
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 19
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 23
_root.game.intLevel = 4;
levelCoins = 1;
playerCoins = 0;
stop();
Symbol 726 MovieClip Frame 27
_root.game.intLevel = 5;
levelCoins = 3;
playerCoins = 0;
stop();
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 27
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 31
_root.game.intLevel = 6;
levelCoins = 3;
playerCoins = 0;
if (((((!_root.clearlevels[4]) || (!_root.clearlevels[3])) || (!_root.clearlevels[2])) || (!_root.clearlevels[1])) || (!_root.clearlevels[0])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 31
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 31
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 31
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 31
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 31
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 31
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 35
_root.game.intLevel = 7;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 35
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 35
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 35
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 35
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 39
_root.game.intLevel = 8;
levelCoins = 3;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 39
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 39
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 39
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 39
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 43
_root.game.intLevel = 9;
levelCoins = 3;
playerCoins = 0;
stop();
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 43
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 43
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 43
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 43
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 43
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 43
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 43
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 43
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 47
_root.game.intLevel = 10;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 47
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 51
_root.game.intLevel = 11;
levelCoins = 2;
playerCoins = 0;
if (((((!_root.clearlevels[9]) || (!_root.clearlevels[8])) || (!_root.clearlevels[7])) || (!_root.clearlevels[6])) || (!_root.clearlevels[5])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 51
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 51
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 51
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 51
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 51
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 51
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 51
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 51
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 55
_root.game.intLevel = 12;
levelCoins = 1;
playerCoins = 0;
stop();
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 55
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 55
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 59
_root.game.intLevel = 13;
levelCoins = 1;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 59
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_parent.ferryclip.gotoAndPlay("Open");
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Symbol 726 MovieClip Frame 63
_root.game.intLevel = 14;
levelCoins = 9;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 63
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 67
_root.game.intLevel = 15;
levelCoins = 6;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 67
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 67
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 67
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 71
_root.game.intLevel = 16;
levelCoins = 21;
playerCoins = 0;
if (((((!_root.clearlevels[14]) || (!_root.clearlevels[13])) || (!_root.clearlevels[12])) || (!_root.clearlevels[11])) || (!_root.clearlevels[10])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 71
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 75
_root.game.intLevel = 17;
levelCoins = 1;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 75
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 75
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 75
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 75
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 75
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 79
_root.game.intLevel = 18;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 79
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 83
_root.game.intLevel = 19;
levelCoins = 3;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 83
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 83
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 83
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 83
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 83
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 83
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 83
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 83
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 87
_root.game.intLevel = 20;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 87
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 87
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 87
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 87
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 87
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 91
_root.game.intLevel = 21;
levelCoins = 3;
playerCoins = 0;
if (((((!_root.clearlevels[19]) || (!_root.clearlevels[18])) || (!_root.clearlevels[17])) || (!_root.clearlevels[16])) || (!_root.clearlevels[15])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 91
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 95
_root.game.intLevel = 22;
levelCoins = 3;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 95
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 95
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 95
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 95
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 95
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 95
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 95
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 99
_root.game.intLevel = 23;
levelCoins = 10;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer5.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 99
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 103
_root.game.intLevel = 24;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 103
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 103
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 103
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_parent.ferryclip.gotoAndPlay("Open");
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 103
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 103
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 103
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 107
_root.game.intLevel = 25;
levelCoins = 4;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 107
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 111
_root.game.intLevel = 26;
levelCoins = 2;
playerCoins = 0;
if (((((!_root.clearlevels[24]) || (!_root.clearlevels[23])) || (!_root.clearlevels[22])) || (!_root.clearlevels[21])) || (!_root.clearlevels[20])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 111
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 111
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 111
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 111
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 115
_root.game.intLevel = 27;
levelCoins = 3;
playerCoins = 0;
stop();
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 115
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 115
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 115
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 115
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 119
_root.game.intLevel = 28;
levelCoins = 3;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 119
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 119
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 119
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 119
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 119
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 119
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 119
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 123
_root.game.intLevel = 29;
levelCoins = 6;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 123
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 127
_root.game.intLevel = 30;
levelCoins = 4;
playerCoins = 0;
stop();
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 127
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 127
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 127
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 127
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 131
_root.game.intLevel = 31;
levelCoins = 4;
playerCoins = 0;
if (((((!_root.clearlevels[29]) || (!_root.clearlevels[28])) || (!_root.clearlevels[27])) || (!_root.clearlevels[26])) || (!_root.clearlevels[25])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 519 MovieClip "mcBouncer2" in Symbol 726 MovieClip Frame 131
/* no clip actions */
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
} else {
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip "mcBounceMyFoo" in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip "mcFooBouncer" in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip "DupeyBouncer" in Symbol 726 MovieClip Frame 131
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 135
_root.game.intLevel = 32;
levelCoins = 10;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 135
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 139
_root.game.intLevel = 33;
levelCoins = 4;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 139
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 139
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer5.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 139
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 139
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 139
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 139
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 143
_root.game.intLevel = 34;
levelCoins = 5;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 143
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 143
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 143
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 143
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 143
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 143
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 143
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 147
_root.game.intLevel = 35;
levelCoins = 9;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_parent.ferryclip.gotoAndPlay("Open");
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 147
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 151
_root.game.intLevel = 36;
levelCoins = 30;
playerCoins = 0;
if (((((!_root.clearlevels[34]) || (!_root.clearlevels[33])) || (!_root.clearlevels[32])) || (!_root.clearlevels[31])) || (!_root.clearlevels[30])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 151
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 155
_root.game.intLevel = 37;
levelCoins = 13;
playerCoins = 0;
stop();
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 155
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 155
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 155
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 159
_root.game.intLevel = 38;
levelCoins = 4;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer5.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 159
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 163
_root.game.intLevel = 39;
levelCoins = 8;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer5.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer6.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 163
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 167
_root.game.intLevel = 40;
levelCoins = 11;
playerCoins = 0;
stop();
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer5.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 167
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
mcHitter._y = 390;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 171
_root.game.intLevel = 41;
levelCoins = 2;
playerCoins = 0;
if (((((!_root.clearlevels[39]) || (!_root.clearlevels[38])) || (!_root.clearlevels[37])) || (!_root.clearlevels[36])) || (!_root.clearlevels[35])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 171
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 175
_root.game.intLevel = 42;
levelCoins = 6;
playerCoins = 0;
stop();
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 175
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 179
_root.game.intLevel = 43;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 526 MovieClip "mcBouncer1" in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 150)) || (_x > (intX + 120))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
}
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if ((_x < (intX - 150)) || (_x > (intX + 120))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
if (!this.hitTest(_root.mcStage.mcMoglin)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intSpeedX = 2;
intX = _x;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 179
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Symbol 726 MovieClip Frame 183
_root.game.intLevel = 44;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 519 MovieClip "mcBouncer1" in Symbol 726 MovieClip Frame 183
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 150)) || (_x > (intX + 120))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
}
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 183
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 183
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 183
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Symbol 726 MovieClip Frame 187
_root.game.intLevel = 45;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 526 MovieClip "mcBouncer2" in Symbol 726 MovieClip Frame 187
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 20)) || (_x > (intX + 50))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x + intSpeedX);
}
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 526 MovieClip "mcBouncer1" in Symbol 726 MovieClip Frame 187
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 50)) || (_x > (intX + 20))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
}
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 187
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if ((_x < (intX - 50)) || (_x > (intX + 20))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
if (!this.hitTest(_root.mcStage.mcMoglin)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intSpeedX = 2;
intX = _x;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 187
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if ((_x < (intX - 20)) || (_x > (intX + 50))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x + intSpeedX);
if (!this.hitTest(_root.mcStage.mcMoglin)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intSpeedX = 2;
intX = _x;
_visible = false;
}
Symbol 726 MovieClip Frame 191
_root.game.intLevel = 46;
levelCoins = 2;
playerCoins = 0;
if (((((!_root.clearlevels[44]) || (!_root.clearlevels[43])) || (!_root.clearlevels[42])) || (!_root.clearlevels[41])) || (!_root.clearlevels[40])) {
_root.gotoAndPlay("levelSelect");
}
stop();
Instance of Symbol 519 MovieClip "mcBouncer1" in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 50)) || (_x > (intX + 20))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
}
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 519 MovieClip "mcBouncer2" in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 20)) || (_x > (intX + 50))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x + intSpeedX);
}
intSpeedX = 1;
intX = _x;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if ((_x < (intX - 50)) || (_x > (intX + 20))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
if (!this.hitTest(_root.mcStage.mcMoglin)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intSpeedX = 2;
intX = _x;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if ((_x < (intX - 20)) || (_x > (intX + 50))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x + intSpeedX);
if (!this.hitTest(_root.mcStage.mcMoglin)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intSpeedX = 1;
intX = _x;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 191
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.45;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 195
_root.game.intLevel = 47;
levelCoins = 4;
playerCoins = 0;
stop();
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 195
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 199
_root.game.intLevel = 48;
levelCoins = 4;
playerCoins = 0;
stop();
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 199
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
function onEnterFrame() {
if ((_y < (intY - 100)) || (_y > intY)) {
intSpeedY = intSpeedY * -1;
}
_y = (_y - intSpeedY);
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intY = _y;
intSpeedY = 2;
_visible = false;
}
Instance of Symbol 607 MovieClip "mcBouncer1" in Symbol 726 MovieClip Frame 199
onClipEvent (load) {
function onEnterFrame() {
if ((_y < (intY - 100)) || (_y > intY)) {
intSpeedY = intSpeedY * -1;
}
_y = (_y - intSpeedY);
}
intSpeedY = 2;
intY = _y;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 199
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 199
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 199
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Symbol 726 MovieClip Frame 203
_root.game.intLevel = 49;
levelCoins = 2;
playerCoins = 0;
stop();
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
function onEnterFrame() {
if ((_y < (intY - 200)) || (_y > intY)) {
intSpeedY = intSpeedY * -1;
}
_y = (_y - intSpeedY);
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intY = _y;
intSpeedY = 2;
_visible = false;
}
Instance of Symbol 607 MovieClip "mcBouncer2" in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onEnterFrame() {
if ((_y < (intY - 200)) || (_y > intY)) {
intSpeedY = intSpeedY * -1;
}
_y = (_y - intSpeedY);
}
intSpeedY = 2;
intY = _y;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -3;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 203
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 207
_root.game.intLevel = 50;
levelCoins = 3;
playerCoins = 0;
stop();
Instance of Symbol 519 MovieClip "mcBouncer1" in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 150)) || (_x > intX)) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
}
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
isSolid = true;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
_root.playSound("Whoosh.wav");
this.isHit = true;
delete mcHitter.onEnterFrame;
_parent.Fall.gotoAndPlay("Fall");
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intSpeedY >= 0) {
mcHitter.intYIntensity = mcHitter.intYIntensity * -3;
} else {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
}
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if ((_x < (intX - 150)) || (_x > intX)) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
if (!this.hitTest(_root.mcStage.mcMoglin)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 207
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Symbol 726 MovieClip Frame 216
if (_root.game.intLevel <= 50) {
gotoAndPlay("F" + _root.game.intLevel);
} else if (_root.game.intLevel == 51) {
gotoAndPlay ("F51");
} else {
_root.gotoAndPlay("levelSelect");
}
Symbol 726 MovieClip Frame 222
_root.game.intLevel = 51;
levelCoins = 100;
playerCoins = 0;
stop();
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer2.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 384 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 200)) || (_x > (intX + 200))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
}
function onHit(mcHitter) {
isHit = true;
_root.playSound("BoxSmash.wav");
_root.game.bitCompleted = true;
_visible = false;
trace(mcHitter + " --- Hits Box.");
}
isSolid = true;
isHit = false;
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intYIntensity = -1;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (!isHit) {
isHit = true;
trace(mcHitter + "Hits Triangle.");
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
mcHitter._xscale = mcHitter._xscale * 1;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
mcHitter._y = 390;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 386 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
this.isHit = true;
_root.playSound("Hit-Wall.wav");
mcHitter.gotoAndPlay("Splat");
mcHitter._rotation = 0;
delete mcHitter.onEnterFrame;
mcHitter._y = 390;
_root.func.showResult();
}
_visible = false;
isSolid = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcBouncer1.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity < 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer5.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
if (mcHitter.intXIntensity > 0) {
mcHitter.intXIntensity = mcHitter.intXIntensity * -1;
} else {
mcHitter.intXIntensity = mcHitter.intXIntensity * 1.1;
}
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.05;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Blue Triangle.");
_root.mcStage.mcBouncer4.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intXIntensity = 6;
mcHitter.intYIntensity = mcHitter.intYIntensity * -0.05;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 526 MovieClip "mcBouncer3" in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onEnterFrame() {
if ((_x < (intX - 200)) || (_x > (intX + 200))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
}
intSpeedX = 2;
intX = _x;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcBouncer3.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
if ((_x < (intX - 200)) || (_x > (intX + 200))) {
intSpeedX = intSpeedX * -1;
}
_x = (_x - intSpeedX);
if (!this.hitTest(_root.mcStage.mcMoglin)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intSpeedX = 2;
intX = _x;
_visible = false;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 391 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
if (this._visible) {
_root.playSound("Hit-Coin.wav");
isHit = true;
_parent.playerCoins = _parent.playerCoins + 1;
this._visible = false;
}
}
function onEnterFrame() {
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = true;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcPlayerPaddle.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intXIntensity = 3;
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
_x = _root._xmouse;
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Red Triangle.");
_root.mcStage.mcPlayerPaddle.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intXIntensity = -3;
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
_x = (_root._xmouse - 40);
if (!this.hitTest(_root.mcStage.mcMoglin.mcHit)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
_visible = false;
}
Instance of Symbol 388 MovieClip in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onHit(mcHitter) {
trace(mcHitter + "Hits Triangle.");
_root.mcStage.mcPlayerPaddle.gotoAndPlay("Open");
if ((!isHit) && (!mcHitter.Bouncing)) {
mcHitter.intAcceleration = mcHitter.intAcceleration * -0.1;
mcHitter.intYIntensity = 6;
isHit = true;
mcHitter.Bouncing = true;
}
}
function onEnterFrame() {
_x = _root._xmouse;
_x = (_x - intSpeedX);
if (!this.hitTest(_root.mcStage.mcMoglin)) {
isHit = false;
}
}
isSolid = true;
isHit = false;
intSpeedX = 2;
intX = _x;
_visible = false;
}
Instance of Symbol 541 MovieClip "mcPlayerPaddle" in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
function onEnterFrame() {
_x = (_root._xmouse - 22);
}
isSolid = true;
isHit = false;
}
Instance of Symbol 410 MovieClip "mcReset" in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
_visible = false;
}
Instance of Symbol 413 MovieClip "mcReset" in Symbol 726 MovieClip Frame 222
onClipEvent (load) {
onRelease = function () {
_root.playSound("Button-Press.wav");
_root.game.bitCompleted = false;
_root.game.canKick = true;
_root.gotoAndPlay("levelSelect");
};
onRollOver = function () {
_root.playSound("Button-MouseOver.wav");
};
}
Symbol 726 MovieClip Frame 226
_root.game.bitCompleted = false;
_root.game.canKick = true;
_root.mcMusic.playMusic("Music-Twilly.wav");
stop();
Symbol 726 MovieClip Frame 233
_root.game.bitCompleted = false;
_root.game.canKick = true;
stop();
Symbol 836 MovieClip Frame 1
stop();
Symbol 836 MovieClip Frame 2
stop();
Symbol 836 MovieClip Frame 3
stop();
Symbol 836 MovieClip Frame 4
stop();
Symbol 836 MovieClip Frame 5
stop();
Symbol 836 MovieClip Frame 6
stop();
Symbol 836 MovieClip Frame 7
stop();
Symbol 836 MovieClip Frame 8
stop();
Symbol 836 MovieClip Frame 9
stop();
Symbol 836 MovieClip Frame 10
stop();
Symbol 836 MovieClip Frame 11
stop();
Symbol 836 MovieClip Frame 12
stop();
Symbol 836 MovieClip Frame 13
stop();
Symbol 836 MovieClip Frame 14
stop();
Symbol 836 MovieClip Frame 15
stop();
Symbol 836 MovieClip Frame 16
stop();
Symbol 836 MovieClip Frame 17
stop();
Symbol 836 MovieClip Frame 18
stop();
Symbol 836 MovieClip Frame 19
stop();
Symbol 836 MovieClip Frame 20
stop();
Symbol 836 MovieClip Frame 21
stop();
Symbol 836 MovieClip Frame 22
stop();
Symbol 836 MovieClip Frame 23
stop();
Symbol 836 MovieClip Frame 24
stop();
Symbol 836 MovieClip Frame 25
stop();
Symbol 836 MovieClip Frame 26
stop();
Symbol 836 MovieClip Frame 27
stop();
Symbol 836 MovieClip Frame 28
stop();
Symbol 836 MovieClip Frame 29
stop();
Symbol 836 MovieClip Frame 30
stop();
Symbol 836 MovieClip Frame 31
stop();
Symbol 836 MovieClip Frame 32
stop();
Symbol 836 MovieClip Frame 33
stop();
Symbol 836 MovieClip Frame 34
stop();
Symbol 836 MovieClip Frame 35
stop();
Symbol 836 MovieClip Frame 36
stop();
Symbol 836 MovieClip Frame 37
stop();
Symbol 836 MovieClip Frame 38
stop();
Symbol 836 MovieClip Frame 39
stop();
Symbol 836 MovieClip Frame 40
stop();
Symbol 836 MovieClip Frame 41
stop();
Symbol 836 MovieClip Frame 42
stop();
Symbol 836 MovieClip Frame 43
stop();
Symbol 836 MovieClip Frame 44
stop();
Symbol 836 MovieClip Frame 45
stop();
Symbol 836 MovieClip Frame 46
stop();
Symbol 836 MovieClip Frame 47
stop();
Symbol 836 MovieClip Frame 48
stop();
Symbol 836 MovieClip Frame 49
stop();
Symbol 836 MovieClip Frame 50
stop();
Symbol 836 MovieClip Frame 58
stop();
Symbol 836 MovieClip Frame 65
stop();
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 1;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 3;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 10;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[4] && (_root.clearlevels[3])) && (_root.clearlevels[2])) && (_root.clearlevels[1])) && (_root.clearlevels[0])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 9;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[4] && (_root.clearlevels[3])) && (_root.clearlevels[2])) && (_root.clearlevels[1])) && (_root.clearlevels[0])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 8;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[4] && (_root.clearlevels[3])) && (_root.clearlevels[2])) && (_root.clearlevels[1])) && (_root.clearlevels[0])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 7;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[4] && (_root.clearlevels[3])) && (_root.clearlevels[2])) && (_root.clearlevels[1])) && (_root.clearlevels[0])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 16;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[14] && (_root.clearlevels[13])) && (_root.clearlevels[12])) && (_root.clearlevels[11])) && (_root.clearlevels[10])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 15;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[9] && (_root.clearlevels[8])) && (_root.clearlevels[7])) && (_root.clearlevels[6])) && (_root.clearlevels[5])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 4;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 2;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 11;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[9] && (_root.clearlevels[8])) && (_root.clearlevels[7])) && (_root.clearlevels[6])) && (_root.clearlevels[5])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 13;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[9] && (_root.clearlevels[8])) && (_root.clearlevels[7])) && (_root.clearlevels[6])) && (_root.clearlevels[5])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 20;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[14] && (_root.clearlevels[13])) && (_root.clearlevels[12])) && (_root.clearlevels[11])) && (_root.clearlevels[10])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 19;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[14] && (_root.clearlevels[13])) && (_root.clearlevels[12])) && (_root.clearlevels[11])) && (_root.clearlevels[10])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 18;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[14] && (_root.clearlevels[13])) && (_root.clearlevels[12])) && (_root.clearlevels[11])) && (_root.clearlevels[10])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 6;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[4] && (_root.clearlevels[3])) && (_root.clearlevels[2])) && (_root.clearlevels[1])) && (_root.clearlevels[0])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 5;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 17;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[14] && (_root.clearlevels[13])) && (_root.clearlevels[12])) && (_root.clearlevels[11])) && (_root.clearlevels[10])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 14;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[9] && (_root.clearlevels[8])) && (_root.clearlevels[7])) && (_root.clearlevels[6])) && (_root.clearlevels[5])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 12;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[9] && (_root.clearlevels[8])) && (_root.clearlevels[7])) && (_root.clearlevels[6])) && (_root.clearlevels[5])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 21;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[19] && (_root.clearlevels[18])) && (_root.clearlevels[17])) && (_root.clearlevels[16])) && (_root.clearlevels[15])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 23;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[19] && (_root.clearlevels[18])) && (_root.clearlevels[17])) && (_root.clearlevels[16])) && (_root.clearlevels[15])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 30;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[24] && (_root.clearlevels[23])) && (_root.clearlevels[22])) && (_root.clearlevels[21])) && (_root.clearlevels[20])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 29;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[24] && (_root.clearlevels[23])) && (_root.clearlevels[22])) && (_root.clearlevels[21])) && (_root.clearlevels[20])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 28;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[24] && (_root.clearlevels[23])) && (_root.clearlevels[22])) && (_root.clearlevels[21])) && (_root.clearlevels[20])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 25;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[19] && (_root.clearlevels[18])) && (_root.clearlevels[17])) && (_root.clearlevels[16])) && (_root.clearlevels[15])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 24;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[19] && (_root.clearlevels[18])) && (_root.clearlevels[17])) && (_root.clearlevels[16])) && (_root.clearlevels[15])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 34;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[29] && (_root.clearlevels[28])) && (_root.clearlevels[27])) && (_root.clearlevels[26])) && (_root.clearlevels[25])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 37;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[34] && (_root.clearlevels[33])) && (_root.clearlevels[32])) && (_root.clearlevels[31])) && (_root.clearlevels[30])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 22;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[19] && (_root.clearlevels[18])) && (_root.clearlevels[17])) && (_root.clearlevels[16])) && (_root.clearlevels[15])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 31;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[29] && (_root.clearlevels[28])) && (_root.clearlevels[27])) && (_root.clearlevels[26])) && (_root.clearlevels[25])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 33;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[29] && (_root.clearlevels[28])) && (_root.clearlevels[27])) && (_root.clearlevels[26])) && (_root.clearlevels[25])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 40;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[34] && (_root.clearlevels[33])) && (_root.clearlevels[32])) && (_root.clearlevels[31])) && (_root.clearlevels[30])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 39;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[34] && (_root.clearlevels[33])) && (_root.clearlevels[32])) && (_root.clearlevels[31])) && (_root.clearlevels[30])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 38;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[34] && (_root.clearlevels[33])) && (_root.clearlevels[32])) && (_root.clearlevels[31])) && (_root.clearlevels[30])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 27;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[24] && (_root.clearlevels[23])) && (_root.clearlevels[22])) && (_root.clearlevels[21])) && (_root.clearlevels[20])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 36;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[34] && (_root.clearlevels[33])) && (_root.clearlevels[32])) && (_root.clearlevels[31])) && (_root.clearlevels[30])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 35;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[29] && (_root.clearlevels[28])) && (_root.clearlevels[27])) && (_root.clearlevels[26])) && (_root.clearlevels[25])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 26;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[24] && (_root.clearlevels[23])) && (_root.clearlevels[22])) && (_root.clearlevels[21])) && (_root.clearlevels[20])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 32;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[29] && (_root.clearlevels[28])) && (_root.clearlevels[27])) && (_root.clearlevels[26])) && (_root.clearlevels[25])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 41;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[39] && (_root.clearlevels[38])) && (_root.clearlevels[37])) && (_root.clearlevels[36])) && (_root.clearlevels[35])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 43;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[39] && (_root.clearlevels[38])) && (_root.clearlevels[37])) && (_root.clearlevels[36])) && (_root.clearlevels[35])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 50;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[44] && (_root.clearlevels[43])) && (_root.clearlevels[42])) && (_root.clearlevels[41])) && (_root.clearlevels[40])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 49;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[44] && (_root.clearlevels[43])) && (_root.clearlevels[42])) && (_root.clearlevels[41])) && (_root.clearlevels[40])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 48;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[44] && (_root.clearlevels[43])) && (_root.clearlevels[42])) && (_root.clearlevels[41])) && (_root.clearlevels[40])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 47;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[44] && (_root.clearlevels[43])) && (_root.clearlevels[42])) && (_root.clearlevels[41])) && (_root.clearlevels[40])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 46;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[44] && (_root.clearlevels[43])) && (_root.clearlevels[42])) && (_root.clearlevels[41])) && (_root.clearlevels[40])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 45;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[39] && (_root.clearlevels[38])) && (_root.clearlevels[37])) && (_root.clearlevels[36])) && (_root.clearlevels[35])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 44;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[39] && (_root.clearlevels[38])) && (_root.clearlevels[37])) && (_root.clearlevels[36])) && (_root.clearlevels[35])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 42;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.OK._visible = false;
this.twilly._visible = false;
if ((((_root.clearlevels[39] && (_root.clearlevels[38])) && (_root.clearlevels[37])) && (_root.clearlevels[36])) && (_root.clearlevels[35])) {
gotoAndPlay(gameLevel);
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
} else {
gotoAndPlay ("locked");
}
}
Instance of Symbol 836 MovieClip in Symbol 839 MovieClip Frame 1
onClipEvent (load) {
gameLevel = 51;
intX = _x;
intY = _y;
intWidth = _width;
intHeight = _height;
this.twilly._visible = false;
this.OK._visible = false;
openBonus = false;
i = 0;
while (i <= 49) {
trace(_root.clearcoins[i]);
if (_root.clearcoins[i] == undefined) {
this.twilly._visible = false;
this.OK._visible = false;
openBonus = false;
gotoAndPlay ("??");
break;
}
if (i == 49) {
openBonus = true;
}
i++;
}
if (openBonus) {
gotoAndPlay ("bonus");
if (_root.clearlevels[gameLevel - 1]) {
this.OK._visible = true;
} else {
this.OK._visible = false;
}
if (_root.clearcoins[gameLevel - 1]) {
this.twilly._visible = true;
this.OK._visible = false;
} else {
this.twilly._visible = false;
}
onRelease = function () {
_root.game.intLevel = gameLevel;
_root.levelSelected = true;
_root.gotoAndPlay("Game");
};
onRollOver = function () {
_width = (_width + 4);
_height = (_height + 4);
_x = (_x - 2);
_y = (_y - 2);
};
onRollOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
onDragOut = function () {
_x = intX;
_y = intY;
_width = intWidth;
_height = intHeight;
};
}
}
Symbol 840 Button
on (release) {
_root.playSound("Button-Press.wav");
_root.gotoAndPlay("Init");
}
on (rollOver) {
_root.playSound("Button-MouseOver.wav");
}