legendofcibola

Freebitco.in auto Freeroll change Captcha with Rewardpoints

Oct 7th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Freebitco.in auto Freeroll change Captcha with Rewardpoints without solve Captcha
  3. // @namespace
  4. // @version 0.2
  5. // @description Please use my Referal-Link https://freebitco.in/?r=15379995
  6. // @author unknown
  7. // @match https://freebitco.in/*
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. $('#play_without_captchas_button').click() // Solve/change Captcha with Rewardpoints, disable the line with // if you dont want more
  14. var count_min = 1;
  15. $(document).ready(function(){
  16. console.log("Status: Page loaded.");
  17.  
  18. setTimeout(function(){
  19. $('#free_play_form_button').click();
  20. console.log("Status: Button ROLL clicked.");
  21. }, random(2000,4000));
  22.  
  23. setInterval(function(){
  24. console.log("Status: Elapsed time " + count_min + " minutes");
  25. count_min = count_min + 1;
  26. }, 60000);
  27.  
  28. setTimeout(function(){
  29. $('.close-reveal-modal')[0].click();
  30. console.log("Status: Button CLOSE POPUP clicked.");
  31. }, random(12000,18000));
  32.  
  33. setInterval(function(){
  34. $('#free_play_form_button').click();
  35. console.log("Status: Button ROLL clicked again.");
  36. }, random(3605000,3615000));
  37. });
  38.  
  39. function random(min,max){
  40. return min + (max - min) * Math.random();
  41. }
  42.  
  43. })();
Add Comment
Please, Sign In to add comment