home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Nave / Beteroid.swf / scripts / frame_7 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  290 b   |  18 lines

  1. _quality = "HIGH";
  2. f_puntos = f_puntos * f_level + f_aciertos - f_fallos;
  3. if(f_puntos < 0)
  4. {
  5.    f_puntos = 0;
  6. }
  7. p01 = int(f_aciertos * 100 / f_disparos);
  8. p02 = 100 - p01;
  9. with(pbarra1)
  10. {
  11.    gotoAndStop(_parent.p01);
  12. }
  13. with(pbarra2)
  14. {
  15.    gotoAndStop(_parent.p02);
  16. }
  17. stop();
  18.