home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Esportes / soccofobia.swf / scripts / frame_9 / DoAction.as
Text File  |  2008-09-25  |  2KB  |  82 lines

  1. stop();
  2. cur_frame = "End";
  3. counter_txt.text = score;
  4. succes_mc._visible = chal_succes;
  5. if(chal > 0 & kong == true & chal_succes == true)
  6. {
  7.    _root.kongregateStats.submit("Chal_Succeeded",1);
  8.    _root.kongregateStats.submit("Chal" + chal + "_Succeeded",1);
  9. }
  10. if(chal == 0)
  11. {
  12.    ss = niv;
  13. }
  14. else
  15. {
  16.    ss = chal + 3;
  17. }
  18. soc_so.data.move_type = move_type;
  19. if(score > soc_so.data["hi_Score" + ss])
  20. {
  21.    soc_so.data["hi_Score" + ss] = score;
  22.    if(sound_on == true)
  23.    {
  24.       soc_so.data.sound_on = 1;
  25.    }
  26.    else
  27.    {
  28.       soc_so.data.sound_on = 0;
  29.    }
  30.    soc_so.flush();
  31. }
  32. end_Game();
  33. hi_txt.text = soc_so.data["hi_Score" + ss];
  34. hi_btn._visible = false;
  35. if(_root.kong == true)
  36. {
  37.    _root.kongregateScores.submit(score);
  38. }
  39. counter_txt.filters = new Array(edge_glow,dropShadow2);
  40. hi_txt.filters = new Array(edge_glow,dropShadow2);
  41. var game_mode = "";
  42. switch(chal)
  43. {
  44.    case 0:
  45.       if(niv == 1)
  46.       {
  47.          game_mode = "Easy";
  48.       }
  49.       if(niv == 2)
  50.       {
  51.          game_mode = "Normal";
  52.       }
  53.       if(niv == 3)
  54.       {
  55.          game_mode = "Hard";
  56.       }
  57.       if(niv == 4)
  58.       {
  59.          game_mode = "Nuts";
  60.       }
  61.       break;
  62.    case 1:
  63.       game_mode = "Dodgeball";
  64.       break;
  65.    case 2:
  66.       game_mode = "Hardcore Fan";
  67.       break;
  68.    case 3:
  69.       game_mode = "The Hunter";
  70.       break;
  71.    case 4:
  72.       game_mode = "Speed Freak";
  73.       break;
  74.    case 5:
  75.       game_mode = "Soccer Junkie";
  76.       break;
  77.    case 6:
  78.       game_mode = "Top Scorer";
  79. }
  80. ScoreAPI.send(_root.com_mindjolt_api,"submitScore",score,game_mode);
  81. _root.HPScoreService.postScore(score,game_mode);
  82.