Advertisement
lotocamion

Pay Doge Faucet

Sep 20th, 2022
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Pay Doge Faucet
  3. // @namespace Claim Free Doge
  4. // @version 1.0
  5. // @description Claim Free Doge
  6. // @author lotocamion
  7. // @match https://faucetpaydoge.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=faucetpaydoge.com
  9. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. // Install the script //
  16. // Install Noptcha Solver and select Voice Recaptcha Method its free no limit //
  17. // Then goto https://faucetpaydoge.com/?r=DGNRvwyYSMYKjxFDm8BHTcD23kWesLg5i1 and leave the tab open //
  18. // NOTE: SWITCH OFF AND ON YOUR ROUTER TO CHANGE YOUR IP EVERY 2 HOUR TO AVOID "sending automated queries" //
  19. // CHECK YOUR SCORE reCAPTCHA ON https://antcpt.com/score_detector/ IT SHOULD BE MORE THAN 0.3 //
  20.  
  21. var address = false;
  22. if($('.main-input.normall')) {
  23. $('.main-input.normal').val("122ES9zQJm8FTqczfYM2P4ZRK5pQEcfCj4");////EDIT WITH YOUR FAUCETPAY ADDRESS HERE/////
  24. address = true;
  25. }
  26. var faucetclicks =setInterval(function() {
  27. if (window.grecaptcha.getResponse().length > 0) {
  28. document.querySelector(".btn.claim-button").click();
  29. clearInterval(faucetclicks);
  30. }
  31. }, 5000);
  32. setTimeout(function() {
  33. if(document.querySelector("#main > div.alert.alert-success")){
  34. window.location.replace("https://faucetpaydoge.com/?r=DGNRvwyYSMYKjxFDm8BHTcD23kWesLg5i1");
  35. } }, 60000);
  36. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement