BCH Faucet Bot 0.05256 BCH per year


SUBMITTED BY: PimpDaddy

DATE: July 2, 2021, 3:50 p.m.

FORMAT: Text only

SIZE: 1.9 kB

HITS: 716

  1. Instructions:
  2. 1.) Install the hCaptcha Solver to solve hCaptcha: https://greasyfork.org/en/scripts/425854-hcaptcha-solver (by engageub).
  3. 2.) Your browser must be in English (UK or USA recommended).
  4. 3.) Install this script and edit the code to update your FaucetPay faucets in the configuration section.
  5. 4.) Activate script update (Parameters -> Update -> check "Check update").
  6. 5.) Go on https://faucetbitcoin.cash?r=27682 and register.
  7. 6.) Select faucet.
  8. 7.) Leave your tab open (do not change tab; open new browser).
  9. 8.) Enjoy! :)
  10. // ==UserScript==
  11. // @name Unlimited Bitcoin Cash (FaucetBitcoin.Cash)
  12. // @name:fr Bitcoin Cash illimités (FaucetBitcoin.Cash)
  13. // @namespace http://tampermonkey.net/
  14. // @version 1.0
  15. // @description Earn unlimited and free Bitcoin Cash on FaucetBitcoin.Cash using this script.
  16. // @description:fr Gagner gratuitement et sans limite du Bitcoin Cash sur FaucetBitcoin.Cash en utilisant ce script.
  17. // @author Maksyme
  18. // @match https://faucetbitcoin.cash/client/faucet.php
  19. // @icon https://www.google.com/s2/favicons?domain=faucetbitcoin.cash
  20. // @grant none
  21. // ==/UserScript==
  22. (function() {
  23. 'use strict';
  24. var buttonClicked = false;
  25. setInterval(function() {
  26. // If hCaptcha solved, click on button.
  27. if (document.querySelector(".h-captcha")) {
  28. if (document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) {
  29. document.querySelector("#claimButton").click();
  30. buttonClicked = true;
  31. }
  32. }
  33. // Reload when button clicked.
  34. if (buttonClicked == true) {
  35. window.location.reload();
  36. buttonClicked = false;
  37. }
  38. }, 10000); // = 10 seconds.
  39. })();

comments powered by Disqus