home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / SpeedDrill.swf / scripts / DefineSprite_335 / frame_6 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  2.1 KB  |  74 lines

  1. var ten = Math.floor(_root.score / 10);
  2. switch(true)
  3. {
  4.    case ten == 444:
  5.       this.attachMovie("444-πéªπâ»πéíπéíπâ│","SYMBOL",15);
  6.       this.SYMBOL._x = -220;
  7.       this.SYMBOL._y = 5;
  8.       break;
  9.    case ten == 777:
  10.       this.attachMovie("777-πé¡πé┐πâ╝1","SYMBOL",15);
  11.       this.SYMBOL._x = -220;
  12.       this.SYMBOL._y = 5;
  13.       break;
  14.    case ten == 999:
  15.       this.attachMovie("999-πé¼πé»πââ","SYMBOL",15);
  16.       this.SYMBOL._x = -220;
  17.       this.SYMBOL._y = 5;
  18.       break;
  19.    case ten >= 1000 && ten < 1100:
  20.       this.attachMovie("1000-πâòπâ╝πâ│","SYMBOL",15);
  21.       this.SYMBOL._x = -220;
  22.       this.SYMBOL._y = 5;
  23.       break;
  24.    case ten == 1111:
  25.       this.attachMovie("1111-πé¿πââπâèπâïπâèπâï","SYMBOL",15);
  26.       this.SYMBOL._x = -220;
  27.       this.SYMBOL._y = 5;
  28.       break;
  29.    case ten == 1234:
  30.       this.attachMovie("1234-πâÅπââ","SYMBOL",15);
  31.       this.SYMBOL._x = -220;
  32.       this.SYMBOL._y = 5;
  33.       break;
  34.    case ten >= 1500 && ten < 1600:
  35.       this.attachMovie("1500-πéñπéñπââ","SYMBOL",15);
  36.       this.SYMBOL._x = -220;
  37.       this.SYMBOL._y = 5;
  38.       break;
  39.    case ten == 1971:
  40.       this.attachMovie("1971-πéñπé»πâèπéñ","SYMBOL",15);
  41.       this.SYMBOL._x = -220;
  42.       this.SYMBOL._y = 5;
  43.       break;
  44.    case ten >= 2000 && ten < 2100:
  45.       this.attachMovie("2000-πé░πââπé╕πâºπâû","SYMBOL",15);
  46.       this.SYMBOL._x = -220;
  47.       this.SYMBOL._y = 5;
  48.       break;
  49.    case ten == 2222:
  50.       this.attachMovie("2222-πé╣πâ│πé╣πâ│πé╣πâ╝πâ│","SYMBOL",15);
  51.       this.SYMBOL._x = -220;
  52.       this.SYMBOL._y = 5;
  53.       break;
  54.    case ten >= 2500 && ten < 2600:
  55.       this.attachMovie("2500-πü░πéôπüÿπéâπüä","SYMBOL",15);
  56.       this.SYMBOL._x = -220;
  57.       this.SYMBOL._y = 5;
  58.       break;
  59.    case ten >= 3000:
  60.       this.attachMovie("3000-πé¡πé┐πâ╝2","SYMBOL",15);
  61.       this.SYMBOL._x = -220;
  62.       this.SYMBOL._y = 5;
  63.       break;
  64.    default:
  65.       if(ten % 100 == 0 && ten != 0)
  66.       {
  67.          this.attachMovie("πé¡πâ¬πâÉπâ│","SYMBOL",15);
  68.          this.SYMBOL._x = -220;
  69.          this.SYMBOL._y = 5;
  70.          break;
  71.       }
  72. }
  73. this.stop();
  74.