home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / asitchintime2.swf / scripts / DefineSprite_554 / frame_21 / DoAction.as
Encoding:
Text File  |  2005-11-09  |  354 b   |  19 lines

  1. drop = false;
  2. a = 0;
  3. while(a < _parent.tabPot.length)
  4. {
  5.    if(c.myRand(1,100) < 80)
  6.    {
  7.       _parent["pot_" + _parent.tabPot[a]].gotoAndPlay("play");
  8.       _parent.tabPot.splice(a,1);
  9.       drop = true;
  10.       a--;
  11.    }
  12.    a++;
  13. }
  14. if(!drop)
  15. {
  16.    _parent["pot_" + _parent.tabPot[0]].gotoAndPlay("play");
  17.    _parent.tabPot.splice(0,1);
  18. }
  19.