Freebitcoin

Estratégia Rewards Point doações 127UMVHURFAzuR8cxTxkMsDusKGboKgfiF

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

/* globals jQuery, $, waitForKeyElements */
// ==UserScript==
// @name         Freebitcoin
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Estratégia Rewards Point doações 127UMVHURFAzuR8cxTxkMsDusKGboKgfiF
// @author       Daniel1MsN
// @match        https://freebitco.in/?op=home
// @grant        none
// ==/UserScript==
function PaginaInicial(){
if(!$("#free_play_payout_table").is(":visible")){$("#free_play_link_li > a").trigger("click");}
}
function Comprar(B1,IID){//IID free_points_rewards or fp_bonus_rewards
    var RP=parseFloat($("#rewards_tab > div:nth-child(2) > div > div.reward_table_box.br_0_0_5_5.user_reward_points.font_bold").text().replace(',',''));
    if(!$("#rewards_tab > div.row.reward_category_container_main_div > div").is(":visible")){
        $("body > div.large-12.fixed > div > nav > section > ul > li.new_dropdown > div > a.rewards_link").trigger("click");
            }
    if(!$("#free_points_rewards > p").is(":visible")){
        $("#rewards_tab > div.row.reward_category_container_main_div > div > div:nth-child("+B1+") > div.reward_category_name").trigger("click");
    }
    if(RP>=1200){$("#"+IID+" > div:nth-child(2) > div:nth-child(2) > div:nth-child(3) > button").trigger("click");PaginaInicial();}else
    if(RP>=600){$("#"+IID+" > div:nth-child(3) > div:nth-child(2) > div:nth-child(3) > button").trigger("click");PaginaInicial();}else
    if(RP>=300){$("#"+IID+" > div:nth-child(4) > div:nth-child(2) > div:nth-child(3) > button").trigger("click");PaginaInicial();}else
    if(RP>=120){$("#"+IID+" > div:nth-child(5) > div:nth-child(2) > div:nth-child(3) > button").trigger("click");PaginaInicial();}else
    if(RP>=12){$("#"+IID+" > div:nth-child(6) > div:nth-child(2) > div:nth-child(3) > button").trigger("click");PaginaInicial();}else{PaginaInicial();rodar();}
}
function rodar(){
    if($("#free_play_form_button").is(":visible")){

    $("#free_play_form_button").trigger("click");

    }
}
setInterval(function(){
    if($("#free_play_form_button").is(":visible")){
        if($("#bonus_container_free_points").is(":visible")){rodar();}else{
            Comprar(6,"free_points_rewards");
        }
    }
}, 2800);