Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
259 views1 page

Freebitcoin Multiply Player - Dock

This document contains a userscript for the website freebitco.in that implements an automated strategy for playing their "double or nothing" dice game. The script places bets starting at a maximum bet size and doubles down on wins while switching between high and low bets. It uses timeouts and checks balance levels to continue playing without manual intervention.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
259 views1 page

Freebitcoin Multiply Player - Dock

This document contains a userscript for the website freebitco.in that implements an automated strategy for playing their "double or nothing" dice game. The script places bets starting at a maximum bet size and doubles down on wins while switching between high and low bets. It uses timeouts and checks balance levels to continue playing without manual intervention.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

// ==UserScript==

// @name Freebitco.in Multiply Player


// @namespace http://tampermonkey.net/
// @version 0.2
// @description Play at freebitco.in multiply by best Strategy
// @author Android Phoneix
// @match https://freebitco.in/?op=home
// @match https://freebitco.in/?op=home#
// @match https://freebitco.in/
// @grant none
// ==/UserScript==
bconfig = {
maxBet: 0.00000256,
wait: 800,
toggleHilo:false
};
hilo = 'lo';
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));
};
toggleHiLo = function() {
if (hilo === 'lo') {
hilo = 'lo';
} else {
hilo = 'lo';
}
};
rollDice();

You might also like