// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://my.dropz.xyz/site-friends/
// @grant none
// ==/UserScript==
(function() {
// ==UserScript==
// name DROPZ AUTOCLICKER
// @namespace dropz
// @description Auto Click Visit Developer
// @author MIKURI
// @match https://my.dropz.xyz/site-friends/
// RUN-at document-end
// VERSION 1.0.2
// icon
// Credit https://freecrypto.site/71314
// @require http://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
//settings
function adclick(){
var adclicky = document.getElementsByClassName("btn btn-app");
var withdraw = document.getElementsByClassName("btn btn-block btn-success btn-sm");
var pending = document.getElementById("display_pending_drops");
var pendingcount = parseFloat(pending.textContent.replace(/,/g,''))
if(adclicky.length){
adclicky[0].click();
}
if(pendingcount>='10200'){
withdraw[0].click();
setTimeout(function(){location.reload();},3000)}
}
setInterval(function(){
setTimeout(function(){ adclick();}, 5000);
}, 5000);
// Your code here...
})();