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

MULTIPLY BTC Script

This document contains a user script for an automated betting script on the website freebitco.in. The script is designed to place multiple automated bets over a set number of rounds, increasing the bet amount based on wins and decreasing it after losses. It includes variables to define the minimum stake, number of rounds, amount to increase or decrease the bet, and more. The main functions are playnow() to place a bet and checkresults() to check the outcome and recalculate the next bet amount.

Uploaded by

TxHobby
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)
631 views2 pages

MULTIPLY BTC Script

This document contains a user script for an automated betting script on the website freebitco.in. The script is designed to place multiple automated bets over a set number of rounds, increasing the bet amount based on wins and decreasing it after losses. It includes variables to define the minimum stake, number of rounds, amount to increase or decrease the bet, and more. The main functions are playnow() to place a bet and checkresults() to check the outcome and recalculate the next bet amount.

Uploaded by

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

// ==UserScript==

// @name Freebitco.in Low balance and roll speed MULTIPLY BTC Script 2021
// @namespace http://tampermonkey.net/
// @version 2.2
// @description To support please register on my free bitco.in reffer
https://freebitco.in/?r=10276558
// @author Cyber community
// @match https://freebitco.in/*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==

// Autoroll script
var minstake = 0.00000002; // valor base
//-----------------------------------------
var autorounds = 30; // n° of rolls
//======================================================
// if (PROFIT > profit_max) {
// error_title = "Maximum profit exceeded";
// error_info = "Maximum profit: " + number_format(profit_max,
devise_decimal);
// error_value = "Maximum profit exceeded - Maximum profit: " +
number_format(profit_max, devise_decimal);
// error = true;
// } SCRIPT 2021 auto resolve captcha / low balance script
// else if (amount > balance) {
// error_title = "Bet amount";
// error_info = "Maximum bet: " + number_format(balance, devise_decimal);
// error_value = "Bet amount - Maximum bet: " + number_format(balance,
devise_decimal);
// error = true;
// }
var handbrake = 0.00800000; // valor lose pause game
var autoruns = 1;
// else if (amount > bet_max) {
// error_title = "Bet amount";
// error_info = "Maximum bet: " + number_format(bet_max, devise_decimal);
// error_value = "Bet amount - Maximum bet: " + number_format(bet_max,
devise_decimal);
// error = true;
// }
// else if (amount < bet_min) {
// error_title = "Bet amount";
// error_info = "Minimum bet: " + number_format(bet_min, devise_decimal);
// error_value = "Bet amount - Minimum bet: " + number_format(bet_min,
devise_decimal);
// error = true;
// }
function playnow() {
if (autoruns > autorounds ) { console.log('Limit reached'); return; }
document.getElementById('double_your_btc_bet_lo_button').click();
setTimeout(checkresults, 7);
return;}
function checkresults() {
if (document.getElementById('double_your_btc_bet_lo_button').disabled ===
true) {
setTimeout(checkresults, 666);
return;
}
var stake = document.getElementById('double_your_btc_stake').value * 2;
var won = document.getElementById('double_your_btc_bet_win').innerHTML;
if (won.match(/(\d+\.\d+)/) !== null) { won = won.match(/(\d+\.\d+)/)[0]; }
else { won = false; }
var lost = document.getElementById('double_your_btc_bet_lose').innerHTML;
if (lost.match(/(\d+\.\d+)/) !== null) { lost = lost.match(/(\d+\.\d+)/)[0];
} else { lost = false; }
if (won && !lost) { stake = won * 2.8; console.log('Bet #' + autoruns + '/'
+ autorounds + ': Won ' + won + ' Stake: ' + stake.toFixed(8)); }
if (lost && !won) { stake = lost * 1.6; console.log('Bet #' + autoruns + '/'
+ autorounds + ': Lost ' + lost + ' Stake: ' + stake.toFixed(8)); }
if (!won && !lost) { console.log('Something went wrong'); return; }
document.getElementById('double_your_btc_stake').value = stake.toFixed(8);
autoruns++;
if (stake >= handbrake) {
document.getElementById('handbrakealert').play();
console.log('Handbrake triggered! Execute playnow() to override');
return;
}
setTimeout(playnow, 3333);
return;

}playnow()

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy