home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 157 / MOBICLIC157.ISO / mac / DATA / QZZ157 / QZZ157_00 / QZZ157_00.swf / scripts / frame_345 / DoAction.as
Text File  |  2013-09-17  |  514b  |  30 lines

  1. var pNbVirtuel = 0;
  2. var pNbReel = 0;
  3. var i = 0;
  4. while(i < gNbJoueurs_M[gManche - 1])
  5. {
  6.    trace("gListeJoueurMixed[i].Type = " + gListeJoueurMixed[i].Type);
  7.    if(gListeJoueurMixed[i].Type == "VIRTUEL")
  8.    {
  9.       pNbVirtuel += 1;
  10.    }
  11.    else
  12.    {
  13.       pNbReel += 1;
  14.    }
  15.    i++;
  16. }
  17. if(pNbReel == 1)
  18. {
  19.    var nom_du_son = "M3_C2_00";
  20. }
  21. else
  22. {
  23.    var nom_du_son = "M3_C1_00";
  24. }
  25. gNextLabel = "JEU_M3_C2";
  26. joueSon({nomSon:nom_du_son});
  27. CAPITAINE.gotoAndPlay("E2");
  28. initManche();
  29. stop();
  30.