umsfaucet Bot

auto claim faucet

  1. // ==UserScript==
  2. // @name umsfaucet Bot
  3. // @namespace cryptol.online
  4. // @version 20240619
  5. // @description auto claim faucet
  6. // @author Danik Odze
  7. // @match https://umsfaucet.online/*
  8. // @icon https://flashfaucet.xyz/BSassets/images/favicon.png
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. var BOT = setInterval(function(){
  14. if(document.querySelector("#InputEmail")){
  15. document.querySelector("#InputEmail").value = "ВашаПочта";
  16. document.querySelector("form.user").submit();
  17. clearInterval(BOT);
  18. }
  19. if(document.body.outerHTML.includes("<h3>All Payout History</h3>")){
  20. window.location.href = "/faucet/currency/dgb";
  21. clearInterval(BOT);
  22. }
  23. if(document.querySelector("#verify")){
  24. window.stop();
  25. document.querySelector("#verify").submit();
  26. clearInterval(BOT);
  27. }
  28. },500);
  29.  
  30.  
  31.  
  32. var redirect = setInterval(function() {
  33. var please = document.body.outerText.includes("Dont wait");
  34. var limite = document.body.outerText.includes("You have been rate-limited");
  35. var semfundos = document.body.outerHTML.includes("The faucet does not have");
  36.  
  37. var faucet = document.location.pathname;
  38. if(faucet.includes("/firewall") === true){
  39. if(document.querySelector("#recaptchav2 > div")){
  40. console.log("recaptcha");
  41. var recaptcha = document.querySelector("#g-recaptcha-response").value;
  42. if((recaptcha) && recaptcha > ""){
  43. document.querySelector("div > form").submit();
  44. clearInterval(redirect);
  45. }
  46. }
  47. if(document.querySelector(".cf-turnstile")){
  48. console.log("cloudflare");
  49. var cloudflare = document.querySelector(".cf-turnstile > input").value;
  50. if((cloudflare) && cloudflare > ""){
  51. document.querySelector("div > form").submit();
  52. clearInterval(redirect);
  53. }
  54. }
  55. setTimeout(function(){document.querySelector("div > form").submit();}, 10000);
  56.  
  57. }
  58. if(please === true || limite === true || semfundos === true){
  59. window.stop();
  60. if(faucet.includes("/dgb")){
  61. window.location.href = "https://umsfaucet.online/faucet/currency/dgb";
  62. clearInterval(redirect);
  63. }
  64. if(faucet.includes("/dgb")){
  65. clearInterval(redirect);
  66. alert("Todas as moedas foram coletadas!");
  67. }
  68.  
  69.  
  70.  
  71. }
  72. },500);
  73.  
  74. setTimeout(function(){window.location.reload();}, 40000);
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.