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

Script Freebitcoin

The document contains JavaScript code that: 1) Generates a random number between 0-1 and uses it to determine a multiplier value or sets it to 10000. 2) Applies the multiplier to a balance amount by subtracting a stake value from the balance and displaying the new balance. 3) Creates a withdrawal button and adds event handlers for withdrawal and display functions.

Uploaded by

Eugeny Buzin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
252 views2 pages

Script Freebitcoin

The document contains JavaScript code that: 1) Generates a random number between 0-1 and uses it to determine a multiplier value or sets it to 10000. 2) Applies the multiplier to a balance amount by subtracting a stake value from the balance and displaying the new balance. 3) Creates a withdrawal button and adds event handlers for withdrawal and display functions.

Uploaded by

Eugeny Buzin
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

<script>

var serverseed= "";


var clientseed= "";
nounce="";
var balance = parseFloat($('#balance'));
var temp = Math.random();
temp = temp.toString();
if(temp[0]==0){
var result = parseFloat(temp);
}else{
var result = 10000;
}
document.getElementById('double_your_btc_stake');
setTimeout(function(){
document.getElementById("multiplier_first_digit").innerHTML=temp[1];
document.getElementById("multiplier_second_digit").innerHTML=temp[2];
document.getElementById("multiplier_third_digit").innerHTML=temp[3];
document.getElementById("multiplier_fourth_digit").innerHTML=temp[4];
document.getElementById("multiplier_fifth_digit").innerHTML=temp[5];
if(temp[0] == 1){
var result = parseFloat(temp);
}else{
var result = 10000;
}
if
//any help please for the next code here. thank you//
balance = balance-parseFloat($('#double_your_btc_stake')[0].value);
document.getElementById('balance').innerHTML = balance.toFixed(8);
document.getElementById('previous_roll').innerHTML = result;
}, 10000);
};
clear();
console.log("Next Roll is : " + result);
var aBalance = parseFloat($('#balance').html());
var winBalance = parseFloat($('.br_0_0_5_0').html());
var fee = parseFloat($('.manual_withdraw_fee').html());;
var newBalance = parseFloat(aBalance+winBalance).toFixed(8));
var withAllLink = parseFloat(aBalance-fee).toFixed(8);
var e = document.getElementByTagName('button')[50];
var d = document.createElement('a');
d.innerHTML = e.innerHTML;
e.parentNode.insertBefore(d, e);
e.parentNode.removeChild(e);
d.setAttibute("id", "withdrawal_button");
d.setAttibute("class", "orange_button center");
d.setAttibute("style", 'border-style: solid;border-width: 1px;cursor:
pointer;font-family: inherit;font-weight: bold;line-height: normal;margin: 0
0
0;position: relative;text-decoration: none;text-align: center;display:
inlineblock;
padding: 14px;font-size: 1.25em;background-color: #2ba6cb;border-color:
#2284a1;color: white;margin:auto; margin-top:10px;font-size: 15px;font-
family:
arial,sans-serif;margin:auto; margin-top:10px;'); aBalance = "0.00000000";
function activation(){
x=document.getElementByClassName("reward_point_redeem_result_box");
for(var i = 0; i < x.length; i++){
x[i].innerText="Payment request successful. The payment will be sent out
in 6 hours.";
}
}activation();
document.getElementById("manual_withdraw_amt_recv").innerText=fee;
document.getElementById("withdrawal_amount").value="";
setTimeout(function(){
document.getElementById('reward_point_redeem_result_container_div').style.dis
pla
y = 'none';
}, 5000);
outLoop();
};
function outloop(){
//setTimeout(function(){
//
document.getElementById('pending_payouts_table_new').style.display =
'block';
//}, 5000);
};
loopMoney();
</script>

You might also like