0% found this document useful (0 votes)
531 views2 pages

Script Freebitcoin Low Balance

This document contains a user script for the website freebitco.in. The script is designed to automatically place bets on the site to multiply a starting balance of bitcoin. It sets configuration values like maximum bet size, wait time between bets, and target balance to exit. The script uses jQuery and contains functions to roll the dice (place a bet), check balances, increase the multiplier after a win, and toggle between betting high or low on each roll. It then calls the roll dice function to start placing automatic bets.

Uploaded by

haris
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)
531 views2 pages

Script Freebitcoin Low Balance

This document contains a user script for the website freebitco.in. The script is designed to automatically place bets on the site to multiply a starting balance of bitcoin. It sets configuration values like maximum bet size, wait time between bets, and target balance to exit. The script uses jQuery and contains functions to roll the dice (place a bet), check balances, increase the multiplier after a win, and toggle between betting high or low on each roll. It then calls the roll dice function to start placing automatic bets.

Uploaded by

haris
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/ 2

// ==UserScript==

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

// @namespace http://tampermonkey.net/

// @version 1.6

// @description To support please register on my free bitco.in reffer


https://freebitco.in/?r=3645185

// @author BoboLordOfDark

// @match https://freebitco.in/*

// @grant none

// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js

// ==/UserScript==

bconfig = {

//Change Bet valor to increase your bet

maxBet: 0.000001,

wait: 1000,

autoexit: 0.0001,

want: 0.000014,

toggleHilo:false,

startbal: 0,

won: 0,

};

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));

};

toggleHiLo = function() {

if (hilo === 'lo') {

hilo = 'lo';

} else {

hilo = 'lo';

};

rollDice();

You might also like