Frame 1
stop();
Instance of Symbol 3 MovieClip "LoaderHolder" in Frame 1
onClipEvent (load) {
barreLongueurTotale = 102;
bTotal = 135000 /* 0x020F58 */;
_parent.BNLoader._width = barreLongueurTotale;
}
onClipEvent (enterFrame) {
bLoaded = _root.getBytesLoaded();
_parent.BNLoader._width = barreLongueurTotale - ((bLoaded / bTotal) * barreLongueurTotale);
if ((bLoaded >= bTotal) && (bTotal > 0)) {
_parent.gotoAndStop("Accueil");
} else if (bLoaded == -1) {
trace("error");
}
}
Instance of Symbol 25 MovieClip "OpeningScreen" in Frame 7
/* no clip actions */
Instance of Symbol 58 MovieClip "MainController" in Frame 7
onClipEvent (load) {
function ReInitVariables() {
Bouclier = false;
Boulets = false;
Krystal = false;
ChaudronDescendu = false;
KrystalDansChaudron = false;
SoundGame = true;
_parent.IconeKrystal.gotoAndStop(1);
_parent.IconeBouclier.gotoAndStop(1);
_parent.IconeBoulets.gotoAndStop(1);
_parent.MvBtnSoundOff.gotoAndStop(1);
}
Bouclier = false;
Boulets = false;
Krystal = false;
ChaudronDescendu = false;
KrystalDansChaudron = false;
SoundGame = true;
SoundButtonEnabled = true;
Bulle1 = "You Fyren warriors will never get to our leader Xenoz! Vorgan team - ATTACK!";
Bulle2 = "I will not let you have the Krystal. Be gone or you will feel the sting of my sword.";
Bulle3 = "You must speak with Kyra, she will help you on your quest.";
Bulle4 = "You must visit Kyra. She can help you.";
Bulle5 = "My name is Kyra. You must find the Fire Krystal to unleash the power of Dragon Mountain!";
Bulle6 = "Hurry Dev! You need to seek out the dragon Lumendraconis. He will help us!";
Bulle7 = "Kyra gave you a powerful gift. We will use it now!";
Bulle8 = "You are doing well Dev. You must now ride to the base of the mountain where the cauldron lies. The path to the summit is difficult, we must transport the Krystal upwards.";
Bulle9 = "Go away, Norvagen. You and your Fyren warriors are not match for the Vorgan army.";
Bulle10 = "You and your Fyren warriors may have captured my fortress, Dev; but even now Gortaz awaits my arrival at the Portal of Fire. The real prize is the Aurathron Krystal, which I will use to open the gateway to the Dragons world.";
Bulle11 = "The path is treacherous. Find the ancient shield of the Draigar for your future protection.";
}
Instance of Symbol 3 MovieClip "LoaderHolder" in Frame 14
onClipEvent (load) {
barreLongueurTotale = 102;
bTotal = _root.getBytesTotal();
_parent.BNLoader._width = barreLongueurTotale;
}
onClipEvent (enterFrame) {
bLoaded = _root.getBytesLoaded();
_parent.BNLoader._width = barreLongueurTotale - ((bLoaded / bTotal) * barreLongueurTotale);
if ((bLoaded >= bTotal) && (bTotal > 0)) {
_parent.gotoAndStop("Intro");
} else if (bLoaded == -1) {
trace("error");
}
}
Frame 21
if (MainController.SoundGame == true) {
MvMusique.gotoAndPlay(2);
MvBtnSoundOff.gotoAndStop(1);
}
Frame 26
BtnIconeKrystal.useHandCursor = false;
BtnIconeBouclier.useHandCursor = false;
BtnIconeBoulets.useHandCursor = false;
Instance of Symbol 58 MovieClip "ControlleurGlow" in Frame 26
onClipEvent (load) {
if ((_parent.MainController.Boulets == true) && (_parent.MainController.ChaudronDescendu == false)) {
_parent.BtnLumiereVentre.enabled = true;
_parent.LumiereVentre.play();
} else if (_parent.MainController.Boulets == false) {
_parent.BtnLumiereVentre.enabled = false;
} else if (_parent.MainController.ChaudronDescendu == true) {
_parent.BtnLumiereVentre.enabled = false;
}
}
Instance of Symbol 103 MovieClip "IconeBoulets" in Frame 26
onClipEvent (load) {
_parent.BtnIconeBoulets.enabled = false;
if (_parent.MainController.Boulets == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 106 MovieClip "IconeKrystal" in Frame 26
onClipEvent (load) {
_parent.BtnIconeKrystal.enabled = false;
if (_parent.MainController.Krystal == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 109 MovieClip "IconeBouclier" in Frame 26
onClipEvent (load) {
_parent.BtnIconeBouclier.enabled = false;
if (_parent.MainController.Bouclier == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 117 MovieClip "Img02MvGlow" in Frame 32
onClipEvent (load) {
Img02MvGlow.gotoAndStop(1);
}
Instance of Symbol 121 MovieClip "Img02MvBouclier" in Frame 32
onClipEvent (load) {
if (_parent.MainController.Bouclier == true) {
_parent.BtnBouclier.enabled = false;
this.gotoAndStop(2);
}
}
Instance of Symbol 127 MovieClip "Img03Chaudron" in Frame 38
onClipEvent (load) {
if (_parent.MainController.ChaudronDescendu == true) {
this._visible = true;
} else {
this._visible = false;
}
}
Instance of Symbol 117 MovieClip "Img05MvGlow" in Frame 50
onClipEvent (load) {
Img05MvGlow.gotoAndStop(1);
}
Instance of Symbol 144 MovieClip "Img05MvBoulets" in Frame 50
onClipEvent (load) {
if (_parent.MainController.Boulets == true) {
_parent.BtnBoulets.enabled = false;
this.gotoAndStop(2);
}
}
Instance of Symbol 58 MovieClip "J1Controller" in Frame 65
onClipEvent (load) {
function deplacePastille(monMovieClip) {
if ((monMovieClip._x >= 0) && (monMovieClip._y >= 0)) {
x = monMovieClip._x;
y = monMovieClip._y;
x = x + (dx * vitesseEnXr);
y = y + (dy * vitesseEnYr);
x = Math.round(x);
y = Math.round(y);
dx = dx + (Math.random() + -0.5);
dy = dy + (Math.random() + -0.5);
if (monMovieClip._x < minX) {
dx = dx * -0.2;
x = minX;
}
if (monMovieClip._x > maxX) {
dx = dx * -0.2;
x = maxX;
}
if (monMovieClip._y < minY) {
dy = dy * -0.2;
y = minY;
}
if (monMovieClip._y > maxY) {
dy = dy * -0.2;
y = maxY;
}
monMovieClip._x = x;
monMovieClip._y = y;
}
}
function DeterminePosDepartMire() {
tempX = (Math.random() * 100) + 325;
tempY = (Math.random() * 100) + 175;
if ((tempX >= 360) && (tempX <= 390)) {
if (tempX < 375) {
tempX = tempX - 20;
} else {
tempX = tempX + 20;
}
}
if ((tempY >= 210) && (tempY <= 240)) {
if (tempY < 225) {
tempY = tempY - 20;
} else {
tempY = tempY + 20;
}
}
tampon = _parent.J1MvMire;
tampon._x = tempX;
tampon._y = tempY;
}
function InitVariables() {
targetInit = false;
targetLocked = false;
_parent.J1MvMire.gotoAndStop(1);
limiteTemps = 5;
obtenirTempsDepart = false;
limiteTemps2 = 3;
obtenirTempsDepart2 = false;
deplacementOk = true;
touchesOk = true;
_parent.J1MvMire._visible = true;
goodShot = false;
tempsAffiche = "";
bouletVoyageUnlocked = false;
bouletVoyageLow = false;
bouletVoyageHigh = false;
}
minX = 320;
maxX = 430;
minY = 170;
maxY = 280;
vitesseEnXr = 1;
vitesseEnYr = 1;
facteurDeplacement = 1;
targetLocked = false;
goodShot = false;
bouletVoyage = false;
tempsAffiche = "";
bouletVoyageUnlocked = false;
bouletVoyageLow = false;
bouletVoyageHigh = false;
targetInit = false;
targetLocked = false;
limiteTemps = 5;
obtenirTempsDepart = false;
limiteTemps2 = 3;
obtenirTempsDepart2 = false;
deplacementOk = true;
touchesOk = true;
DeterminePosDepartMire();
if ((_parent.J1MvMire._y >= 170) && (_parent.J1MvMire._y < 188)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(6);
} else if ((_parent.J1MvMire._y >= 188) && (_parent.J1MvMire._y < 206)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(5);
} else if ((_parent.J1MvMire._y >= 206) && (_parent.J1MvMire._y < 224)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(4);
} else if ((_parent.J1MvMire._y >= 224) && (_parent.J1MvMire._y < 242)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(3);
} else if ((_parent.J1MvMire._y >= 242) && (_parent.J1MvMire._y < 260)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(1);
} else if ((_parent.J1MvMire._y >= 260) && (_parent.J1MvMire._y <= 280)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(1);
}
}
onClipEvent (enterFrame) {
if (goodShot != true) {
diffEnX = tampon._x - 375;
diffEnY = tampon._y - 225;
distanceDeLaCible = Math.sqrt((diffEnX * diffEnX) + (diffEnY * diffEnY));
if (((distanceDeLaCible <= 18) && (touchesOk == true)) && (targetLocked == false)) {
_parent.TexteTir.text = "TARGET LOCKED";
_parent.Indicateur.play();
targetLocked = true;
_parent.J1MvMire.gotoAndStop(2);
targetInit = false;
obtenirTempsDepart = true;
tampon._x = 375;
tampon._y = 225;
touchesOk = false;
deplacementOk = false;
}
if ((targetLocked == true) && (targetInit == false)) {
if (obtenirTempsDepart == true) {
tempsDepart = getTimer();
obtenirTempsDepart = false;
}
tempsCourant = Math.round(getTimer() - tempsDepart);
tempsCourant = Math.round(tempsCourant / 1000);
tempsAffiche = tempsCourant + 1;
if (tempsCourant >= limiteTemps) {
tempsAffiche = "";
targetInit = true;
obtenirTempsDepart2 = true;
deplacementOk = true;
_parent.Indicateur.gotoAndStop(1);
_parent.J1MvMire.gotoAndStop(1);
}
}
if (targetInit == true) {
if (obtenirTempsDepart2 == true) {
tempsDepart2 = getTimer();
obtenirTempsDepart2 = false;
touchesOk = true;
}
varTemp = Math.round(getTimer() - tempsDepart2);
varTemp = Math.round(varTemp / 1000);
if (varTemp >= limiteTemps2) {
obtenirTempsDepart2 = false;
targetLocked = false;
targetInit = false;
}
}
if (touchesOk == true) {
if (Key.isDown(38)) {
tampon._y = tampon._y - facteurDeplacement;
if (tampon._x <= minX) {
tampon._x = minX + 5;
} else if (tampon._x >= maxX) {
tampon._x = maxX - 5;
}
if (tampon._y <= minY) {
tampon._y = minY + 5;
} else if (tampon._y >= maxY) {
tampon._y = maxY - 5;
}
}
if (Key.isDown(40)) {
tampon._y = tampon._y + facteurDeplacement;
if (tampon._x <= minX) {
tampon._x = minX + 5;
} else if (tampon._x >= maxX) {
tampon._x = maxX - 5;
}
if (tampon._y <= minY) {
tampon._y = minY + 5;
} else if (tampon._y >= maxY) {
tampon._y = maxY - 5;
}
}
if (Key.isDown(39)) {
tampon._x = tampon._x + facteurDeplacement;
if (tampon._x <= minX) {
tampon._x = minX + 5;
} else if (tampon._x >= maxX) {
tampon._x = maxX - 5;
}
if (tampon._y <= minY) {
tampon._y = minY + 5;
} else if (tampon._y >= maxY) {
tampon._y = maxY - 5;
}
}
if (Key.isDown(37)) {
tampon._x = tampon._x - facteurDeplacement;
if (tampon._x <= minX) {
tampon._x = minX + 5;
} else if (tampon._x >= maxX) {
tampon._x = maxX - 5;
}
if (tampon._y <= minY) {
tampon._y = minY + 5;
} else if (tampon._y >= maxY) {
tampon._y = maxY - 5;
}
}
}
if (((((Key.isDown(38) != true) && (Key.isDown(40) != true)) && (Key.isDown(39) != true)) && (Key.isDown(37) != true)) && (deplacementOk == true)) {
_parent.TexteTir.text = "";
deplacePastille(tampon);
}
if ((_parent.J1MvMire._y >= 170) && (_parent.J1MvMire._y < 188)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(6);
} else if ((_parent.J1MvMire._y >= 188) && (_parent.J1MvMire._y < 206)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(5);
} else if ((_parent.J1MvMire._y >= 206) && (_parent.J1MvMire._y < 224)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(4);
} else if ((_parent.J1MvMire._y >= 224) && (_parent.J1MvMire._y < 242)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(3);
} else if ((_parent.J1MvMire._y >= 242) && (_parent.J1MvMire._y < 260)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(1);
} else if ((_parent.J1MvMire._y >= 260) && (_parent.J1MvMire._y <= 280)) {
_parent.J1DragonAnim.MvDragon.MvCanon.gotoAndStop(1);
}
}
if (targetLocked == true) {
if ((Key.isDown(32) && (goodShot == false)) && (bouletVoyageUnlocked == false)) {
goodShot = true;
tempsAffiche = "";
_parent.TexteTir.text = "SHOT!";
_parent.Indicateur.gotoAndStop(_parent.Indicateur._currentframe);
_parent.J1MvMire._visible = false;
if ((_parent.Indicateur._currentframe >= 19) && (_parent.Indicateur._currentframe <= 27)) {
bouletVoyageHigh = true;
} else {
bouletVoyageLow = true;
}
}
} else if (targetLocked == false) {
if ((Key.isDown(32) && (bouletVoyageUnlocked == false)) && (bouletVoyageLow == false)) {
_parent.AnimBouletUnlocked.play();
bouletVoyageUnlocked = true;
}
}
if (bouletVoyageHigh == true) {
_parent.AnimBouletHigh.play();
bouletVoyageHigh = false;
}
if (bouletVoyageLow == true) {
_parent.AnimBouletLow.play();
bouletVoyageLow = false;
}
}
Instance of Symbol 239 MovieClip "Img06DevEtat2" in Frame 84
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 242 MovieClip "Img06DevEtat1" in Frame 84
/* no clip actions */
Instance of Symbol 117 MovieClip "J2Glow" in Frame 113
onClipEvent (load) {
this._xscale = 40;
this._yscale = 40;
}
Instance of Symbol 58 MovieClip "Controlleur" in Frame 113
onClipEvent (load) {
function VerifieCouplePics() {
premierElementCourant = elementClique1.split("_");
deuxiemeElementCourant = elementClique2.split("_");
if (premierElementCourant[1] == deuxiemeElementCourant[1]) {
if (((premierElementCourant[2] == "a") && (deuxiemeElementCourant[2] == "b")) || ((premierElementCourant[2] == "b") && (deuxiemeElementCourant[2] == "a"))) {
paireCourante = int(premierElementCourant[1]);
if (paireCourante == tableauOrdrePaires[ptrTabOrdrePaires]) {
bonnePaire = true;
switch (paireCourante) {
case 1 :
paireTrouvee1 = true;
break;
case 2 :
paireTrouvee2 = true;
break;
case 3 :
paireTrouvee3 = true;
break;
case 4 :
paireTrouvee4 = true;
break;
case 5 :
paireTrouvee5 = true;
break;
case 6 :
paireTrouvee6 = true;
break;
default :
trace("error");
}
temp = eval ("_parent." + elementClique1);
temp.AnimPic.gotoAndPlay(2);
temp.btnInvisible.enabled = false;
temp = eval ("_parent." + elementClique2);
temp.AnimPic.gotoAndPlay(2);
temp.btnInvisible.enabled = false;
temp = eval ("paireTrouvee" + prochainPic);
if (temp == true) {
}
ptrTabOrdrePaires++;
} else {
bonnePaire = false;
temp = eval ("_parent." + elementClique1);
temp.AnimPic.play();
temp.btnInvisible.enabled = false;
temp = eval ("_parent." + elementClique2);
temp.AnimPic.play();
temp.btnInvisible.enabled = false;
}
}
}
}
function ReInitJeu2() {
cptCliquePic = 0;
elementClique1 = null;
elementClique2 = null;
DeuxElementsCliques = false;
bonnePaire = false;
paireTrouvee1 = false;
paireTrouvee2 = false;
paireTrouvee3 = false;
paireTrouvee4 = false;
paireTrouvee5 = false;
paireTrouvee6 = false;
prochainPic = 1;
DEVDEPLACE = false;
tableauOrdrePaires = new Array(1, 2, 3, 4, 2, 5, 6, 6, 1, 3, 4, 5);
ptrTabOrdrePaires = 0;
}
AnimDev._x = 140.2;
AnimDev._y = 312.6;
AnimDev.gotAndStop(1);
cptCliquePic = 0;
elementClique1 = null;
elementClique2 = null;
DeuxElementsCliques = false;
bonnePaire = false;
paireTrouvee1 = false;
paireTrouvee2 = false;
paireTrouvee3 = false;
paireTrouvee4 = false;
paireTrouvee5 = false;
paireTrouvee6 = false;
prochainPic = 1;
DEVDEPLACE = false;
tableauOrdrePaires = new Array(1, 2, 3, 4, 2, 5, 6, 6, 1, 3, 4, 5);
ptrTabOrdrePaires = 0;
ReInitJeu2();
}
onClipEvent (enterFrame) {
if (DeuxElementsCliques == true) {
VerifieCouplePics();
temp = eval ("_parent." + elementClique1);
temp.BgTuile.AnimTuile.play();
temp = eval ("_parent." + elementClique2);
temp.BgTuile.AnimTuile.play();
cptCliquePic = 0;
elementClique1 = null;
elementClique2 = null;
DeuxElementsCliques = false;
}
}
Instance of Symbol 375 MovieClip "Img08MvKrystal" in Frame 123
onClipEvent (load) {
if (_parent.MainController.Krystal == true) {
this.gotoAndStop(2);
_parent.Img08BtnFleche1.enabled = true;
_parent.BtnKrystal.enabled = false;
_parent.Img08Fleche1A._visible = true;
_parent.Img08Fleche1B._visible = true;
} else if (_parent.MainController.Krystal == false) {
_parent.Img08BtnFleche1.enabled = false;
_parent.Img08Fleche1A._visible = false;
_parent.Img08Fleche1B._visible = false;
}
}
Instance of Symbol 58 MovieClip in Frame 129
onClipEvent (load) {
if (_parent.MainController.KrystalDansChaudron == true) {
_parent.Img09BtnFleche1.enabled = true;
_parent.Img09Fleche1A._visible = true;
_parent.Img09Fleche1B._visible = true;
} else if (_parent.MainController.KrystalDansChaudron == false) {
_parent.Img09BtnFleche1.enabled = false;
_parent.Img09Fleche1A._visible = false;
_parent.Img09Fleche1B._visible = false;
}
}
Instance of Symbol 386 MovieClip "Img10MvKrystal" in Frame 135
onClipEvent (load) {
if (_parent.MainController.KrystalDansChaudron == true) {
this.gotoAndStop(2);
_parent.BtnKrystalChaudron.enabled = false;
_parent.Img10BtnFleche2.enabled = true;
_parent.Img10Fleche2A._visible = true;
_parent.Img10Fleche2B._visible = true;
} else if (_parent.MainController.KrystalDansChaudron == false) {
_parent.Img10BtnFleche2.enabled = false;
_parent.Img10Fleche2A._visible = false;
_parent.Img10Fleche2B._visible = false;
}
}
Instance of Symbol 390 MovieClip "Img10MvBtnKrystal" in Frame 135
onClipEvent (load) {
if (_parent.MainController.KrystalDansChaudron == true) {
this.gotoAndStop(2);
}
}
Instance of Symbol 58 MovieClip "ControlleurTreuil" in Frame 159
onClipEvent (load) {
CompteurTours = 0;
}
Instance of Symbol 551 MovieClip "DevAnim" in Frame 217
onClipEvent (load) {
this.gotoAndStop(3);
}
Instance of Symbol 75 MovieClip "J3Fleche1B" in Frame 217
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 75 MovieClip "J3Fleche1A" in Frame 217
onClipEvent (load) {
this._visible = false;
}
Instance of Symbol 58 MovieClip "Controlleur" in Frame 217
onClipEvent (load) {
function TimerDeplace() {
if (obtenirTempsDepartDeplace == true) {
tempsDepartDeplace = getTimer();
obtenirTempsDepartDeplace = false;
}
tempsCourantDeplace = Math.round(getTimer() - tempsDepartDeplace);
if (tempsCourantDeplace >= limiteTempsDeplace) {
ACTIVETIMERDEPLACE = false;
obtenirTempsDepartDeplace = true;
}
}
function TimerToucheBouclier() {
if (obtenirTempsDepartBouclier == true) {
tempsDepartBouclier = getTimer();
obtenirTempsDepartBouclier = false;
}
tempsCourantBouclier = Math.round(getTimer() - tempsDepartBouclier);
if (tempsCourantBouclier >= limiteTempsBouclier) {
obtenirTempsDepartBouclier = true;
TOUCHEBOUCLIER = false;
}
}
function ChoisirNumeroAnim1() {
nbRandom = random(6);
if (nbRandom == 0) {
while (nbRandom == 0) {
nbRandom = random(6);
}
}
return(nbRandom);
}
function ChoisirNumeroAnim2() {
nbRandom = random(6);
if ((nbRandom == animCourante1) || (nbRandom == 0)) {
while ((nbRandom == animCourante1) || (nbRandom == 0)) {
nbRandom = random(6);
}
}
return(nbRandom);
}
function DeclancheAnimations1(animCourante1) {
switch (animCourante1) {
case 1 :
_parent.AnimBalleP1.gotoAndPlay(2);
return;
case 2 :
_parent.AnimBalleP2.gotoAndPlay(2);
return;
case 3 :
_parent.AnimBalleP3.gotoAndPlay(2);
return;
case 4 :
_parent.AnimBalleP4.gotoAndPlay(2);
return;
case 5 :
_parent.AnimBalleP5.gotoAndPlay(2);
return;
default :
trace("error");
}
}
function DeclancheAnimations2(animCourante2) {
switch (animCourante2) {
case 1 :
_parent.AnimBalleD1.gotoAndPlay(2);
return;
case 2 :
_parent.AnimBalleD2.gotoAndPlay(2);
return;
case 3 :
_parent.AnimBalleD3.gotoAndPlay(2);
return;
case 4 :
_parent.AnimBalleD4.gotoAndPlay(2);
return;
case 5 :
_parent.AnimBalleD5.gotoAndPlay(2);
return;
default :
trace("error");
}
}
function ReInitGame() {
CompteurBalles = 0;
LEVEL = 1;
BALLESL1 = 12;
BALLESL2 = 24;
FINJEU3 = false;
ACTIVETIMERDEPLACE = false;
limiteTempsDeplace = 150;
obtenirTempsDepartDeplace = true;
tempsDepartDeplace = 0;
tempsCourantDeplace = 0;
positionDev = 3;
TOUCHEBOUCLIER = false;
obtenirTempsDepartBouclier = true;
tempsDepartBouclier = 0;
tempsCourantBouclier = 0;
limiteTempsBouclier = 1000;
animCourante1 = ChoisirNumeroAnim1();
DeclancheAnimations1(animCourante1);
CompteurBalles++;
ANIMBALLE1 = true;
animCourante2 = ChoisirNumeroAnim2(animCourante1);
ANIMBALLE2 = true;
adrenalineCourante = 20;
_parent.J3MvTryAgain.gotoAndStop(1);
}
_parent.BtnFinJeu3.enabled = false;
CompteurBalles = 0;
LEVEL = 1;
BALLESL1 = 12;
BALLESL2 = 24;
FINJEU3 = false;
ACTIVETIMERDEPLACE = false;
limiteTempsDeplace = 150;
obtenirTempsDepartDeplace = true;
tempsDepartDeplace = 0;
tempsCourantDeplace = 0;
positionDev = 3;
TOUCHEBOUCLIER = false;
obtenirTempsDepartBouclier = true;
tempsDepartBouclier = 0;
tempsCourantBouclier = 0;
limiteTempsBouclier = 1000;
animFrame1 = 103;
animX1 = 125;
animY1 = 255;
animFrame2 = 102;
animX2 = 198;
animY2 = 255;
animFrame3 = 103;
animX3 = 286;
animY3 = 255;
animFrame4 = 103;
animX4 = 362;
animY4 = 255;
animFrame5 = 103;
animX5 = 462;
animY5 = 255;
animCourante1 = ChoisirNumeroAnim1();
DeclancheAnimations1(animCourante1);
CompteurBalles++;
ANIMBALLE1 = true;
animCourante2 = ChoisirNumeroAnim2(animCourante1);
ANIMBALLE2 = true;
barreHauteurTotale = 103;
adrenalineCourante = 20;
adrenalineMax = 100;
_parent.Indicateur.BarreNoire._height = barreHauteurTotale - ((adrenalineCourante / adrenalineMax) * barreHauteurTotale);
}
onClipEvent (enterFrame) {
if (FINJEU3 == false) {
if (_parent.Indicateur.BarreNoire._height <= barreHauteurTotale) {
_parent.Indicateur.BarreNoire._height = barreHauteurTotale - adrenalineCourante;
adrenalineCourante = adrenalineCourante - 0.1;
if (adrenalineCourante <= 0) {
adrenalineCourante = 0;
} else if (adrenalineCourante >= 100) {
adrenalineCourante = 100;
}
} else if (_parent.Indicateur.BarreNoire._height > barreHauteurTotale) {
_parent.Indicateur.BarreNoire._height = barreHauteurTotale;
}
}
if ((Key.isDown(32) == true) && (_parent.DevAnim.Groupe._currentframe == 1)) {
_parent.DevAnim.Groupe.gotoAndStop(2);
} else if ((Key.isDown(32) == false) && (_parent.DevAnim.Groupe._currentframe == 2)) {
_parent.DevAnim.Groupe.gotoAndStop(1);
}
if (Key.isDown(32) != true) {
if (Key.isDown(39) && (Key.isDown(37))) {
} else if (Key.isDown(37) && (ACTIVETIMERDEPLACE == false)) {
if (positionDev > 1) {
positionDev--;
} else {
positionDev = 1;
}
_parent.DevAnim.gotoAndStop(positionDev);
ACTIVETIMERDEPLACE = true;
} else if (Key.isDown(39) && (ACTIVETIMERDEPLACE == false)) {
if (positionDev < 5) {
positionDev++;
} else {
positionDev = 5;
}
_parent.DevAnim.gotoAndStop(positionDev);
ACTIVETIMERDEPLACE = true;
}
}
if (ACTIVETIMERDEPLACE == true) {
TimerDeplace();
}
if (LEVEL == 1) {
refAnimCourante1 = eval ("_parent.AnimBalleP" + animCourante1);
refAnimExploseCourante1 = eval ("_parent.BalleExpP" + animCourante1);
refFrameCourant1 = eval ("animFrame" + animCourante1);
refXCourant1 = eval ("animX" + animCourante1);
refYCourant1 = eval ("animY" + animCourante1);
if (((refAnimCourante1.Balle.HitZone.hitTest(_parent.DevAnim.Groupe.Bouclier.HitZone) && (refAnimCourante1._currentframe >= refFrameCourant1)) && (TOUCHEBOUCLIER == false)) && (Key.isDown(32) == true)) {
TOUCHEBOUCLIER = true;
if (adrenalineCourante < adrenalineMax) {
adrenalineCourante = adrenalineCourante + 25;
_parent.Indicateur.BarreNoire._height = barreHauteurTotale - ((adrenalineCourante / adrenalineMax) * barreHauteurTotale);
if (_parent.Indicateur.BarreNoire._height <= 0) {
_parent.Indicateur.BarreNoire._height = 0;
}
} else {
_parent.Indicateur.BarreNoire._height = 0;
}
refAnimCourante1.gotoAndStop(1);
refAnimExploseCourante1._x = refXCourant1;
refAnimExploseCourante1._y = refYCourant1;
refAnimExploseCourante1.gotoAndPlay(2);
}
if (TOUCHEBOUCLIER == true) {
TimerToucheBouclier();
}
if ((ANIMBALLE1 == false) && (CompteurBalles == BALLESL1)) {
animCourante1 = ChoisirNumeroAnim1();
DeclancheAnimations1(animCourante1);
CompteurBalles++;
ANIMBALLE1 = true;
LEVEL = 2;
} else if (ANIMBALLE1 == false) {
animCourante1 = ChoisirNumeroAnim1();
DeclancheAnimations1(animCourante1);
CompteurBalles++;
ANIMBALLE1 = true;
}
}
if (LEVEL == 2) {
refAnimCourante1 = eval ("_parent.AnimBalleP" + animCourante1);
refAnimExploseCourante1 = eval ("_parent.BalleExpP" + animCourante1);
refFrameCourant1 = eval ("animFrame" + animCourante1);
refXCourant1 = eval ("animX" + animCourante1);
refYCourant1 = eval ("animY" + animCourante1);
if (((refAnimCourante1.Balle.HitZone.hitTest(_parent.DevAnim.Groupe.Bouclier.HitZone) && (refAnimCourante1._currentframe >= refFrameCourant1)) && (TOUCHEBOUCLIER == false)) && (Key.isDown(32) == true)) {
TOUCHEBOUCLIER = true;
if (adrenalineCourante < adrenalineMax) {
adrenalineCourante = adrenalineCourante + 25;
_parent.Indicateur.BarreNoire._height = barreHauteurTotale - ((adrenalineCourante / adrenalineMax) * barreHauteurTotale);
if (_parent.Indicateur.BarreNoire._height <= 0) {
_parent.Indicateur.BarreNoire._height = 0;
}
} else {
_parent.Indicateur.BarreNoire._height = 0;
}
refAnimCourante1.gotoAndStop(1);
refAnimExploseCourante1._x = refXCourant1;
refAnimExploseCourante1._y = refYCourant1;
refAnimExploseCourante1.gotoAndPlay(2);
}
refAnimCourante2 = eval ("_parent.AnimBalleD" + animCourante2);
refAnimExploseCourante2 = eval ("_parent.BalleExpD" + animCourante2);
refFrameCourant2 = eval ("animFrame" + animCourante2);
refXCourant2 = eval ("animX" + animCourante2);
refYCourant2 = eval ("animY" + animCourante2);
if (((refAnimCourante2.Balle.HitZone.hitTest(_parent.DevAnim.Groupe.Bouclier.HitZone) && (refAnimCourante2._currentframe >= refFrameCourant2)) && (TOUCHEBOUCLIER == false)) && (Key.isDown(32) == true)) {
TOUCHEBOUCLIER = true;
if (adrenalineCourante < adrenalineMax) {
adrenalineCourante = adrenalineCourante + 25;
_parent.Indicateur.BarreNoire._height = barreHauteurTotale - ((adrenalineCourante / adrenalineMax) * barreHauteurTotale);
if (_parent.Indicateur.BarreNoire._height <= 0) {
_parent.Indicateur.BarreNoire._height = 0;
}
} else {
_parent.Indicateur.BarreNoire._height = 0;
}
refAnimCourante2.gotoAndStop(1);
refAnimExploseCourante2._x = refXCourant2;
refAnimExploseCourante2._y = refYCourant2;
refAnimExploseCourante2.gotoAndPlay(2);
}
if (TOUCHEBOUCLIER == true) {
TimerToucheBouclier();
}
if ((ANIMBALLE1 == false) && (CompteurBalles <= BALLESL2)) {
animCourante1 = ChoisirNumeroAnim1();
DeclancheAnimations1(animCourante1);
CompteurBalles++;
ANIMBALLE1 = true;
} else if (CompteurBalles == BALLESL2) {
LEVEL = 3;
}
if ((ANIMBALLE2 == false) && (CompteurBalles <= BALLESL2)) {
animCourante2 = ChoisirNumeroAnim2(animCourante1);
DeclancheAnimations2(animCourante2);
CompteurBalles++;
ANIMBALLE2 = true;
} else if (CompteurBalles == BALLESL2) {
LEVEL = 3;
}
}
if (LEVEL == 3) {
refAnimCourante1 = eval ("_parent.AnimBalleP" + animCourante1);
refAnimExploseCourante1 = eval ("_parent.BalleExpP" + animCourante1);
refFrameCourant1 = eval ("animFrame" + animCourante1);
refXCourant1 = eval ("animX" + animCourante1);
refYCourant1 = eval ("animY" + animCourante1);
if (((refAnimCourante1.Balle.HitZone.hitTest(_parent.DevAnim.Groupe.Bouclier.HitZone) && (refAnimCourante1._currentframe >= refFrameCourant1)) && (TOUCHEBOUCLIER == false)) && (Key.isDown(32) == true)) {
TOUCHEBOUCLIER = true;
if (adrenalineCourante < adrenalineMax) {
adrenalineCourante = adrenalineCourante + 25;
_parent.Indicateur.BarreNoire._height = barreHauteurTotale - ((adrenalineCourante / adrenalineMax) * barreHauteurTotale);
if (_parent.Indicateur.BarreNoire._height <= 0) {
_parent.Indicateur.BarreNoire._height = 0;
}
} else {
_parent.Indicateur.BarreNoire._height = 0;
}
refAnimCourante1.gotoAndStop(1);
refAnimExploseCourante1._x = refXCourant1;
refAnimExploseCourante1._y = refYCourant1;
refAnimExploseCourante1.gotoAndPlay(2);
}
refAnimCourante2 = eval ("_parent.AnimBalleD" + animCourante2);
refAnimExploseCourante2 = eval ("_parent.BalleExpD" + animCourante2);
refFrameCourant2 = eval ("animFrame" + animCourante2);
refXCourant2 = eval ("animX" + animCourante2);
refYCourant2 = eval ("animY" + animCourante2);
if (((refAnimCourante2.Balle.HitZone.hitTest(_parent.DevAnim.Groupe.Bouclier.HitZone) && (refAnimCourante2._currentframe >= refFrameCourant2)) && (TOUCHEBOUCLIER == false)) && (Key.isDown(32) == true)) {
TOUCHEBOUCLIER = true;
if (adrenalineCourante < adrenalineMax) {
adrenalineCourante = adrenalineCourante + 25;
_parent.Indicateur.BarreNoire._height = barreHauteurTotale - ((adrenalineCourante / adrenalineMax) * barreHauteurTotale);
if (_parent.Indicateur.BarreNoire._height <= 0) {
_parent.Indicateur.BarreNoire._height = 0;
}
} else {
_parent.Indicateur.BarreNoire._height = 0;
}
refAnimCourante2.gotoAndStop(1);
refAnimExploseCourante2._x = refXCourant2;
refAnimExploseCourante2._y = refYCourant2;
refAnimExploseCourante2.gotoAndPlay(2);
}
if (TOUCHEBOUCLIER == true) {
TimerToucheBouclier();
}
if (((refAnimCourante1._currentframe == 1) && (refAnimCourante2._currentframe == 1)) && (FINJEU3 == false)) {
if (adrenalineCourante <= 0) {
adrenalineCourante = 0;
} else if (adrenalineCourante >= 100) {
adrenalineCourante = 100;
}
if (adrenalineCourante >= 50) {
_parent.BtnFinJeu3.enabled = true;
_parent.J3Fleche1A._visible = true;
_parent.J3Fleche1B._visible = true;
_parent.J3MvGoodSkill.gotoAndStop(2);
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("Win");
}
FINJEU3 = true;
} else {
_parent.J3MvTryAgain.gotoAndStop(2);
FINJEU3 = true;
}
}
}
if (LEVEL >= 2) {
tamponTexte = 2;
} else {
tamponTexte = LEVEL;
}
tamponTexte = "Level " + tamponTexte;
_parent.TexteLevel.text = tamponTexte;
if (adrenalineCourante <= 0) {
adrenalineCourante = 0;
} else if (adrenalineCourante >= 100) {
adrenalineCourante = 100;
}
}
Symbol 25 MovieClip Frame 18
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("ThunderIntro");
}
Symbol 25 MovieClip Frame 99
stop();
Symbol 29 Button
on (release) {
bLoaded = _root.getBytesLoaded();
bTotal = _root.getBytesTotal();
if (bLoaded == bTotal) {
gotoAndStop (21);
} else {
gotoAndStop (14);
}
}
Symbol 33 MovieClip Frame 1
stop();
Symbol 34 Button
on (release) {
if (MainController.SoundButtonEnabled == true) {
if (MvBtnSoundOff._currentframe == 1) {
MvBtnSoundOff.gotoAndStop(2);
MainController.SoundGame = false;
stopAllSounds();
MvMusique.gotoAndStop(1);
} else if (MvBtnSoundOff._currentframe == 2) {
MvBtnSoundOff.gotoAndStop(1);
MainController.SoundGame = true;
MvMusique.gotoAndPlay(2);
}
}
}
Symbol 45 MovieClip Frame 1
stop();
Symbol 45 MovieClip Frame 15
gotoAndStop (1);
Symbol 45 MovieClip Frame 67
gotoAndStop (1);
Symbol 45 MovieClip Frame 109
gotoAndStop (1);
Symbol 45 MovieClip Frame 177
gotoAndStop (1);
Symbol 45 MovieClip Frame 240
gotoAndStop (1);
Symbol 45 MovieClip Frame 277
gotoAndStop (1);
Symbol 45 MovieClip Frame 292
gotoAndStop (1);
Symbol 45 MovieClip Frame 374
gotoAndStop (1);
Symbol 45 MovieClip Frame 380
gotoAndStop (1);
Symbol 48 MovieClip Frame 1
stop();
Symbol 51 MovieClip Frame 1
stop();
Symbol 54 MovieClip Frame 1
stop();
Symbol 54 MovieClip Frame 13
gotoAndStop (1);
Symbol 56 MovieClip Frame 1
stop();
Symbol 58 MovieClip Frame 1
stop();
Symbol 64 MovieClip Frame 215
stop();
_parent.gotoAndStop("Img01");
Symbol 66 MovieClip Frame 60
stop();
Symbol 67 MovieClip Frame 60
stop();
Symbol 70 MovieClip Frame 1
stop();
Symbol 75 MovieClip Frame 1
stop();
Symbol 75 MovieClip Frame 23
gotoAndPlay (2);
Symbol 78 MovieClip Frame 1
stop();
Symbol 78 MovieClip Frame 21
gotoAndPlay (2);
Symbol 79 Button
on (rollOver) {
Img01Fleche3A.play();
Img01Fleche3B.play();
}
on (rollOut) {
Img01Fleche3A.gotoAndStop(1);
Img01Fleche3B.gotoAndStop(1);
}
on (release) {
gotoAndStop (32);
}
Symbol 80 Button
on (rollOver) {
Img01Fleche2A.play();
Img01Fleche2B.play();
}
on (rollOut) {
Img01Fleche2A.gotoAndStop(1);
Img01Fleche2B.gotoAndStop(1);
}
on (release) {
gotoAndStop (44);
}
Symbol 81 Button
on (rollOver) {
Img01Fleche1A.play();
Img01Fleche1B.play();
}
on (rollOut) {
Img01Fleche1A.gotoAndStop(1);
Img01Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (38);
}
Symbol 82 Button
on (press) {
if (Bulle3._currentframe == 1) {
Bulle3.play();
Pointe3.play();
}
}
on (rollOut) {
if (Bulle3._currentframe == 7) {
Bulle3.play();
Pointe3.play();
}
}
on (release) {
if (Bulle3._currentframe == 7) {
Bulle3.play();
Pointe3.play();
}
}
on (releaseOutside) {
if (Bulle3._currentframe == 7) {
Bulle3.play();
Pointe3.play();
}
}
Symbol 88 MovieClip Frame 1
stop();
Symbol 88 MovieClip Frame 7
stop();
tampon = this._name;
BtnBulle.useHandCursor = false;
if (((tampon == "Bulle3") && (_parent.MainController.Boulets == true)) && (_parent.MainController.ChaudronDescendu == false)) {
tampon = "Bulle7";
} else if ((((tampon == "Bulle3") && (_parent.MainController.Boulets == true)) && (_parent.MainController.ChaudronDescendu == true)) && (_parent.MainController.Bouclier == false)) {
tampon = "Bulle11";
} else if ((((tampon == "Bulle3") && (_parent.MainController.Boulets == true)) && (_parent.MainController.ChaudronDescendu == true)) && (_parent.MainController.Bouclier == true)) {
tampon = "Bulle3";
} else if (((tampon == "Bulle5") && (_parent.MainController.Boulets == true)) && (_parent.MainController.ChaudronDescendu == false)) {
tampon = "Bulle6";
} else if ((((tampon == "Bulle5") && (_parent.MainController.Boulets == true)) && (_parent.MainController.ChaudronDescendu == true)) && (_parent.MainController.Bouclier == false)) {
tampon = "Bulle11";
} else if ((((tampon == "Bulle8") && (_parent.MainController.Boulets == true)) && (_parent.MainController.ChaudronDescendu == true)) && (_parent.MainController.Bouclier == false)) {
tampon = "Bulle11";
}
tampon = eval ("_parent.MainController." + tampon);
TexteBulle.text = tampon;
Symbol 91 MovieClip Frame 1
stop();
Symbol 91 MovieClip Frame 7
stop();
Symbol 92 Button
on (release) {
gotoAndStop (56);
}
Symbol 103 MovieClip Frame 1
stop();
Symbol 106 MovieClip Frame 1
stop();
Symbol 109 MovieClip Frame 1
stop();
Symbol 110 Button
on (rollOver) {
if (MainController.Krystal == true) {
IconeKrystal.gotoAndStop(3);
}
}
on (rollOut) {
if (MainController.Krystal == true) {
IconeKrystal.gotoAndStop(2);
}
}
Symbol 111 Button
on (rollOver) {
if (MainController.Bouclier == true) {
IconeBouclier.gotoAndStop(3);
}
}
on (rollOut) {
if (MainController.Bouclier == true) {
IconeBouclier.gotoAndStop(2);
}
}
Symbol 112 Button
on (rollOver) {
if (MainController.Boulets == true) {
IconeBoulets.gotoAndStop(3);
}
}
on (rollOut) {
if (MainController.Boulets == true) {
IconeBoulets.gotoAndStop(2);
}
}
Symbol 117 MovieClip Frame 1
stop();
Symbol 117 MovieClip Frame 27
gotoAndPlay (2);
Symbol 118 Button
on (rollOver) {
Img02Fleche1A.play();
Img02Fleche1B.play();
}
on (rollOut) {
Img02Fleche1A.gotoAndStop(1);
Img02Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (26);
}
Symbol 121 MovieClip Frame 1
stop();
Symbol 122 Button
on (rollOver) {
if (MainController.Bouclier == false) {
Img02MvGlow.play();
}
}
on (rollOut) {
if (MainController.Bouclier == false) {
Img02MvGlow.gotoAndStop(1);
}
}
on (release) {
Img02MvBouclier.gotoAndStop(2);
MainController.Bouclier = true;
IconeBouclier.gotoAndStop(2);
BtnBouclier.enabled = false;
BtnIconeBouclier.enabled = true;
Img02MvGlow.gotoAndStop(1);
if (MainController.SoundGame == true) {
MvSfx.gotoAndPlay("Bip1");
}
}
Symbol 128 Button
on (press) {
if (Bulle1._currentframe == 1) {
Bulle1.play();
Pointe1.play();
}
if (Bulle2._currentframe == 7) {
Bulle2.play();
Pointe2.play();
}
}
on (rollOut) {
if (Bulle1._currentframe == 7) {
Bulle1.play();
Pointe1.play();
}
}
on (release) {
if (Bulle1._currentframe == 7) {
Bulle1.play();
Pointe1.play();
}
}
on (releaseOutside) {
if (Bulle1._currentframe == 7) {
Bulle1.play();
Pointe1.play();
}
}
Symbol 129 Button
on (press) {
if (Bulle2._currentframe == 1) {
Bulle2.play();
Pointe2.play();
}
if (Bulle1._currentframe == 7) {
Bulle1.play();
Pointe1.play();
}
}
on (rollOut) {
if (Bulle2._currentframe == 7) {
Bulle2.play();
Pointe2.play();
}
}
on (release) {
if (Bulle2._currentframe == 7) {
Bulle2.play();
Pointe2.play();
}
}
on (releaseOutside) {
if (Bulle2._currentframe == 7) {
Bulle2.play();
Pointe2.play();
}
}
Symbol 130 Button
on (rollOver) {
Img03Fleche1A.play();
Img03Fleche1B.play();
}
on (rollOut) {
Img03Fleche1A.gotoAndStop(1);
Img03Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (26);
}
Symbol 133 Button
on (press) {
if (Bulle4._currentframe == 1) {
Bulle4.play();
Pointe4.play();
}
}
on (rollOut) {
if (Bulle4._currentframe == 7) {
Bulle4.play();
Pointe4.play();
}
}
on (release) {
if (Bulle4._currentframe == 7) {
Bulle4.play();
Pointe4.play();
}
}
on (releaseOutside) {
if (Bulle4._currentframe == 7) {
Bulle4.play();
Pointe4.play();
}
}
Symbol 134 Button
on (rollOver) {
Img04Fleche2A.play();
Img04Fleche2B.play();
}
on (rollOut) {
Img04Fleche2A.gotoAndStop(1);
Img04Fleche2B.gotoAndStop(1);
}
on (release) {
if ((MainController.ChaudronDescendu == true) && (MainController.Bouclier == true)) {
gotoAndStop (84);
} else {
gotoAndStop (50);
}
}
Symbol 135 Button
on (rollOver) {
Img04Fleche1A.play();
Img04Fleche1B.play();
}
on (rollOut) {
Img04Fleche1A.gotoAndStop(1);
Img04Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (26);
}
Symbol 138 MovieClip Frame 1
stop();
Symbol 138 MovieClip Frame 7
stop();
Symbol 141 Button
on (press) {
if (Bulle5._currentframe == 1) {
Bulle5.play();
Pointe5.play();
}
}
on (rollOut) {
if (Bulle5._currentframe == 7) {
Bulle5.play();
Pointe5.play();
}
}
on (release) {
if (Bulle5._currentframe == 7) {
Bulle5.play();
Pointe5.play();
}
}
on (releaseOutside) {
if (Bulle5._currentframe == 7) {
Bulle5.play();
Pointe5.play();
}
}
Symbol 142 Button
on (rollOver) {
Img05Fleche1A.play();
Img05Fleche1B.play();
}
on (rollOut) {
Img05Fleche1A.gotoAndStop(1);
Img05Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (44);
}
Symbol 144 MovieClip Frame 1
stop();
Symbol 145 Button
on (rollOver) {
if (MainController.Boulets == false) {
Img05MvGlow.play();
}
}
on (rollOut) {
if (MainController.Boulets == false) {
Img05MvGlow.gotoAndStop(1);
}
}
on (release) {
Img05MvBoulets.gotoAndStop(2);
MainController.Boulets = true;
IconeBoulets.gotoAndStop(2);
BtnBoulets.enabled = false;
BtnIconeBoulets.enabled = true;
Img05MvGlow.gotoAndStop(1);
if (MainController.SoundGame == true) {
MvSfx.gotoAndPlay("Bip1");
}
}
Symbol 153 Button
on (release) {
play();
}
Symbol 163 MovieClip Frame 1
stop();
Symbol 166 MovieClip Frame 1
stop();
Symbol 167 Button
on (release) {
_parent.gotoAndStop("Jeu1");
}
Symbol 171 MovieClip Frame 1
stop();
Symbol 171 MovieClip Frame 264
gotoAndStop (1);
Symbol 186 MovieClip Frame 1
stop();
Symbol 186 MovieClip Frame 2
_parent.J1MvNiceShot.gotoAndStop(2);
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("Win");
}
Symbol 186 MovieClip Frame 31
stop();
_parent.gotoAndStop("Anim01");
Symbol 194 MovieClip Frame 1
stop();
Symbol 194 MovieClip Frame 44
gotoAndPlay (3);
Symbol 197 MovieClip Frame 1
stop();
Symbol 201 MovieClip Frame 1
stop();
Symbol 201 MovieClip Frame 20
stop();
_parent.AnimBouletLow.gotoAndStop(1);
_parent.AnimBouletHigh.gotoAndStop(1);
_parent.J1Controller.InitVariables();
_parent.J1Controller.DeterminePosDepartMire();
_parent.Indicateur.gotoAndStop(1);
Symbol 203 MovieClip Frame 1
stop();
Symbol 203 MovieClip Frame 17
_parent.J1MvTarget.play();
Symbol 203 MovieClip Frame 18
stop();
Symbol 205 MovieClip Frame 1
stop();
Symbol 205 MovieClip Frame 45
_parent.J1Controller.bouletVoyageUnlocked = false;
gotoAndStop (1);
Symbol 220 MovieClip Frame 1
Symbol 226 MovieClip Frame 1
stop();
Symbol 229 Button
on (release) {
_parent.AnimBouletLow.gotoAndStop(1);
_parent.AnimBouletHigh.gotoAndStop(1);
_parent.J1Controller.InitVariables();
_parent.J1Controller.DeterminePosDepartMire();
_parent.Indicateur.gotoAndStop(1);
gotoAndStop (1);
}
Symbol 230 MovieClip Frame 1
stop();
Symbol 234 MovieClip Frame 2
if (_parent.MainController.SoundGame == true) {
_parent.MvLoopTreuil.gotoAndPlay("SonTreuil");
}
Symbol 234 MovieClip Frame 92
_parent.MvLoopTreuil.gotoAndStop("FinSonTreuil");
_parent.MainController.ChaudronDescendu = true;
_parent.gotoAndStop("Img01");
Symbol 239 MovieClip Frame 1
stop();
Symbol 239 MovieClip Frame 10
_parent.gotoAndStop("Anim02");
Symbol 243 Button
on (release) {
Img06DevEtat2._visible = true;
Img06DevEtat1._visible = false;
Img06DevEtat2.play();
}
Symbol 244 Button
on (press) {
if (Bulle8._currentframe == 1) {
Bulle8.play();
Pointe8.play();
}
}
on (rollOut) {
if (Bulle8._currentframe == 7) {
Bulle8.play();
Pointe8.play();
}
}
on (release) {
if (Bulle8._currentframe == 7) {
Bulle8.play();
Pointe8.play();
}
}
on (releaseOutside) {
if (Bulle8._currentframe == 7) {
Bulle8.play();
Pointe8.play();
}
}
Symbol 320 MovieClip Frame 17
if (_parent.MainController.SoundGame == true) {
_parent.MvLoopChariot.gotoAndPlay("SonChariot");
}
Symbol 320 MovieClip Frame 102
Symbol 320 MovieClip Frame 103
_parent.MvLoopChariot.gotoAndStop("FinSonChariot");
_parent.gotoAndStop("Img07");
Symbol 323 Button
on (rollOver) {
Img07Fleche1A.play();
Img07Fleche1B.play();
}
on (rollOut) {
Img07Fleche1A.gotoAndStop(1);
Img07Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (103);
}
Symbol 334 MovieClip Frame 1
stop();
Symbol 335 MovieClip Frame 1
stop();
Symbol 335 MovieClip Frame 10
if (_parent._parent.Controlleur.bonnePaire == true) {
stop();
_parent._parent.AnimDev.play();
_parent._parent.Controlleur.DEVDEPLACE = true;
}
Symbol 335 MovieClip Frame 20
gotoAndStop (1);
_parent.btnInvisible.enabled = true;
Symbol 341 MovieClip Frame 1
stop();
Symbol 342 Button
on (release) {
_parent.gotoAndStop("Jeu2");
}
Symbol 346 MovieClip Frame 1
stop();
Symbol 346 MovieClip Frame 243
gotoAndStop (1);
Symbol 351 MovieClip Frame 1
stop();
Instance of Symbol 350 MovieClip in Symbol 351 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 351 MovieClip Frame 9
stop();
_parent.Numero.gotoAndStop(1);
_parent._parent.BgTuile.gotoAndStop(1);
Symbol 358 MovieClip Frame 1
stop();
Symbol 359 MovieClip Frame 1
stop();
Instance of Symbol 358 MovieClip "Numeros" in Symbol 359 MovieClip Frame 2
onClipEvent (load) {
gotoAndStop (2);
}
Instance of Symbol 358 MovieClip "Numeros" in Symbol 359 MovieClip Frame 3
onClipEvent (load) {
gotoAndStop (3);
}
Instance of Symbol 358 MovieClip "Numeros" in Symbol 359 MovieClip Frame 4
onClipEvent (load) {
gotoAndStop (4);
}
Instance of Symbol 358 MovieClip "Numeros" in Symbol 359 MovieClip Frame 5
onClipEvent (load) {
gotoAndStop (5);
}
Instance of Symbol 358 MovieClip "Numeros" in Symbol 359 MovieClip Frame 6
onClipEvent (load) {
gotoAndStop (6);
}
Instance of Symbol 358 MovieClip "Numeros" in Symbol 359 MovieClip Frame 7
onClipEvent (load) {
gotoAndStop (7);
}
Symbol 361 Button
on (press) {
if (_parent.Controlleur.DEVDEPLACE == false) {
tampon = this._name;
if (_parent.Controlleur.cptCliquePic == 0) {
_parent.Controlleur.elementClique1 = tampon;
tampon = _parent.Controlleur.elementClique1.split("_");
tampon = tampon[1];
tampon = int(tampon);
BgTuile.gotoAndStop(tampon + 1);
_parent.Controlleur.cptCliquePic++;
} else if ((_parent.Controlleur.cptCliquePic == 1) && (tampon != _parent.Controlleur.elementClique1)) {
_parent.Controlleur.elementClique2 = tampon;
tampon = _parent.Controlleur.elementClique2.split("_");
tampon = tampon[1];
tampon = int(tampon);
BgTuile.gotoAndStop(tampon + 1);
_parent.Controlleur.cptCliquePic++;
_parent.Controlleur.DeuxElementsCliques = true;
}
}
}
Symbol 367 MovieClip Frame 1
stop();
Symbol 370 MovieClip Frame 1
_parent.J2Glow.gotoAndPlay(2);
stop();
Symbol 370 MovieClip Frame 6
_parent.Controlleur.prochainPic = 2;
if (_parent.Controlleur.paireTrouvee2 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 11
_parent.mcPic_1_a.AnimPic.play();
_parent.mcPic_1_a.btnInvisible.enabled = true;
_parent.mcPic_1_b.AnimPic.play();
_parent.mcPic_1_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee1 = false;
Symbol 370 MovieClip Frame 16
Dev.gotoAndStop(2);
_parent.mcPic_2_a.AnimPic.play();
_parent.mcPic_2_a.btnInvisible.enabled = true;
_parent.mcPic_2_b.AnimPic.play();
_parent.mcPic_2_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee2 = false;
Symbol 370 MovieClip Frame 21
_parent.Controlleur.prochainPic = 3;
if (_parent.Controlleur.paireTrouvee3 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 26
Symbol 370 MovieClip Frame 31
Dev.gotoAndStop(1);
_parent.mcPic_3_a.AnimPic.play();
_parent.mcPic_3_a.btnInvisible.enabled = true;
_parent.mcPic_3_b.AnimPic.play();
_parent.mcPic_3_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee3 = false;
Symbol 370 MovieClip Frame 36
Symbol 370 MovieClip Frame 41
_parent.Controlleur.prochainPic = 4;
if (_parent.Controlleur.paireTrouvee4 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 46
Symbol 370 MovieClip Frame 51
_parent.mcPic_4_a.AnimPic.play();
_parent.mcPic_4_a.btnInvisible.enabled = true;
_parent.mcPic_4_b.AnimPic.play();
_parent.mcPic_4_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee4 = false;
test1 = _parent.mcPic_1_a.getDepth();
test2 = _parent.mcPic_2_a.getDepth();
test3 = _parent.mcPic_3_a.getDepth();
_parent.Montagne1.swapDepths(test3 - 5);
_parent.Montagne2.swapDepths(test3 - 10);
Symbol 370 MovieClip Frame 56
Symbol 370 MovieClip Frame 61
_parent.Controlleur.prochainPic = 2;
if (_parent.Controlleur.paireTrouvee2 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 66
Symbol 370 MovieClip Frame 71
Dev.gotoAndStop(3);
_parent.mcPic_2_a.AnimPic.play();
_parent.mcPic_2_a.btnInvisible.enabled = true;
_parent.mcPic_2_b.AnimPic.play();
_parent.mcPic_2_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee2 = false;
_parent.Controlleur.prochainPic = 5;
if (_parent.Controlleur.paireTrouvee5 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 76
Symbol 370 MovieClip Frame 81
Dev.gotoAndStop(4);
_parent.mcPic_5_a.AnimPic.play();
_parent.mcPic_5_a.btnInvisible.enabled = true;
_parent.mcPic_5_b.AnimPic.play();
_parent.mcPic_5_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee5 = false;
Symbol 370 MovieClip Frame 86
Symbol 370 MovieClip Frame 91
Dev.gotoAndStop(3);
_parent.Controlleur.prochainPic = 6;
if (_parent.Controlleur.paireTrouvee6 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 96
Symbol 370 MovieClip Frame 101
Dev.gotoAndStop(4);
_parent.mcPic_6_a.AnimPic.play();
_parent.mcPic_6_a.btnInvisible.enabled = true;
_parent.mcPic_6_b.AnimPic.play();
_parent.mcPic_6_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee6 = false;
Symbol 370 MovieClip Frame 106
Symbol 370 MovieClip Frame 111
Dev.gotoAndStop(3);
Symbol 370 MovieClip Frame 116
Dev.gotoAndStop(1);
_parent.Controlleur.prochainPic = 6;
if (_parent.Controlleur.paireTrouvee6 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 121
Symbol 370 MovieClip Frame 126
_parent.Controlleur.prochainPic = 1;
_parent.mcPic_6_a.AnimPic.play();
_parent.mcPic_6_a.btnInvisible.enabled = true;
_parent.mcPic_6_b.AnimPic.play();
_parent.mcPic_6_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee6 = false;
if (_parent.Controlleur.paireTrouvee1 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 131
Symbol 370 MovieClip Frame 136
_parent.mcPic_1_a.AnimPic.play();
_parent.mcPic_1_a.btnInvisible.enabled = true;
_parent.mcPic_1_b.AnimPic.play();
_parent.mcPic_1_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee1 = false;
Symbol 370 MovieClip Frame 141
Dev.gotoAndStop(2);
Symbol 370 MovieClip Frame 146
Dev.gotoAndStop(1);
Symbol 370 MovieClip Frame 151
Symbol 370 MovieClip Frame 156
Symbol 370 MovieClip Frame 161
Dev.gotoAndStop(2);
_parent.Controlleur.prochainPic = 3;
if (_parent.Controlleur.paireTrouvee3 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 166
Symbol 370 MovieClip Frame 171
_parent.mcPic_3_a.AnimPic.play();
_parent.mcPic_3_a.btnInvisible.enabled = true;
_parent.mcPic_3_b.AnimPic.play();
_parent.mcPic_3_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee3 = false;
Symbol 370 MovieClip Frame 176
Dev.gotoAndStop(4);
_parent.Controlleur.prochainPic = 4;
if (_parent.Controlleur.paireTrouvee4 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 181
Symbol 370 MovieClip Frame 186
Dev.gotoAndStop(2);
_parent.mcPic_4_a.AnimPic.play();
_parent.mcPic_4_a.btnInvisible.enabled = true;
_parent.mcPic_4_b.AnimPic.play();
_parent.mcPic_4_b.btnInvisible.enabled = true;
_parent.Controlleur.paireTrouvee4 = false;
_parent.Controlleur.prochainPic = 5;
if (_parent.Controlleur.paireTrouvee5 == false) {
_parent.Controlleur.DEVDEPLACE = false;
stop();
}
Symbol 370 MovieClip Frame 191
_parent.Controlleur.DEVDEPLACE = false;
Symbol 370 MovieClip Frame 201
Dev.gotoAndStop(1);
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("Win");
}
Symbol 370 MovieClip Frame 245
_parent.Controlleur.ReInitJeu2();
_parent.gotoAndStop("Img08");
Symbol 375 MovieClip Frame 1
stop();
Symbol 376 Button
on (rollOver) {
Img08Fleche1A.play();
Img08Fleche1B.play();
}
on (rollOut) {
Img08Fleche1A.gotoAndStop(1);
Img08Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (135);
}
Symbol 377 Button
on (rollOver) {
if (MainController.Krystal == false) {
Img08MvGlow.play();
}
}
on (rollOut) {
if (MainController.Krystal == false) {
Img08MvGlow.gotoAndStop(1);
}
}
on (release) {
Img08MvKrystal.gotoAndStop(2);
MainController.Krystal = true;
IconeKrystal.gotoAndStop(2);
BtnKrystal.enabled = false;
BtnIconeKrystal.enabled = true;
Img08MvGlow.gotoAndStop(1);
Img08BtnFleche1.enabled = true;
Img08BtnFleche2.enabled = true;
Img08Fleche1A._visible = true;
Img08Fleche1B._visible = true;
if (MainController.SoundGame == true) {
MvSfx.gotoAndPlay("Bip1");
}
}
Symbol 380 Button
on (rollOver) {
Img09Fleche2A.play();
Img09Fleche2B.play();
}
on (rollOut) {
Img09Fleche2A.gotoAndStop(1);
Img09Fleche2B.gotoAndStop(1);
}
on (release) {
gotoAndStop (135);
}
Symbol 381 Button
on (rollOver) {
Img09Fleche1A.play();
Img09Fleche1B.play();
}
on (rollOut) {
Img09Fleche1A.gotoAndStop(1);
Img09Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (147);
}
Symbol 386 MovieClip Frame 1
stop();
Symbol 387 Button
on (rollOver) {
Img10Fleche2A.play();
Img10Fleche2B.play();
}
on (rollOut) {
Img10Fleche2A.gotoAndStop(1);
Img10Fleche2B.gotoAndStop(1);
}
on (release) {
gotoAndStop (129);
}
Symbol 388 Button
on (rollOver) {
Img10Fleche1A.play();
Img10Fleche1B.play();
}
on (rollOut) {
Img10Fleche1A.gotoAndStop(1);
Img10Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (141);
}
Symbol 389 Button
on (rollOver) {
if (_parent.MainController.KrystalDansChaudron == false) {
Img10GlowChaudron.play();
}
}
on (rollOut) {
if (_parent.MainController.KrystalDansChaudron == false) {
Img10GlowChaudron.gotoAndStop(1);
}
}
on (press) {
_parent.Img10MvKrystal.gotoAndStop(2);
_parent.MainController.KrystalDansChaudron = true;
_parent.Img10BtnFleche2.enabled = true;
_parent.Img10Fleche2A._visible = true;
_parent.Img10Fleche2B._visible = true;
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("Bip1");
}
gotoAndStop (2);
}
Symbol 390 MovieClip Frame 1
stop();
Symbol 393 Button
on (rollOver) {
Img11Fleche1A.play();
Img11Fleche1B.play();
}
on (rollOut) {
Img11Fleche1A.gotoAndStop(1);
Img11Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (135);
}
Symbol 394 Button
on (press) {
if (Bulle9._currentframe == 1) {
Bulle9.play();
Pointe9.play();
}
}
on (rollOut) {
if (Bulle9._currentframe == 7) {
Bulle9.play();
Pointe9.play();
}
}
on (release) {
if (Bulle9._currentframe == 7) {
Bulle9.play();
Pointe9.play();
}
}
on (releaseOutside) {
if (Bulle9._currentframe == 7) {
Bulle9.play();
Pointe9.play();
}
}
Symbol 398 Button
on (rollOver) {
Img12Fleche1A.play();
Img12Fleche1B.play();
}
on (rollOut) {
Img12Fleche1A.gotoAndStop(1);
Img12Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (159);
}
Symbol 399 Button
on (rollOver) {
Img12Fleche2A.play();
Img12Fleche2B.play();
}
on (rollOut) {
Img12Fleche2A.gotoAndStop(1);
Img12Fleche2B.gotoAndStop(1);
}
on (release) {
gotoAndStop (129);
}
Symbol 443 MovieClip Frame 1
stop();
Symbol 443 MovieClip Frame 21
if (_parent.ControlleurTreuil.CompteurTours < 2) {
_parent.ControlleurTreuil.CompteurTours++;
gotoAndPlay (2);
} else if (_parent.ControlleurTreuil.CompteurTours >= 2) {
_parent.gotoAndStop("Img15");
}
Symbol 444 Button
on (press) {
_parent.MvAnimTreuil.play();
if (_parent.MainController.SoundGame == true) {
_parent.MvLoopTreuil.gotoAndPlay("SonTreuil");
}
gotoAndStop (2);
}
on (rollOver) {
GlowManivelle.play();
}
on (rollOut) {
GlowManivelle.gotoAndStop(1);
}
Symbol 445 MovieClip Frame 1
stop();
Symbol 451 MovieClip Frame 60
stop();
_parent.MvLoopTreuil.gotoAndStop("FinSonTreuil");
_parent.gotoAndStop("Img16");
Symbol 454 Button
on (rollOver) {
Img16Fleche1A.play();
Img16Fleche1B.play();
}
on (rollOut) {
Img16Fleche1A.gotoAndStop(1);
Img16Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (177);
}
Symbol 457 Button
on (press) {
_parent.MvSfx.gotoAndPlay("Bip2");
_parent.gotoAndStop("Anim03");
gotoAndStop (2);
}
on (rollOver) {
GlowXenoz.play();
}
on (rollOut) {
GlowXenoz.gotoAndStop(1);
}
Symbol 458 MovieClip Frame 1
stop();
Symbol 467 MovieClip Frame 9
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("ThunderIntro");
}
Symbol 467 MovieClip Frame 60
_parent.gotoAndStop("Img18");
Symbol 475 MovieClip Frame 2
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("WindowSlide");
}
Symbol 475 MovieClip Frame 50
_parent.gotoAndStop("Img19");
Symbol 478 MovieClip Frame 150
_parent.gotoAndStop("Instructions3");
Symbol 483 MovieClip Frame 5
if (_parent._parent.MainController.SoundGame == true) {
_parent._parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 483 MovieClip Frame 14
if (_parent._parent.MainController.SoundGame == true) {
_parent._parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 484 MovieClip Frame 4
if (_parent._parent.MainController.SoundGame == true) {
_parent._parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 486 MovieClip Frame 30
if (_parent._parent.MainController.SoundGame == true) {
_parent._parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 499 MovieClip Frame 1
stop();
Symbol 500 Button
on (release) {
_parent.gotoAndStop("Jeu3");
}
Symbol 501 MovieClip Frame 1
stop();
Symbol 501 MovieClip Frame 360
gotoAndStop (1);
Symbol 513 MovieClip Frame 1
stop();
Symbol 513 MovieClip Frame 2
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("IceBreak");
}
Symbol 513 MovieClip Frame 10
if (_parent.Controlleur.LEVEL == 1) {
_parent.Controlleur.ANIMBALLE1 = false;
}
stop();
Instance of Symbol 518 MovieClip "HitZone" in Symbol 519 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 526 MovieClip Frame 2
if (_parent._parent.MainController.SoundGame == true) {
_parent._parent.MvSfx.gotoAndPlay("IceBreak2");
}
Symbol 527 MovieClip Frame 1
stop();
Symbol 527 MovieClip Frame 13
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 527 MovieClip Frame 32
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 527 MovieClip Frame 53
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 527 MovieClip Frame 60
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE2 = false;
}
Symbol 527 MovieClip Frame 79
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 527 MovieClip Frame 114
if (_parent.Controlleur.LEVEL == 1) {
_parent.Controlleur.ANIMBALLE1 = false;
}
gotoAndStop (1);
Symbol 529 MovieClip Frame 1
stop();
Symbol 529 MovieClip Frame 13
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 529 MovieClip Frame 32
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 529 MovieClip Frame 53
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 529 MovieClip Frame 60
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE1 = false;
}
Symbol 529 MovieClip Frame 79
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 529 MovieClip Frame 114
gotoAndStop (1);
Symbol 531 MovieClip Frame 1
stop();
Symbol 531 MovieClip Frame 15
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 531 MovieClip Frame 37
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 531 MovieClip Frame 60
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE2 = false;
}
Symbol 531 MovieClip Frame 62
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 531 MovieClip Frame 85
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 531 MovieClip Frame 114
if (_parent.Controlleur.LEVEL == 1) {
_parent.Controlleur.ANIMBALLE1 = false;
}
gotoAndStop (1);
Symbol 533 MovieClip Frame 1
stop();
Symbol 533 MovieClip Frame 15
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 533 MovieClip Frame 37
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 533 MovieClip Frame 60
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE1 = false;
}
Symbol 533 MovieClip Frame 62
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 533 MovieClip Frame 85
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 533 MovieClip Frame 114
gotoAndStop (1);
Symbol 535 MovieClip Frame 1
stop();
Symbol 535 MovieClip Frame 11
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 535 MovieClip Frame 34
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 535 MovieClip Frame 60
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE2 = false;
}
Symbol 535 MovieClip Frame 83
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 535 MovieClip Frame 114
if (_parent.Controlleur.LEVEL == 1) {
_parent.Controlleur.ANIMBALLE1 = false;
}
gotoAndStop (1);
Symbol 537 MovieClip Frame 1
stop();
Symbol 537 MovieClip Frame 10
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 537 MovieClip Frame 34
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 537 MovieClip Frame 60
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE1 = false;
}
Symbol 537 MovieClip Frame 83
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 537 MovieClip Frame 114
gotoAndStop (1);
Symbol 539 MovieClip Frame 1
stop();
Symbol 539 MovieClip Frame 13
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 539 MovieClip Frame 33
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 539 MovieClip Frame 55
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 539 MovieClip Frame 60
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE2 = false;
}
Symbol 539 MovieClip Frame 82
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 539 MovieClip Frame 114
if (_parent.Controlleur.LEVEL == 1) {
_parent.Controlleur.ANIMBALLE1 = false;
}
gotoAndStop (1);
Symbol 541 MovieClip Frame 1
stop();
Symbol 541 MovieClip Frame 13
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 541 MovieClip Frame 33
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 541 MovieClip Frame 55
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 541 MovieClip Frame 60
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE1 = false;
}
Symbol 541 MovieClip Frame 82
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 541 MovieClip Frame 114
gotoAndStop (1);
Symbol 543 MovieClip Frame 1
stop();
Symbol 543 MovieClip Frame 15
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 543 MovieClip Frame 37
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 543 MovieClip Frame 60
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE2 = false;
}
Symbol 543 MovieClip Frame 83
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace1.gotoAndPlay("SonGlace");
}
Symbol 543 MovieClip Frame 114
if (_parent.Controlleur.LEVEL == 1) {
_parent.Controlleur.ANIMBALLE1 = false;
}
gotoAndStop (1);
Symbol 545 MovieClip Frame 1
stop();
Symbol 545 MovieClip Frame 15
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 545 MovieClip Frame 37
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 545 MovieClip Frame 59
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 545 MovieClip Frame 60
if (_parent.Controlleur.LEVEL == 2) {
_parent.Controlleur.ANIMBALLE1 = false;
}
Symbol 545 MovieClip Frame 83
if (_parent.MainController.SoundGame == true) {
_parent.MvSonGlace2.gotoAndPlay("SonGlace");
}
Symbol 545 MovieClip Frame 114
gotoAndStop (1);
Instance of Symbol 518 MovieClip "HitZone" in Symbol 546 MovieClip Frame 1
onClipEvent (load) {
this._visible = false;
}
Symbol 550 MovieClip Frame 1
stop();
Symbol 551 MovieClip Frame 1
stop();
Symbol 556 MovieClip Frame 1
stop();
Symbol 557 Button
on (rollOver) {
J3Fleche1A.play();
J3Fleche1B.play();
}
on (rollOut) {
J3Fleche1A.gotoAndStop(1);
J3Fleche1B.gotoAndStop(1);
}
on (release) {
gotoAndStop (228);
}
Symbol 559 MovieClip Frame 1
stop();
Symbol 565 Button
on (release) {
_parent.Controlleur.ReInitGame();
}
Symbol 566 MovieClip Frame 1
stop();
Symbol 572 MovieClip Frame 55
_parent.gotoAndStop("Anim05");
Symbol 578 MovieClip Frame 11
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("Click");
}
Symbol 578 MovieClip Frame 43
_parent.gotoAndStop("Anim06");
Symbol 595 MovieClip Frame 37
if (_parent._parent.MainController.SoundGame == true) {
_parent._parent.MvSfx.gotoAndPlay("ThunderDragon");
}
Symbol 595 MovieClip Frame 94
_parent._parent.gotoAndStop("Anim07");
Symbol 605 MovieClip Frame 1
stop();
Symbol 605 MovieClip Frame 25
if (_parent.MainController.SoundGame == true) {
_parent.MvSfx.gotoAndPlay("WhooshDragon");
}
Symbol 605 MovieClip Frame 84
_parent.gotoAndStop("Anim08");
Symbol 606 Button
on (press) {
if (_parent.Bulle10._currentframe == 1) {
_parent.Bulle10.play();
_parent.Pointe10.play();
}
}
on (release) {
if (_parent.Bulle10._currentframe == 7) {
_parent.Bulle10.play();
_parent.Pointe10.play();
gotoAndStop (2);
}
}
on (releaseOutside) {
if (_parent.Bulle10._currentframe == 7) {
_parent.Bulle10.play();
_parent.Pointe10.play();
gotoAndStop (2);
}
}
Symbol 607 MovieClip Frame 1
stop();
Symbol 610 MovieClip Frame 1
stop();
Symbol 610 MovieClip Frame 7
stop();
tampon = this._name;
if (((tampon == "Bulle3") && (_parent.MainController.Boulets == true)) && (_parent.MainController.ChaudronDescendu == false)) {
tampon = "Bulle7";
} else if ((tampon == "Bulle5") && (_parent.MainController.Boulets == true)) {
tampon = "Bulle6";
}
if (tampon == "Bulle10") {
tampon = eval ("_parent.MainController." + tampon);
TexteBulleXenoz.text = tampon;
} else {
tampon = eval ("_parent.MainController." + tampon);
TexteBulle.text = tampon;
}
Symbol 610 MovieClip Frame 12
tampon = this._name;
if (tampon == "Bulle10") {
_parent.DragonXenoz.play();
}
Symbol 616 MovieClip Frame 43
_parent.BNAnimHautFerme.play();
_parent.BNAnimBasFerme.play();
Symbol 616 MovieClip Frame 73
stop();
Symbol 617 MovieClip Frame 1
stop();
Symbol 617 MovieClip Frame 60
stop();
Symbol 618 MovieClip Frame 1
stop();
Symbol 618 MovieClip Frame 60
stop();
_parent.gotoAndStop("Fin");
Symbol 625 Button
on (release) {
MainController.SoundGame = false;
stopAllSounds();
MvMusique.gotoAndStop(1);
MainController.ReInitVariables();
gotoAndStop (7);
}