Advertisement
Guest User

mines autopicker

a guest
Apr 7th, 2020
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function bot (count) {
  2.     _mines.create();
  3.     setTimeout(
  4.     function() {
  5.         for(let i = 0; i <= count; i++) {
  6.             if(i == count) {
  7.                 setTimeout(() => {_mines.money()}, 200*count);
  8.             } else {
  9.                 setTimeout(() => {_mines.place(Math.floor(Math.random() * Math.floor(24)) + 1)}, 200);
  10.             }
  11.     }}, 500);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement