Unlimited doge faucet bot


SUBMITTED BY: PimpDaddy

DATE: Feb. 15, 2022, 4:44 p.m.

FORMAT: Text only

SIZE: 3.4 kB

HITS: 567

  1. // ==UserScript==
  2. // @name Free and unlimited Dogecoin script - 30k satoshis per minute (sinobu.online)
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Earn unlimited and free Dogecoin - 30k satoshis per minute - on sinobu.online using this script.
  6. // @author Maksyme
  7. // @license MIT
  8. // @match https://sinobu.online
  9. // @match https://sinobu.online/*
  10. // @grant none
  11. // ==/UserScript==
  12. /*
  13. ==================================================================================================================================================
  14. | Before installing this script, make sure you have installed the hCaptcha solver (https://greasyfork.org/en/scripts/425854-hcaptcha-solver |
  15. | - made by engageub. |
  16. | |
  17. | To be able to use the hCaptcha solver, your browser must be in English. |
  18. | If you use a Chrome based browser (Google Chrome, Opera, etc), you must enable experimental features in order to hCaptcha solver works. |
  19. | Open a new tab and type [YOUR_BROWSER]://flags/ (eg: chrome://flags/), search for WebGL Draft Extensions and Override software rendering list, |
  20. | and enable them. |
  21. | |
  22. | This script requires a FaucetPay account, you can register by following this link: https://faucetpay.io/?r=2044583 |
  23. | Finally go on this page: https://sinobu.online/?ref=1399 |
  24. ==================================================================================================================================================
  25. */
  26. (function() {
  27. 'use strict';
  28. var claimButtonClicked = false;
  29. setInterval(function() {
  30. // Click on the "Collect your reward" button.
  31. if (document.getElementsByClassName('btn btn-danger btn-lg')[0]) {
  32. document.getElementsByClassName('btn btn-danger btn-lg')[0].click();
  33. } else if ((document.getElementsByClassName('btn btn-danger')[0]) && (window.location.href.indexOf('index') != -1)) {
  34. document.getElementsByClassName('btn btn-danger')[0].click();
  35. }
  36. // If hCaptcha is solved, click on the "Claim" button.
  37. if (document.querySelector('.h-captcha')) {
  38. if ((document.querySelector('.h-captcha > iframe').getAttribute('data-hcaptcha-response').length > 0) && (claimButtonClicked == false)) {
  39. document.getElementsByClassName('btn btn-danger')[0].click(); // Click on the "Collect your reward" button.
  40. claimButtonClicked = true; // Set boolean to true - stop repetitive loop.
  41. }
  42. }
  43. }, 1000); // 1 seconds - increase the timer if your PC is not enough powerful.
  44. })();

comments powered by Disqus