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