home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Diversos / clowns.swf / scripts / DefineSprite_352 / frame_3 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  348 b   |  22 lines

  1. if(_root.console.time > 0)
  2. {
  3.    if(_root.console.time > 1)
  4.    {
  5.       totalBonus += 2;
  6.       timeBonus += 2;
  7.       _root.console.time -= 2;
  8.       _parent.addToScore(2);
  9.    }
  10.    else
  11.    {
  12.       totalBonus += 1;
  13.       timeBonus += 1;
  14.       _root.console.time -= 1;
  15.       _parent.addToScore(1);
  16.    }
  17. }
  18. else
  19. {
  20.    gotoAndPlay(5);
  21. }
  22.