// ==UserScript==
// @name Unlimited cryptocurrencies (BNB Rain)
// @name:fr Cryptomonnaies illimitées (BNB Rain)
// @namespace http://tampermonkey.net/
// @version 1.3.1
// @description Earn unlimited free cryptocurrencies on BNB Rain faucets using this script.
// @description:fr Gagner gratuitement et sans limite de la cryptomonnaie sur les faucets de BNB Rain en utilisant ce script.
// @author Maksyme
// @match https://bnbrain.club/*
// @icon https://www.google.com/s2/favicons?domain=bnbrain.club
// @grant none
// ==/UserScript==
(function() {
'use strict';
/*
|=============================================================================================================|
| If you have any question, ask me below! :) |
| Note: Before using this script, you need to install the hCaptcha Solver in order to solve it automatically. |
| If you have not installed already, please install the script before proceeding further. Link below: |
| https://greasyfork.org/en/scripts/425854-hcaptcha-solver |
| Credits: ngageub (https://greasyfork.org/en/users/767752-engageub). |
| |
| Enter Your FaucetPay Faucet Address below as mentioned in the example and save the entered text in a file. |
| Example: var binance = "0x0094e65Efb35ecdb0f76470893930a4847Ff8178"; |
|=============================================================================================================|
*/
var binance = "0x2b9610c74101bfb633eb637ded21bea6890da673";
var URL = "https://bnbrain.club/?r=0x2b9610c74101bfb633eb637ded21bea6890da673";
// Reload function.
function reload() {
setTimeout(function() {
window.location.href = URL;
}, 1000); // = 10 minutes (1000 milliseconds * 60 * 10), can be increased if your PC is slow.
}
// If you must wait 60 minutes.
var mustWait = false;
if ((document.querySelector("body > div.container.mb-5 > p.alert.alert-danger"))
&& (document.querySelector("body > div.container.mb-5 > p.alert.alert-danger").innerText.includes("You must to wait")) && (mustWait == false)) {
mustWait = true;
reload();
}
setInterval(function() {
if (mustWait == false) {
// Set address in input.
var addressInput = false;
if ((document.querySelector("#claim-address")) && (addressInput == false)) {
document.querySelector("#claim-address").setAttribute("value", binance);
addressInput = true;
}
// Click on claim button when hCaptcha is solved.
var hCaptchaSolved = true;
if (document.querySelector(".h-captcha")) {
if ((document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) && (hCaptchaSolved == true)) {
document.querySelector("#claim-button").click();
hCaptchaSolved = false;
}
}
if (!URL.includes("?r=")) {
window.alert("Support me! Do not remove refferal links! :)");
}
}
}, 5000);
})();