Frame 1
recordsec = 0;
sacrecordsec = 0;
Frame 2
limiteg = 10;
limited = 740;
frameactuelle = 0;
nouvrec = "non";
onEnterFrame = function () {
if ((_xmouse < limited) && (_xmouse > limiteg)) {
boulanger_mc._x = _xmouse;
}
};
Frame 119
stop();
frameactuelle = 119;
onMouseMove = function () {
if ((_xmouse < limited) && (_xmouse > limiteg)) {
boulanger_mc._x = _xmouse;
}
};
montemps = 0;
onEnterFrame = function () {
if (compteur_mc.temps) {
montemps = compteur_mc.temps;
}
if (recordsec < compteur_mc.compteur2) {
recordsec = compteur_mc.compteur2;
}
};
Frame 121
rejouer_btn.onRelease = function () {
gotoAndPlay (2);
};
resultat_txt.text = "Votre temps est de " + montemps;
if (recordsec > savrecordsec) {
nouvrec = "oui";
}
if (recordsec == 1) {
temps = "une seconde";
}
if (recordsec > 1) {
temps = recordsec + " secondes";
}
if (recordsec >= 60) {
compteur3 = Math.floor(recordsec / 60);
compteur4 = recordsec - (compteur3 * 60);
compteur = (compteur3 + " : ") + compteur4;
if (compteur3 == 1) {
temps = ("une minute et " + compteur4) + " secondes";
}
if (compteur3 > 1) {
temps = ((compteur3 + " minutes et ") + compteur4) + " secondes";
}
}
savrecordsec = recordsec;
if (nouvrec == "oui") {
record_txt.text = "Votre NOUVEAU record : " + temps;
} else {
record_txt.text = "Votre record : " + temps;
}
Symbol 6 MovieClip Frame 1
_root.onEnterFrame = function () {
Total = _root.getBytesTotal();
Lu = _root.getBytesLoaded();
rapport = Math.round((Lu / Total) * 100);
_root.pourcentage.text = Math.round(rapport) + " %";
_root.barre._xscale = rapport;
_root.pain.cache._x = (rapport * 5) - 900;
if (rapport == 100) {
delete this.onEnterFrame;
_root.gotoAndPlay(2);
}
};
stop();
Symbol 27 MovieClip Frame 1
onMouseMove = function () {
if (_root._currentframe == _root.frameactuelle) {
if ((_root._xmouse < _root.limited) && (_root._xmouse > _root.limiteg)) {
dif = temoin_mc._x - _xmouse;
baguette_mc._rotation = baguette_mc._rotation + (dif / 7);
}
}
};
onEnterFrame = function () {
temoin_mc._x = _xmouse;
if ((baguette_mc._rotation == 0) && (_root._currentframe == _root.frameactuelle)) {
nb = Math.random() * 2;
if (nb <= 1) {
baguette_mc._rotation = baguette_mc._rotation - 0.01;
}
if (nb > 1) {
baguette_mc._rotation = baguette_mc._rotation + 0.01;
}
}
if (baguette_mc._rotation > 0) {
baguette_mc._rotation = baguette_mc._rotation + ((baguette_mc._rotation / 30) + 0.3);
_parent.gotoAndStop(Math.floor(baguette_mc._rotation));
}
if (baguette_mc._rotation < 0) {
baguette_mc._rotation = baguette_mc._rotation - (((-baguette_mc._rotation) / 30) + 0.3);
_parent.gotoAndStop(Math.floor(-baguette_mc._rotation));
}
if ((baguette_mc._rotation < -95) || (baguette_mc._rotation > 95)) {
_root.gotoAndStop("perdu");
}
};
Symbol 28 MovieClip Frame 1
stop();
Symbol 40 MovieClip Frame 1
fps = 30;
compteur1 = 0;
compteur2 = 0;
compteur3 = 0;
onEnterFrame = function () {
compteur1++;
if ((compteur1 % fps) == 0) {
compteur2++;
}
compteur = compteur2;
if (compteur2 == 1) {
temps = "une seconde";
}
if (compteur2 > 1) {
temps = compteur2 + " secondes";
}
if (compteur2 >= 60) {
compteur3 = Math.floor(compteur2 / 60);
compteur4 = compteur2 - (compteur3 * 60);
compteur = (compteur3 + " : ") + compteur4;
if (compteur3 == 1) {
temps = ("une minute et " + compteur4) + " secondes";
}
if (compteur3 > 1) {
temps = ((compteur3 + " minutes et ") + compteur4) + " secondes";
}
}
compteur_txt.text = compteur;
};
Symbol 43 MovieClip Frame 1
posxal = Math.random() * 700;
rotal = Math.floor(Math.random() * 4) - 2;
croissan1._x = posxal;
croissan1._y = -50;
evolution = 1;
evoldev = 0;
onEnterFrame = function () {
if (evolution < 4) {
evolution = evolution + 0.003;
} else if (evoldev < 4) {
evoldev = evoldev + 0.01;
croissan1._x = croissan1._x + ((rotal / 10) * evoldev);
} else {
evolution = evolution + 0.0005;
croissan1._x = croissan1._x + ((rotal / 10) * evoldev);
}
croissan1._y = croissan1._y + evolution;
croissan1._rotation = croissan1._rotation + rotal;
if (hitTest(_root.boulanger_mc.boulanger_mc.leboulanger_mc.rec1)) {
_root.gotoAndStop("perdu");
}
if (hitTest(_root.boulanger_mc.boulanger_mc.leboulanger_mc.rec2)) {
_root.gotoAndStop("perdu");
}
if (croissan1._y > 550) {
croissan1._rotation = 0;
posxal = Math.random() * 700;
rotal = Math.floor(Math.random() * 10) - 5;
croissan1._x = posxal;
croissan1._y = -50;
}
};