Michabitco.in Rollbot Script

Please use my Referal-Link https://michabitco.in/?ref=4291

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Michabitco.in Rollbot Script
// @version      0.1
// @description  Please use my Referal-Link https://michabitco.in/?ref=4291
// @author       unknown
// @match        https://michabitco.in/*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @namespace https://greasyfork.org/users/708530
// ==/UserScript==

(function() {
    'use strict';
setTimeout(function(){ location.reload(); }, random(61000,63000));
    document.getElementsByClassName("btn btn-danger btn-md w-100 mt-2")[0].click();
    random(1000,3000);
})();

function random(min,max){
   return min + (max - min) * Math.random();
}