Autockliker_Skript_999Dice_AutoPlay


SUBMITTED BY: BeNdeR

DATE: Feb. 8, 2018, 12:49 p.m.

FORMAT: Text only

SIZE: 395 Bytes

HITS: 2700

  1. var interval;
  2. function start_bets(_time) {
  3. var time = _time || 2700;
  4. var total_time = 0;
  5. var i = 0;
  6. var button = document.getElementById("AutoBetTargetLow");
  7. interval = setInterval(function() {
  8. button.click();
  9. i++;
  10. total_time += time;
  11. var minuts = total_time / (1000 * 60);
  12. console.log("Betting set: " + i + " | Time: " + minuts.toFixed(2) + "m");
  13. }, time);
  14. }
  15. start_bets();

comments powered by Disqus