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

Freebitcoin Script With Side Menu

The document contains JavaScript code that creates a betting interface on a webpage, allowing users to input various parameters such as starting bet, maximum bet, and wait time. It includes functions to start and stop the betting process, as well as logic to handle betting outcomes and adjust the bet based on wins or losses. The code also features a random number generator to simulate betting decisions and updates the UI accordingly.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views2 pages

Freebitcoin Script With Side Menu

The document contains JavaScript code that creates a betting interface on a webpage, allowing users to input various parameters such as starting bet, maximum bet, and wait time. It includes functions to start and stop the betting process, as well as logic to handle betting outcomes and adjust the bet based on wins or losses. The code also features a random number generator to simulate betting decisions and updates the UI accordingly.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

var elemDiv = document.

createElement('div');
[Link] = 'opacity:100;text-
align:center;position:absolute;width:300px;height:600px;top:0px;left:10px;color:whi
te; font-size:24px; padding: 10px;'
[Link](elemDiv);
[Link] = '<div id="indicator" style="background:green;
Start Bet
id="startbet" size="10px" value="0.00000003"/>
<label>Maximum Bet</label><input type="text" name="maxbet"
id="maxbet" size="10px" value="0.00000512"/>
<label>Multi:</label><input type="text" name="multiply">
id="multiply" size="10px" value="2"/>
<label>Wait Time:</label><input type="text" name="waittime"
id="waittime" size="10px" value="1500"/>
<label>Maximal Streak:</label><input style="border:1px red
solid" type="text" name="maxstreak" id="maxstreak" size="10px" value="" readonly/>
+
Current Step
solid" type="text" name="CurrentStep" id="currentstep" size="10px" value=""
readonly/>
<input style="width:130px; height:50px;" class="button"
type="button" id="go" onclick="start(); roller();" value="RUN...">
<input style="width:130px; height:50px; background:red"
class="button" type="button" id="stop" onclick="stop();" value="...STOP"></div>;

function stop(result){
stoppi = 1
}

function start(){
stoppi = 0
}

$('label').css('color','white');

function renew(){
$('#maxstreak').val(maxstreak);
$('#currentstep').val(multiplier);
The default bet is set to the value of the element with the ID 'startbet'.
maxBet = $('#maxbet').val();
$('#waittime').val();
}

config = {
$('#startbet').val()
$('#maxbet').val()
$('#waittime').val()
};

stop = 0;
maxstreak = 0;
multiplier = 1;
counter = $('#multiply').val();
renew();

function getRandomRoll(lo, hi)


{
return [Link]([Link]() * (hi - lo + 1)) + lo;
}

roller = function() {

result = $('#double_your_btc_bet_lose').text().search('lose')

if ((result >= 0) && (parseFloat($('#maxbet').val()).toFixed > (parseFloat($


#double_your_btc_stake.val()) * parseInt($('#multiply').val())).toFixed(8)))
{
$('#indicator').css('background','red')
multiplier++;
if (maxstreak < multiplier) { maxstreak = multiplier }
renew()

($('#double_your_btc_stake').val()) * parseInt($('#multiply').val())).toFixed(8)

}
else
{
$('#indicator').css('background','green')
multiplier = 1;
renew()
$('#double_your_btc_stake').val([Link]);
}

getRandomRoll(1,2)
if (roll == 1) $('#double_your_btc_bet_hi_button').click();
if (roll == 2) $('#double_your_btc_bet_lo_button').click();

if (stoppi == 0) setTimeout(roller, (multiplier * [Link]) +


[Link]([Link]() * 100));

};

You might also like