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

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