Sign up here: https://freecrypto.site/704899
Ad Script to tamper monkey.
Direct to:https://my.dropz.xyz/site-friends/ for auto start
// ==UserScript==
// @name XRP-Ripple Faucet
// @namespace xrp faucet
// @version 0.3
// @description XRP Ripple Faucet
// @author engageub
// @match https://my.dropz.xyz/site-friends/
// @grant none
// ==/UserScript==
(function() {
'use strict';
//Reload the page after 3 minutes
setTimeout(function(){
window.location.reload();
},180000);
var windowName = "";
var popUpWindow = "";
var currentwindowOpenFunction = window.open;
function newwindowOpenFunction(params1, params2) {
//Close Current Window before opening a new window
if(popUpWindow && !popUpWindow.closed) {
popUpWindow.close();
}
if (!params2 || params2 == "_blank") {
windowName = "popUpWindowMyDropz";
} else {
windowName = params2;
}
popUpWindow = currentwindowOpenFunction(params1, windowName);
return popUpWindow;
};
window.open = newwindowOpenFunction;
window.onbeforeunload = function() {
if(popUpWindow && !popUpWindow.closed) {
popUpWindow.close();
}
};
function endsWithNumber( str ){
return isNaN(str.slice(-1)) ? false : true;
}
var clicked = false;
setInterval(function(){
for(let i=0; i< document.querySelectorAll(".btn.btn-app").length; i++){
if(!endsWithNumber(document.querySelectorAll(".btn.btn-app")[i].getAttribute('id'))){
document.querySelectorAll(".btn.btn-app")[i].click();
break;
}
}
for(var hc=0; hc < document.querySelectorAll("iframe").length; hc++){
if(!clicked && document.querySelectorAll("iframe")[hc] &&
document.querySelectorAll("iframe")[hc].hasAttribute("data-hcaptcha-response") &&
document.querySelectorAll("iframe")[hc].getAttribute("data-hcaptcha-response").length > 0 &&
document.querySelector("button.btn.btn-success.btn-xs")) {
document.querySelector("button.btn.btn-success.btn-xs").click();
clicked = true;
}
}
},7000);
function randomInteger(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
//Autowithdraw randomly when the balance is between 5000 and 10000
setTimeout(function(){
if(document.querySelector("#display_pending_drops") && document.querySelector("#display_pending_drops").innerText){
var balance = document.querySelector("#display_pending_drops").innerText;
balance = balance.split(".");
balance[0] = balance[0].replaceAll(",","");
balance[0] = Number(balance[0]);
if(balance[0] > randomInteger(5000,10000) && document.querySelector("#payout_bt")){
document.querySelector("#payout_bt").click();
}
}
},7000);
})();