500 Sat Per day Faucet Bot


SUBMITTED BY: PimpDaddy

DATE: Feb. 19, 2022, 4:12 p.m.

FORMAT: Text only

SIZE: 3.4 kB

HITS: 3710

  1. // ==UserScript==
  2. // @name Free and unlimited Bitcoin script (bigbtc.win)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Earn unlimited and free Bitcoin on bigbtc.win using this script.
  6. // @author Maksyme
  7. // @license MIT
  8. // @match https://bigbtc.win/*
  9. // @grant none
  10. // ==/UserScript==
  11. /*
  12. ==================================================================================================================================================
  13. | Before installing this script, make sure you have installed the hCaptcha solver (https://greasyfork.org/en/scripts/425854-hcaptcha-solver |
  14. | - made by engageub. |
  15. | |
  16. | To be able to use the hCaptcha solver, your browser must be in English. |
  17. | If you use a Chrome based browser (Google Chrome, Opera, etc), you must enable experimental features in order to hCaptcha solver works. |
  18. | Open a new tab and type [YOUR_BROWSER]://flags/ (eg: chrome://flags/), search for WebGL Draft Extensions and Override software rendering list, |
  19. | and enable them. |
  20. | |
  21. | This script requires a FaucetPay account, you can register by following this link: https://faucetpay.io/?r=2044583 |
  22. | Then edit this script and set your FaucetPay Bitcoin address, be sure that Settings > Updates > Check for updates is checked. |
  23. | Finally go on this page: https://bigbtc.win/?id=39272863
  24. |
  25. ==================================================================================================================================================
  26. */
  27. (function() {
  28. 'use strict';
  29. var bitcoin = "bc1qrl9wv3uturkzdg7gzen0kpwqfq3ezr343enkz2";
  30. var isClaimButtonClicked = false;
  31. var isLoginButtonClicked = false;
  32. setInterval(function() {
  33. if ((document.querySelector("#login > input[type=text]:nth-child(2)")) && (isClaimButtonClicked == false)) {
  34. document.querySelector("#login > input[type=text]:nth-child(2)").value = bitcoin;
  35. document.querySelector("#login > input.button").click();
  36. isClaimButtonClicked = true;
  37. } else if (document.querySelector("#countdown")) {
  38. setTimeout(function() {
  39. window.location.reload();
  40. }, parseInt(document.querySelector("#countdown").textContent) * 1000);
  41. } else if ((document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) && (isClaimButtonClicked == false)) {
  42. document.querySelector("#claimbutn").click();
  43. isClaimButtonClicked = true;
  44. }
  45. }, 1000);
  46. })();

comments powered by Disqus