home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / asitchintime2.swf / scripts / DefineSprite_91 / frame_2 / DoAction.as
Encoding:
Text File  |  2005-11-09  |  385 b   |  25 lines

  1. if(invCur > 0)
  2. {
  3.    invCur--;
  4.    if(invCur <= 0)
  5.    {
  6.       _parent._visible = true;
  7.    }
  8. }
  9. else if(numCur > 0)
  10. {
  11.    numCur--;
  12.    if(numCur == Math.floor(invLast / 2))
  13.    {
  14.       invLast = numCur;
  15.       _parent._visible = false;
  16.       invCur = invTot;
  17.    }
  18. }
  19. else
  20. {
  21.    c.setDamage(_parent._name,1);
  22.    _parent.swapDepths(10000);
  23.    _parent.removeMovieClip();
  24. }
  25.