30 sats every 10 mins Faucet bot for tamper monkey


SUBMITTED BY: PimpDaddy

DATE: Oct. 17, 2021, 1:55 a.m.

UPDATED: Oct. 17, 2021, 2:07 a.m.

FORMAT: Text only

SIZE: 1.0 kB

HITS: 558

  1. // ==UserScript==
  2. // @name Free Faucet Unlimited Bitcoin (BTC)
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description Unlimited BTC to FaucetPay
  6. // @author Jean
  7. // @match https://nitrofaucet.nity.fr/client/faucet.php
  8. // @icon https://www.google.com/s2/favicons?domain=nity.fr
  9. // @grant none
  10. // ==/UserScript==
  11. /*
  12. Use this Hcaptcha solver: https://greasyfork.org/es/scripts/425854-hcaptcha-solver-automatically-solves-hcaptcha-in-browser
  13. */
  14. (function() {
  15. 'use strict';
  16. // Your code here...
  17. setInterval(function() {
  18. if (document.querySelector(".h-captcha")) {
  19. if (document.querySelector(".h-captcha > iframe").getAttribute("data-hcaptcha-response").length > 0){
  20. document.querySelector("#claimButton").click();
  21. setTimeout(function() {
  22. window.location.reload();
  23. }, 1000);
  24. }
  25. }
  26. }, 5000);
  27. })();

comments powered by Disqus