miirey

// ==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...
})();

Cumulative trophies

  1. 2

    Posted replies

    You posted multiple replies in a discussion, showing your ongoing engagement and contribution to the conversation.
    2 / 6
    Number of actions completed / Number of actions per trophy point
  2. 0

    Received a reaction

    Someone reacted to your content, indicating that your contribution was appreciated by others.
    1 / 6
    Number of actions completed / Number of actions per trophy point
Back
Top