BNB RAin Bot


SUBMITTED BY: PimpDaddy

DATE: Oct. 10, 2021, 1:05 p.m.

FORMAT: Text only

SIZE: 3.6 kB

HITS: 884

  1. // ==UserScript==
  2. // @name Unlimited cryptocurrencies (BNB Rain)
  3. // @name:fr Cryptomonnaies illimitées (BNB Rain)
  4. // @namespace http://tampermonkey.net/
  5. // @version 1.3.1
  6. // @description Earn unlimited free cryptocurrencies on BNB Rain faucets using this script.
  7. // @description:fr Gagner gratuitement et sans limite de la cryptomonnaie sur les faucets de BNB Rain en utilisant ce script.
  8. // @author Maksyme
  9. // @match https://bnbrain.club/*
  10. // @icon https://www.google.com/s2/favicons?domain=bnbrain.club
  11. // @grant none
  12. // ==/UserScript==
  13. (function() {
  14. 'use strict';
  15. /*
  16. |=============================================================================================================|
  17. | If you have any question, ask me below! :) |
  18. | Note: Before using this script, you need to install the hCaptcha Solver in order to solve it automatically. |
  19. | If you have not installed already, please install the script before proceeding further. Link below: |
  20. | https://greasyfork.org/en/scripts/425854-hcaptcha-solver |
  21. | Credits: ngageub (https://greasyfork.org/en/users/767752-engageub). |
  22. | |
  23. | Enter Your FaucetPay Faucet Address below as mentioned in the example and save the entered text in a file. |
  24. | Example: var binance = "0x0094e65Efb35ecdb0f76470893930a4847Ff8178"; |
  25. |=============================================================================================================|
  26. */
  27. var binance = "0x2b9610c74101bfb633eb637ded21bea6890da673";
  28. var URL = "https://bnbrain.club/?r=0x2b9610c74101bfb633eb637ded21bea6890da673";
  29. // Reload function.
  30. function reload() {
  31. setTimeout(function() {
  32. window.location.href = URL;
  33. }, 1000); // = 10 minutes (1000 milliseconds * 60 * 10), can be increased if your PC is slow.
  34. }
  35. // If you must wait 60 minutes.
  36. var mustWait = false;
  37. if ((document.querySelector("body > div.container.mb-5 > p.alert.alert-danger"))
  38. && (document.querySelector("body > div.container.mb-5 > p.alert.alert-danger").innerText.includes("You must to wait")) && (mustWait == false)) {
  39. mustWait = true;
  40. reload();
  41. }
  42. setInterval(function() {
  43. if (mustWait == false) {
  44. // Set address in input.
  45. var addressInput = false;
  46. if ((document.querySelector("#claim-address")) && (addressInput == false)) {
  47. document.querySelector("#claim-address").setAttribute("value", binance);
  48. addressInput = true;
  49. }
  50. // Click on claim button when hCaptcha is solved.
  51. var hCaptchaSolved = true;
  52. if (document.querySelector(".h-captcha")) {
  53. if ((document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0) && (hCaptchaSolved == true)) {
  54. document.querySelector("#claim-button").click();
  55. hCaptchaSolved = false;
  56. }
  57. }
  58. if (!URL.includes("?r=")) {
  59. window.alert("Support me! Do not remove refferal links! :)");
  60. }
  61. }
  62. }, 5000);
  63. })();

comments powered by Disqus