home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Aventura / Kung_Fu.swf / scripts / DefineSprite_1899 / frame_41 / DoAction.as
Encoding:
Text File  |  2007-09-27  |  167 b   |  12 lines

  1. if(TimeLeft >= 30)
  2. {
  3.    _root.panel.score += speed;
  4.    TimeLeft -= speed;
  5. }
  6. else
  7. {
  8.    _root.panel.score += TimeLeft;
  9.    TimeLeft = 0;
  10.    gotoAndPlay(43);
  11. }
  12.