home *** CD-ROM | disk | FTP | other *** search
- drop = false;
- a = 0;
- while(a < _parent.tabPot.length)
- {
- if(c.myRand(1,100) < 80)
- {
- _parent["pot_" + _parent.tabPot[a]].gotoAndPlay("play");
- _parent.tabPot.splice(a,1);
- drop = true;
- a--;
- }
- a++;
- }
- if(!drop)
- {
- _parent["pot_" + _parent.tabPot[0]].gotoAndPlay("play");
- _parent.tabPot.splice(0,1);
- }
-