Advertisement
Alcapwnb

ZooIncBot

Apr 2nd, 2015
840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var purchaserTimer=setInterval(function () {purchaserTimerExe()}, 1000);
  2. function purchaserTimerExe(){
  3.   for (var i=0; i<IZ.Zoo.animals.length; i++) {
  4.    if(IZ.Zoo.animals[i].own >= IZ.Zoo.animals[i].maxPop * .90){
  5.      id = IZ.Zoo.animals[i].id;
  6.      divID = "sell10" + id;
  7.      document.getElementById(divID).click();
  8.   }
  9.  }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement