home *** CD-ROM | disk | FTP | other *** search
/ Geek Games #12 / GEGA012.iso / eroticos / enbolas.swf / scripts / frame_41 / DoAction.as
Text File  |  2006-01-17  |  721b  |  40 lines

  1. if(_level0.pausa == false and _level0.limpio == true)
  2. {
  3.    fondo.gotoAndStop(1);
  4.    gotoAndPlay(85);
  5. }
  6. else
  7. {
  8.    if(_level0.vidas < 1)
  9.    {
  10.       _level0.texto = "∩┐╜Has cometido demasiados errores!";
  11.    }
  12.    else
  13.    {
  14.       _level0.texto = "∩┐╜Se te acab∩┐╜ el tiempo!";
  15.    }
  16.    if(b < 40)
  17.    {
  18.       b += 3;
  19.       g = _level0.globos;
  20.       while(_level0.cuenta - 1 < g)
  21.       {
  22.          temp = eval("globo" + g);
  23.          temp._y += b;
  24.          g--;
  25.       }
  26.    }
  27.    else
  28.    {
  29.       g = _level0.globos;
  30.       while(_level0.cuenta - 1 < g)
  31.       {
  32.          temp = eval("globo" + g);
  33.          temp.removeMovieClip();
  34.          g--;
  35.       }
  36.       _level0.limpio = true;
  37.    }
  38. }
  39. play();
  40.