Advertisement
coinwalk

tampermonkey script freebitco.in free auto roll for no captcha

Jan 19th, 2023
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. // ==UserScript==
  2. // @name autoroll by snowy
  3. // @namespace http://tampermonkey.net/
  4. // @version 3.14
  5. // @description snowy autoroll!
  6. // @author snowy
  7. // @match https://freebitco.in/*
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  9. // ==/UserScript==
  10.  
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var count_min = 1;
  16. $(document).ready(function(){
  17. console.log("Status: Page loaded.");
  18.  
  19. setTimeout(function(){
  20. $('#free_play_form_button').click();
  21. console.log("Status: Button ROLL clicked.");
  22. }, random(2000,4000));
  23.  
  24. setInterval(function(){
  25. console.log("Status: Elapsed time " + count_min + " minutes");
  26. count_min = count_min + 1;
  27. }, 60000);
  28.  
  29. setTimeout(function(){
  30. $('.close-reveal-modal')[0].click();
  31. console.log("Status: Button CLOSE POPUP clicked.");
  32. }, random(12000,18000));
  33.  
  34. setInterval(function(){
  35. $('#free_play_form_button').click();
  36. console.log("Status: Button ROLL clicked again.");
  37. }, random(3605000,3615000));
  38. });
  39.  
  40. function random(min,max){
  41. return min + (max - min) * Math.random();
  42. }
  43.  
  44. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement