0% found this document useful (0 votes)
54 views1 page

Bott

This document discusses code for an automated bot that plays a bitcoin betting game. The bot listens for win or lose events on the page and tracks a sequence of results in a variable. It compares the recent results to a target "pattern" and stops if a match is found, alerting the amount earned. Functions are defined to start and stop the bot, check for matches, and validate the pattern found.

Uploaded by

I R
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)
54 views1 page

Bott

This document discusses code for an automated bot that plays a bitcoin betting game. The bot listens for win or lose events on the page and tracks a sequence of results in a variable. It compares the recent results to a target "pattern" and stops if a match is found, alerting the amount earned. Functions are defined to start and stop the bot, check for matches, and validate the pattern found.

Uploaded by

I R
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

ar</button>'); jugadas = ""; $('#double_your_btc_stake').val('0.

00000001'); $
("#double_your_btc_bet_hi_button").trigger("click");balanceInicial =
( parseInt(parseFloat ( $("#balance").html() ) * 100000000) );}function parar()
{ hacerParada = true; $("#botonera").html('<button id="start" onclick="iniciar()"
class="class="btnbtn-primary" style="margin:0 0 10px 0;
padding:3px;width:auto;">Iniciar</button>'); //$
('#double_your_btc_bet_lose').unbind(); //$('#double_your_btc_bet_win').unbind();}$
('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(e){ //debugger; if
(hacerParada) return;if( $(event.currentTarget).is(':contains("lose")') )
{validarPatron("R");} });function validarPatron(resultado){jugadas+= resultado;var
valor = jugadas.substr(jugadas.length - patron.length);if (valor==patron){ parar();
balanceActual = (parseInt(parseFloat ($("#balance").html())*100000000)); var
inversion = balanceActual-balanceInicial; alert("Patr�n encontrado: " + valor + "\
nInversi�n:" + inversion + "satoshis" );}else{$
("#double_your_btc_bet_hi_button").trigger("click");}}

10

You might also like