[Final] Freebitco.in

Automatic claim BTC/WoF + select 1000% BTC-Bonus

当前为 2023-10-23 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         [Final] Freebitco.in
// @namespace    https://greasyfork.org/users/1162863
// @version      2.1
// @description  Automatic claim BTC/WoF + select 1000% BTC-Bonus
// @author       Andrewblood
// @match        https://freebitco.in/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=freebitco.in
// @license      Copyright Andrewblood
// ==/UserScript==
/*

Profit: 2$/Month

When you want to Support me for the work. Then Register over:
https://freebitco.in/?r=3595810

For full automation you need the extension "hektCaptcha".

Open https://freebitco.in/?r=3595810 + WoF and see how your BTC increases... ;)

*/
(function() {
    'use strict';

    function docReady(fn) {
        if (document.readyState === "complete" || document.readyState === "interactive") {
            setTimeout(fn, 1);
        } else {
            document.addEventListener("DOMContentLoaded", fn);
        }
    }

    docReady(function() {

        if(window.location.href.includes("home")) {
            setTimeout(function() {
                if (document.querySelector("#myModal22 > a")) {
                    document.querySelector("#myModal22 > a").click();
                }
                document.querySelector("body > div.large-12.fixed > div > nav > section > ul > li:nth-child(8) > a").click();
                document.querySelector("#rewards_tab > div.row.reward_category_container_main_div > div > div:nth-child(4) > div.reward_category_name").click();
            }, 1000*5);
            setTimeout(function() {
                var yourrwp = document.querySelector("#rewards_tab > div:nth-child(2) > div > div.reward_table_box.br_0_0_5_5.user_reward_points.font_bold").innerText
                console.log("Your current Reward Points are:");
                console.log(yourrwp);
                var bonuscost = parseFloat(document.querySelector("#fp_bonus_rewards > div:nth-child(2) > div:nth-child(2) > div.large-6.small-12.columns > div").innerText.replace(/,/, ''))
                console.log("The Price for 1000% BTC-Bonus is:");
                console.log(bonuscost);
                if (yourrwp > bonuscost){
                    document.querySelector("#fp_bonus_rewards > div:nth-child(2) > div:nth-child(2) > div:nth-child(3) > button").click();
                }
                else
                {
                    console.log("Your balance is too low to buy.");
                }
                document.querySelector("#free_play_link_li > a").click();
            }, 1000*10);
            setTimeout(function() {
                if(document.querySelector("#wait").style.display == "none") {
                    if (document.getElementsByClassName("h-captcha")){
                        console.log("Wait for Captcha and.....");
                        function isCaptchaChecked() {
                            return hcaptcha && hcaptcha.getResponse().length !== 0;
                        }
                        setInterval(function(){
                            if (isCaptchaChecked()) {
                                document.querySelector("#free_play_form_button").click();
                                console.log(document.querySelector("#free_play_result").innerText)
                                console.log("Wait for next Roll.")
                                setTimeout(function() {
                                    location.reload();
                                }, 5000)
                            }
                        }, 5000)
                    }
                    else
                    {
                        console.log("You can Roll and.....");
                        document.querySelector("#free_play_form_button").click();
                        console.log(document.querySelector("#free_play_result").innerText)
                        console.log("Wait")
                        console.log(document.querySelector("#time_remaining").innerText.replaceAll("\n", " "))
                        console.log("for next Roll.")
                        setTimeout(function() {
                            location.reload();
                        }, 5000)
                    }
                }
                else
                {
                    console.log("You cannot Roll yet, wait")
                    console.log(document.querySelector("#time_remaining").innerText.replaceAll("\n", " "))
                    console.log("for next Roll.")
                }
            }, 1000*20);
        }

        if (window.location.href.includes("wof")) {
            let buttons = document.querySelectorAll(".play-but");
            let playAllButton = Array.from(buttons).find(button => button.textContent.trim() === "PLAY ALL");

            if (playAllButton) {
                let clickEvent = document.createEvent('MouseEvents');
                clickEvent.initEvent('click', true, true);
                playAllButton.dispatchEvent(clickEvent);
            }
            setTimeout(function() {
                document.location.reload();
            }, 1000*60*60*6);
        }

    })

})();