Cara penggunaanya:
1. Buka akun bitco.in,bitsler, dan lain sebagainya yang menggunakan roll dice
2. Copy script dibawah ini
3. Klik kanan mouse pilih Inspect element atau tekan F12
4. Klik console lalu paste script yang telah dicopy lalu enter
5. Jangan terburu-buru dalam bermain
New Freebitcoin script
var minstake = 0.00000004; // valor base
//-----------------------------------------
var autorounds = 99; // n° de 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;
// }
// 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 = 1.0000000; // 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_hi_button').click();
setTimeout(checkresults, 1000);
return;}
function checkresults() {
if (document.getElementById('double_your_btc_bet_hi_button').disabled === true) {
setTimeout(checkresults, 1000);
return;
}
var stake = document.getElementById('double_your_btc_stake').value * 1;
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 = minstake; console.log('Bet #' + autoruns + '/' + autorounds + ': Won ' + won + ' Stake: ' + stake.toFixed(8)); }
if (lost && !won) { stake = lost * 2.1; 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, 1000);
return;
}playnow()
Bitsler Stop Loss Profit Script
var stop_profit_positivo= 0.00000050 ; // Profit Positive
var stop_profit_negativo= -0.00000100 ; // Profit Negative
//===================================================================
var profit_atual=parseFloat($('#auto_stats_profit').text());
$('<p><strong id="Contato" style="font-size:15px;color:#0000FF">Scripts Bots Running Successfully.</strong></p>').insertAfter('#btn-bet-start-pilot-dice');;$('<p><strong id="Contato" style="font-size:15px;color:#00FF00">Script Applied Successfully.</strong></p>').insertAfter('#btn-bet-start-pilot-dice');;$('#history-my-bets-dice').unbind();$('#history-my-bets-dice').bind("DOMSubtreeModified",function(eventpositivo){if( $(event.currentTarget) ){
if(stop_profit_positivo < profit_atual){$('#btn-bet-stop-pilot-dice').trigger('click');}profit_atual=parseFloat($('#auto_stats_profit').text());
}});$('#history-my-bets-dice').bind("DOMSubtreeModified",function(eventnegativo){if( $(event.currentTarget) ){
if(stop_profit_negativo > profit_atual){$('#btn-bet-stop-pilot-dice').trigger('click');}profit_atual=parseFloat($('#auto_stats_profit').text());}});console.clear();console.log('Script active!');
New freebitco.in script
bconfig = { maxBet: 0.0002200, wait: 1000, autoexit: 0.00001, 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 = 1;
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)
{ console.log($('#double_your_btc_min')); }
if (parseFloat($('#balance').html()) < bconfig.autoexit) { throw "exit"; }
if (parseFloat($('#balance').html()) > bconfig.want) { var num = parseFloat($('#balance').html());
bconfig.want = num + 0.00000030; bconfig.autoexit = num - 0.00000420;
bconfig.won++; var total = num - bconfig.startbal;
console.log('Setting bconfig want to: ' + bconfig.want);
console.log('Setting autoexit to: ' + bconfig.autoexit);
console.log('Total won: ' + total + ' BTC'); } $('#double_your_btc_bet_hi_button').click();
setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000)); };
toggleHiLo = function() { if (hilo === 'hi') { hilo = 'hi'; } else { hilo = 'hi'; } };
var num = parseFloat($('#balance').html()); bconfig.startbal = num;
bconfig.want = num + 0.00000030;
bconfig.autoexit = num - 0.00000420;
rollDice();
Bitsler bot
// [BITSLER BOT V1.2] by thizk
//
// changelog v1.2:
// - seprate stop profit - stake
//
// changelog v1.1:
// - add option "restart bet on stake"
// - fix stake and profit calculation
//
// changelog v1.0:
// - start or stop button
// - chance % change
// - hi or lo betting
// - zigzag betting
// - profit or stake limitation
// - user interface
// - auto change seeds
// - increase bet on lose
if($('#aside-container').is(":visible") != false){
$('#close-chat').trigger('click');
}
$("#column-right").append('\
<div style="margin-top:5px; padding-bottom:5px; width:327.5px;background-color: #2e323b;color:whitesmoke;font-family:\'Open Sans\',\'Helvetica Neue\',Helvetica,Arial,sans-serif;">\
<table width="100%" border="0" cellspacing="0" cellpadding="5">\
<div style="text-align: center; padding: 10px 8px 5px 8px; width:327.5px; font-weight: bold; border-bottom: solid #181a1e;"> BITSLER BOT v1.2</div>\
<tbody>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center; font-size:11px;">CHANCE</td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_chance" value="49.1"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">INCREASE ON LOST [%]</td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_onlost" value="0"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center; font-size:11px;">BET MODE</td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_mode" placeholder="h | l | z"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">BET AMOUNT</td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_bet" value="0.00000001"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">PROFIT</td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_profit" value="0.00001024"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">STAKE</td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="text" id="_stake" value="0.00001024"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">STOP ON STAKE </td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="checkbox" id="_stopstake"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">STOP ON PROFIT </td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="checkbox" id="_stopprofit"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">RESTART BET ON STAKE</td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="checkbox" id="_restart"></td>\
</tr>\
<tr>\
<td style="padding:6px;color:whitesmoke;text-align: center;font-size:11px;">AUTO CHANGE SEED</td>\
<td style="width:200px;"><input style="padding:5px; background-color:#101215;width:97%;border:0;color:white; margin:3px 0;" type="checkbox" id="_auto"></td>\
</tr>\
<tr>\
<td></td><td><button onclick="startDice();return false;" id="_start" style="width:97%;background-color: #101215;border: none; color: white; padding: 7px 15px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px;"> START </button></td>\
</tr>\
</tbody>\
</table>\
</div>');
var _bet,_chance,_onlost,_mode, _auto, _stopprofit, _stopstake, _start = false, _stake, _profit,_betting, _task, _seeds,_restart;
function startDice(){
_mode = document.getElementById('_mode').value;
_bet = parseFloat(document.getElementById('_bet').value);
_profit = parseFloat(document.getElementById('_profit').value);
_stake = parseFloat(document.getElementById('_stake').value);
_stake = -_stake;
_chance = parseFloat(document.getElementById('_chance').value);
_onlost = parseFloat(document.getElementById('_onlost').value);
_stopprofit = document.getElementById('_stopprofit').checked;
_stopstake = document.getElementById('_stopstake').checked;
_auto = document.getElementById('_auto').checked;
_restart = document.getElementById('_restart').checked;
_betting = 0;
if(_mode != 'h' && _mode != 'l' && _mode != 'z'){
alert("Bet Mode incorrect!");
return;
}
_start = !_start;
if(_start != true){
$('#_start').text("START");
_betting = 0;
clearInterval(_task);
clearInterval(_seeds);
return;
}else{
$('#_start').text("STOP");
}
if($("#updated_condition").text().indexOf('>') !== -1 && _mode == 'l'){
$("#updated_condition").trigger('click');
}
else if($("#updated_condition").text().indexOf('<') !== -1 && _mode == 'h'){
$("#updated_condition").trigger('click');
}
//
$('#amount').val(_bet.toFixed(8));
//
$("#editable-chance").trigger('click');
$("#editable-chance-field").val(_chance);
$("#editable-chance-field").trigger('focusout');
if(_auto){
// CHANGE
change_seeds();
// SET TASK
_seeds = setInterval(function() {
change_seeds();
console.log("CHANGE SEED TASK = " + _seeds.toString());
}, Math.round(Math.random() * (600000 - 300000) + 300000));
}
_betting = _bet;
//
$('#btn-bet-dice').trigger('click');
}
function increaseOnLost(bet, percent){
return parseFloat(bet) + ((parseFloat(bet)*percent)/100);
}
//
$('#history-my-bets-dice').unbind();
$('#history-my-bets-dice').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget) )
{
clearInterval(_task);
var bet , x, balance;
if(_start)
{
balance = parseFloat(document.getElementById('balances-lg').innerText);
if( balance<= 0 || parseFloat($('#amount').val()) > balance){
startDice();
return;
}
x = ($('#history-my-bets-dice tr td:last-child span')[0].innerText.indexOf('+') != 0 ) ? false : true;
_betting = parseFloat(_betting) + parseFloat($('#history-my-bets-dice tr td:last-child span')[0].innerText);
if(x != true) {
if(_onlost > 0){
bet = increaseOnLost($('#amount').val(), _onlost);
$('#amount').val(bet.toFixed(8));
}
}else {
$('#amount').val(_bet.toFixed(8));
}
if(_stopprofit){
if(_betting >= _profit){
startDice();
alert("PROFIT REACHED!");
return;
}
}
if(_stopstake){
if( _betting <= _stake ){
startDice();
alert("STAKE REACHED!");
return;
}
}
else {
if(_betting <= _stake){
if( _restart ){
clearInterval(_task);
_betting = 0;
$('#amount').val(_bet.toFixed(8));
}else{
startDice();
alert("STAKE REACHED!");
return;
}
}
}
_task = setInterval(function(){
if(!_start){
clearInterval(_task);
clearInterval(_seeds);
return;
}
if(_mode == 'z'){
$("#updated_condition").trigger('click');
}
$('#btn-bet-dice').trigger('click');
}, 1000)
}
}
});
Bitsler new script
// ==UserScript==
// @name Dudemaus's DiceBot for Bitsler
// @namespace dicebotforbitslerbydudemaus
// @version 2017.0417a
// @description Wont win a fortune, but it will win.
// @author Dudemaus
// @match *://www.bitsler.com/play/dice/*
// @match https://www.bitsler.com/play
// @match https://www.bitsler.com/play/dice*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @grant GM_xmlhttpRequest
// @grant GM_info
// @grant GM_setValue
// @grant GM_getValue
// @grant GM_addStyle
// ==/UserScript==
//////JQuery Compatibility statement//////
this.$ = this.jQuery = jQuery.noConflict(true);
//////JQuery Compatibility statement//////
var countLosses = document.querySelectorAll('#history-my-bets-dice .text-danger').length;
var countWins = document.querySelectorAll('#history-my-bets-dice .text-success').length;
var winRatio = (countWins / 20) * 100;
var losscount = 0;
document.getElementById('game-row').insertAdjacentHTML('beforebegin',
'<br><div id="dicebot-container" class="tab-content tab-content-xs" style="border-style: solid;width: 800px;border-color: #D1D1D1;border-radius: 4px;border-style: solid;border-width: 1px; padding-bottom: 9px;padding-left: 9px;padding-right: 9px; margin-left: 118px; padding-top: 9px;display:block"> <div id="dicebotinnerwrap"> <div id="controlWrapper" style="Display:inline-block;"> <center><img src="http://i.imgur.com/fVx0BdR.png" /> <div id="tipDude" style="Display:inline-block;">Tip Dude</div> </center> <input type="text" name="betNumberOne" ID="betNumberOne" style="text-align:center;"> Bet #1 (base bet) <br> <input type="text" name="betNumberTwo" ID="betNumberTwo" style="text-align:center;"> Bet #2 <br> <input type="text" name="betNumberThree" ID="betNumberThree" style="text-align:center;"> Bet #3 <br> <input type="text" name="betNumberFour" ID="betNumberFour" style="text-align:center;"> Bet #4 <br> <button id="setBet" value="set bet">Bet Once</button> <button id="dudesAuto">Auto</button> <button id="stopDudesAuto">Stop Auto</button> </div> <div id="ulikey" style="Display:inline-block;"><font color="red"><b>If you like this bot please donate to any of these addresses:</b></font> <br><b><font size="1">Ethereum:</b> 0x264229e8656555def5bb65a1e1eef3366d93d18a<br><b>Bitcoin:</b> 1DZKn8ZDPPkTB9jxDeNqpJxaGBg82oW9WX <br><b>Doge:</b> DC9rJmJqPGkFWc2cAeWqTnQDj1EfWa9owA <br><b>Litecoin:</b> Lh2ph6qcH3AjrbaE168QiyVZTTcHU6uGxa</font></div> </div>');
document.getElementById('betNumberOne').value = 0.00000001;
document.getElementById('betNumberTwo').value = 0.00000003;
document.getElementById('betNumberThree').value = 0.00000007;
document.getElementById('betNumberFour').value = 0.000000016;
//when set bet button is clicked, set the bet.
document.getElementById('setBet').addEventListener("click", function() {
var countLosses = document.querySelectorAll('#history-my-bets-dice .text-danger').length;
var countWins = document.querySelectorAll('#history-my-bets-dice .text-success').length;
var winRatio = (countWins / 20) * 100;
var betOne = document.getElementById('betNumberOne').value;
var betTwo = document.getElementById('betNumberTwo').value;
var betThree = document.getElementById('betNumberThree').value;
var betFour = document.getElementById('betNumberFour').value;
var winChance = document.getElementById('editable-chance').innerText;
var lastBet0 = document.getElementById('history-my-bets-dice').rows[0].cells[7].innerText;
var lastBet1 = document.getElementById('history-my-bets-dice').rows[1].cells[7].innerText;
var lastBet2 = document.getElementById('history-my-bets-dice').rows[2].cells[7].innerText;
var lastBet3 = document.getElementById('history-my-bets-dice').rows[3].cells[7].innerText;
//document.getElementById('amount').value = betOne;
if (lastBet0 < 0 && lastBet1 < 0 && lastBet2 < 0 && lastBet3 < 0){
document.getElementById('amount').value = document.getElementById('betNumberFour').value;
calculate_profit();
play();
}
else if(lastBet0 < 0 && lastBet1 < 0 && lastBet2 < 0 && lastBet3 < 1){
document.getElementById('amount').value = document.getElementById('betNumberThree').value;
calculate_profit();
play();
}
else if(lastBet1 < 0 && lastBet1 < 0 && lastBet1 < 1 && lastBet3 < 0){
document.getElementById('amount').value = document.getElementById('betNumberThree').value;
calculate_profit();
play();
}
else if(lastBet1 < 0 && lastBet1 < 1 && lastBet1 < 0 && lastBet3 < 0){
document.getElementById('amount').value = document.getElementById('betNumberOne').value;
calculate_profit();
play();
}
else if(lastBet1 < 1 && lastBet1 < 0 && lastBet1 < 0 && lastBet3 < 0){
document.getElementById('amount').value = document.getElementById('betNumberFour').value;
calculate_profit();
play();
}
else if(lastBet0 < 0 && lastBet1 < 0 && lastBet1 < 1 && lastBet3 < 1){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet0 < 0 && lastBet1 < 1 && lastBet1 < 1 && lastBet3 < 0){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet0 < 0 && lastBet1 < 1 && lastBet1 < 0 && lastBet3 < 1){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet0 < 1 && lastBet1 < 0 && lastBet1 < 0 && lastBet3 < 1){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet0 < 1 && lastBet1 < 1 && lastBet1 < 0 && lastBet3 < 0){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet0 < 0 && lastBet1 < 1 && lastBet1 < 1 && lastBet3 < 1){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet0 < 1 && lastBet1 < 1 && lastBet1 < 1 && lastBet3 < 0){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet0 < 1 && lastBet1 < 1 && lastBet1 < 0 && lastBet3 < 1){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet0 < 1 && lastBet1 < 0 && lastBet1 < 1 && lastBet3 < 1){
document.getElementById('amount').value = document.getElementById('betNumberTwo').value;
calculate_profit();
play();
}
else if(lastBet1 < 1 && lastBet1 < 1 && lastBet1 < 1 && lastBet3 < 1){
document.getElementById('amount').value = document.getElementById('betNumberOne').value;
calculate_profit();
play();
}
});
document.getElementById('tipDude').addEventListener("click", function() {
document.getElementById('message').innerText = "/tip Dudemaus";
document.getElementById('message').focus();
add_message();});$(document).keypress(function(e){if((e.which==13)&&($("#message").is(":focus"))){add_message();
}
});
document.getElementById('dudesAuto').addEventListener("click", function() {
dudesAuto = setInterval(function(){ $("#setBet").click(); }, 900);
});
document.getElementById('stopDudesAuto').addEventListener("click", function() {
clearInterval(dudesAuto);
});
//change seeds every 5 mins
setInterval(function(){ change_seeds(); }, 301000);
Bitsler script
// 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;
// }
// 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;
// }
// 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;
// }
var base_bet= parseFloat($("#amount")[0].value);var mult=1.5;var base=base_bet;var cont=0;var stop=true;$('#btn-bet-dice').trigger('click');stop=false;$('<p><strong id="lucro" style="font-size:16px;color:#00C0FF"></strong> </p>').insertAfter('#btn-bet-dice');;
// 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;
// }
// 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;
// }
// 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;
// }
$('<p><strong id="lucro" style="font-size:16px;color:#00C0FF"></strong> </p>').insertAfter('#btn-bet-dice');;$('#history-my-bets-dice').unbind();$('#history-my-bets-dice').bind("DOMSubtreeModified",function(event){
if( $(event.currentTarget) ){if(!stop){if(cont%2==1){setTimeout(function(){console.clear();
profit=parseFloat($('#history-my-bets-dice tr')[0].children[7].children[0].innerHTML);if(profit>0){stop=false;base=base_bet;$('#amount').val(base.toString());$('#btn-bet-dice').trigger('click');}
else{base=base*mult;$('#btn-bet-dice').trigger('click');$('#amount').val(base.toString());}$("#game-input")[0].value="33.00";$('#btn-bet-dice').trigger('click');$('#amount').val(base.toString());$("#updated_condition")[0].innerHTML='<Lucrando <i class="fa fa-exchange hidden-xs"></i>';$("#editable-payout")[0].innerHTML='Billing <i class="hidden-xs fa fa-pencil" style="font-size:12px"></i>';$("#editable-chance")[0].innerHTML='$$$$$$$ <i class="fa fa-pencil hidden-xs"></i>';},2000);}cont=cont+1;}}});console.clear();window.onbeforeunload=function(){return"Disabled Auto-Refresh"};
Freebitco.in Script
var minstake = 0.00000004; // valor base
//-----------------------------------------
var autorounds = 99; // n° de 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;
// }
// 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 = 1.0000000; // 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_hi_button').click();
setTimeout(checkresults, 1000);
return;}
function checkresults() {
if (document.getElementById('double_your_btc_bet_hi_button').disabled === true) {
setTimeout(checkresults, 1000);
return;
}
var stake = document.getElementById('double_your_btc_stake').value * 1;
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 = minstake; console.log('Bet #' + autoruns + '/' + autorounds + ': Won ' + won + ' Stake: ' + stake.toFixed(8)); }
if (lost && !won) { stake = lost * 2.1; 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, 1000);
return;
}playnow()
No comments:
Post a Comment