0% found this document useful (0 votes)
1K views

Freebitco - in Low Balance MULTIPLY BTC Script 2019

This document contains a user script for the website freebitco.in that automatically places bets to multiply bitcoin balances. It defines configuration settings like the maximum bet amount and delay between bets. The script uses functions to place bets, check the balance, and toggle between high and low bets in an effort to grow the user's bitcoin balance on the site.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views

Freebitco - in Low Balance MULTIPLY BTC Script 2019

This document contains a user script for the website freebitco.in that automatically places bets to multiply bitcoin balances. It defines configuration settings like the maximum bet amount and delay between bets. The script uses functions to place bets, check the balance, and toggle between high and low bets in an effort to grow the user's bitcoin balance on the site.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

// ==UserScript==

// @name Freebitco.in Low balance MULTIPLY BTC Script 2019


// @namespace http://tampermonkey.net/
// @version 1.3
// @description Please use my Referal-Link https://freebitco.in/?r=3645185
// @author freeautobitco.blogspot.com
// @match https://freebitco.in/*
// ==/UserScript==

var bconfig = {
maxBet: 0.00000032,
wait: 500,
toggleHilo:false
},
hilo = 'hi',
multiplier = 1,
rollDice = function() {
if ($('#double_your_btc_bet_lose').html() !== '') {
$('#double_your_btc_2x').click();
multiplier++;
if(bconfig.toggleHilo)toggleHiLo();
} else {
$('#double_your_btc_min').click();
multiplier = 1;
}
if (parseFloat($('#balance').html()) <
(parseFloat($('#double_your_btc_stake').val()) * 2)
||
parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
$('#double_your_btc_min').click();
}
$('#double_your_btc_bet_' + hilo + '_button').click();
setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() *
100));
};
var toggleHiLo = function() {
if (hilo === 'hi') {
hilo = 'lo';
} else {
hilo = 'hi';
}}
;
rollDice();

You might also like