home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / superman.swf / scripts / frame_78 / DoAction.as
Encoding:
Text File  |  2006-06-07  |  212 b   |  15 lines

  1. if(collected >= maxmeteors)
  2. {
  3.    gotoAndStop("LevelComplete");
  4.    play();
  5. }
  6. else if(health < 2 || 99 < missed)
  7. {
  8.    gotoAndStop("GameOver");
  9.    play();
  10. }
  11. else
  12. {
  13.    gotoAndPlay(_currentframe - 1);
  14. }
  15.