New Userscript

É um script de usar no ab60ac47cf

You will need to install an extension such as Tampermonkey, Greasemonkey 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 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.

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

(У мене вже є менеджер скриптів, дайте мені встановити його!)

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         New Userscript
// @namespace    http://tampermonkey.net/
// @version      0.5
// @description  É um script de usar no ab60ac47cf
// @author       You
// @match        https://freebitco.in/
// @icon         https://www.google.com/s2/favicons?domain=freebitco.in
// @grant        none
// ==/UserScript==


(function() {
    'use strict';

var meuIP = "-";

var xmlhttp = new XMLHttpRequest();
  xmlhttp.open("GET", 'https://ipinfo.io/json');
  xmlhttp.send();
  xmlhttp.onload = function(e) {
    //alert("Seu IP é: "+JSON.parse(xmlhttp.response).ip);
      meuIP = JSON.parse(xmlhttp.response).ip;
  }


setInterval(function(){
    if(document.getElementsByClassName("h-captcha")[0].innerHTML.length > 2000){
        document.getElementById("free_play_form_button").click();

	setInterval(function(){
		if(document.getElementById("free_play_error").innerText.includes(" IP ")){
			document.getElementsByTagName("title")[0].innerText = "erroIP"+
            " ("+document.getElementsByClassName("balanceli")[0].innerText.replace(" BTC","")+");"+meuIP;

		}else if(document.getElementById("free_play_result").innerText.includes("You win 0.")){
			document.getElementsByTagName("title")[0].innerText = "GG!" +
            document.getElementById("free_play_result").innerText.split(',')[0].replace("You win ","").replace(" BTC","") +
		    " ("+document.getElementsByClassName("balanceli")[0].innerText.replace(" BTC","")+");"+meuIP;

        }
	},100);

    }
},25000);

})();