What's new

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

Following

Milestone trophies

  1. 30

    Happy 3rd Anniversary on nsfwPH Community

    You've been registered here for 3 years already, congratulations!
  2. 20

    Happy 2nd Anniversary on nsfwPH Community

    You've been registered here for 2 years already, congratulations!
  3. 10

    Happy 1st Anniversary on nsfwPH Community

    You've been registered here for a year, congratulations!
  4. 1

    Somebody Likes You

    Someone out there liked one of your messages. Keep posting like that for more!
  5. 1

    First Message

    Post a message somewhere on the site to receive this point.
Back
Top