Discussions » Creation Requests

Help with 20 BTC freebitco.in script

§
Posted: 18.04.2020
Edited: 18.04.2020

Help with 20 BTC freebitco.in script

Hello. Can anybody help me with this script for freebitco.in? It changes the value of the result of the roll, but it doesn't work, I don't know why. Thank you.

var stop_profit_positivo=  0.00000750  ; // Profit Positive
var stop_profit_negativo= -0.00000500  ; // Profit Negative
//===================================================================
var stop_profit_positivo=  0.00000550  ; // Profit Positive
var stop_profit_negativo= -0.00000200  ; // Profit Negative
//===================================================================
var stop_profit_positivo=  0.00000150  ; // Profit Positive
var stop_profit_negativo= -0.00000125  ; // Profit Negative
//===================================================================
var stop_profit_positivo=  0.00000050  ; // Profit Positive
var stop_profit_negativo= -0.00000100  ; // Profit Negative
//===================================================================
var profit_atual=parseFloat($('#auto_stats_profit').text());
document.querySelector("#fp_min_reward").innerHTML = "20.00000000 BTC";
$('<p><strong id="Contato" style="font-size:15px;color:#0000FF"></strong></p>').insertAfter('#btn-bet-start-pilot-dice');;$('<p><strong id="Contato" style="font-size:15px;color:#FF0000"></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 activated!');

Post reply

Sign in to post a reply.