home *** CD-ROM | disk | FTP | other *** search
- var pNbVirtuel = 0;
- var pNbReel = 0;
- var i = 0;
- while(i < gNbJoueurs_M[gManche - 1])
- {
- trace("gListeJoueurMixed[i].Type = " + gListeJoueurMixed[i].Type);
- if(gListeJoueurMixed[i].Type == "VIRTUEL")
- {
- pNbVirtuel += 1;
- }
- else
- {
- pNbReel += 1;
- }
- i++;
- }
- if(pNbReel == 1)
- {
- var nom_du_son = "M3_C2_00";
- }
- else
- {
- var nom_du_son = "M3_C1_00";
- }
- gNextLabel = "JEU_M3_C2";
- joueSon({nomSon:nom_du_son});
- CAPITAINE.gotoAndPlay("E2");
- initManche();
- stop();
-