Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(1 edit)

there is a bug, the bot for some reason never leaves the first 4 times loop, it just makes butter for days lol


program:

forever{

   while(storage.butter == not.Full){

      for(var i = 1; i <= 4; i++){   

         for(var a = 1; a <= 2; a++){

            cycle.Down();

            move.MilkStorage;

            add.MilkStorage;

         }        

         for(var b = 1; b <= 2; b++){

            move.ButterChurn;

            add.ButterChurn;

            cycle.Down();

         }

      stow();

      }

      for(var c = 1; c <= 4; c++){

         find.Near(butter);

         move.butter;

         pickup.butter;

      }

      while(held !== null){

         move.GeneralStorage;

         add.GeneralStorage

      }

   }

}


also i can confirm it runs fabulous on kubuntu 16.04 with onboard graphics

Unfortunately "Repeat X Times" inside a "Repeat X Times" isn't supported as yet. Thanks

ah i see

Aw shucks, was just going to post this same bug.