home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / tangerine-panic.swf / scripts / frame_37 / DoAction.as
Encoding:
Text File  |  2008-09-04  |  1.4 KB  |  68 lines

  1. manspeech._x = _xmouse - 150;
  2. curTime = getTimer() - beginTime;
  3. if(5000 < curTime && curTime < 7000)
  4. {
  5.    manspeech.text = "OMG! TANGERINES!!";
  6. }
  7. else if(15000 < curTime && curTime < 18000)
  8. {
  9.    manspeech.text = "WTF??";
  10. }
  11. else if(25000 < curTime && curTime < 28000)
  12. {
  13.    manspeech.text = "I HATE TANGERINES!";
  14. }
  15. else if(35000 < curTime && curTime < 38000)
  16. {
  17.    manspeech.text = "WHY ARE THEY SO BIG??";
  18. }
  19. else if(45000 < curTime && curTime < 47000)
  20. {
  21.    manspeech.text = "WHERE ARE THEY ALL COMING FROM!?";
  22. }
  23. else if(50000 < curTime && curTime < 52000)
  24. {
  25.    manspeech.text = "HELP!!";
  26. }
  27. else if(55000 < curTime && curTime < 57000)
  28. {
  29.    manspeech.text = "ARRGHHH!!!";
  30. }
  31. else if(65000 < curTime && curTime < 68000)
  32. {
  33.    manspeech.text = "THIS IS HORRIBLE!!";
  34. }
  35. else if(75000 < curTime && curTime < 82000)
  36. {
  37.    manspeech.text = ":-(";
  38. }
  39. else if(85000 < curTime && curTime < 88000)
  40. {
  41.    manspeech.text = "#*!@#!";
  42. }
  43. else if(95000 < curTime && curTime < 98000)
  44. {
  45.    manspeech.text = "GODAMN TANGERINES!";
  46. }
  47. else if(105000 < curTime && curTime < 108000)
  48. {
  49.    manspeech.text = "ARRGGGHH!!!";
  50. }
  51. else
  52. {
  53.    manspeech.text = "";
  54. }
  55. rock._x = -100;
  56. rock._y = -100;
  57. if(getTimer() - start > 2000)
  58. {
  59.    x++;
  60.    duplicateMovieClip(rock,"rock" + x,16384 + x);
  61.    start = getTimer();
  62. }
  63. if(man.dead)
  64. {
  65.    _root.kongregateScores.submit(score);
  66.    gotoAndPlay(39);
  67. }
  68.