30 sats every 10 mins Faucet bot for tamper monkey


SUBMITTED BY: PimpDaddy

DATE: Oct. 17, 2021, 2:04 a.m.

FORMAT: Text only

SIZE: 1.0 kB

HITS: 180

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

comments powered by Disqus