Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Pay Doge Faucet
- // @namespace Claim Free Doge
- // @version 1.0
- // @description Claim Free Doge
- // @author lotocamion
- // @match https://faucetpaydoge.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=faucetpaydoge.com
- // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- // Install the script //
- // Install Noptcha Solver and select Voice Recaptcha Method its free no limit //
- // Then goto https://faucetpaydoge.com/?r=DGNRvwyYSMYKjxFDm8BHTcD23kWesLg5i1 and leave the tab open //
- // NOTE: SWITCH OFF AND ON YOUR ROUTER TO CHANGE YOUR IP EVERY 2 HOUR TO AVOID "sending automated queries" //
- // CHECK YOUR SCORE reCAPTCHA ON https://antcpt.com/score_detector/ IT SHOULD BE MORE THAN 0.3 //
- var address = false;
- if($('.main-input.normall')) {
- $('.main-input.normal').val("122ES9zQJm8FTqczfYM2P4ZRK5pQEcfCj4");////EDIT WITH YOUR FAUCETPAY ADDRESS HERE/////
- address = true;
- }
- var faucetclicks =setInterval(function() {
- if (window.grecaptcha.getResponse().length > 0) {
- document.querySelector(".btn.claim-button").click();
- clearInterval(faucetclicks);
- }
- }, 5000);
- setTimeout(function() {
- if(document.querySelector("#main > div.alert.alert-success")){
- window.location.replace("https://faucetpaydoge.com/?r=DGNRvwyYSMYKjxFDm8BHTcD23kWesLg5i1");
- } }, 60000);
- })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement