-
-
Save makaAnarchy/ef9cf5e989936c0464e75fedf8118e1d to your computer and use it in GitHub Desktop.
// ==UserScript== | |
// @name Best algorithm to play Multiply odd 1.5 win chance 63% (NOT FOR LOW BALANCE) | |
// @description Play with higher chance , READ FIRST | |
// @include https://freebitco.in/* | |
// @copyright 2020, makaaymen@gmail.com | |
// @namespace AnarchyHS | |
// ==/UserScript== | |
bconfig = { | |
minWait: 3000, | |
maxWait : 5000, | |
odd : 1.5, | |
bet : 0.00000002 | |
}; | |
//*********************************** | |
var add = bconfig.bet; | |
var x = add; | |
var choice; | |
var body = $('body'); | |
var maxWait = bconfig.maxWait; | |
var minWait = bconfig.minWait; | |
var c = 1; | |
var roll; | |
var hi = "hi"; | |
var lo = "lo"; | |
var sum = 0.00000000; | |
var stopprofit = 1.00000000; | |
var stoploss = -1.00000000; | |
var y = 1; | |
var state = 1 ; | |
//********************************* | |
var choiceroll = prompt("Please enter number of rolls", "10"); | |
roll = parseInt(choiceroll, 10); | |
var rp = confirm("Do you want to stop the script on PROFIT"); | |
if (rp == true) { | |
var choiceprofit= prompt("Please enter a value in Satoshi", "100"); | |
stopprofit = parseInt(choiceprofit, 10); | |
} | |
var rl = confirm("Do you want to stop the script on LOSS"); | |
if (rl == true) { | |
var choiceloss= prompt("Please enter a negative value in Satoshi", "-50"); | |
stoploss = parseInt(choiceloss, 10); | |
} | |
function getRandomWait() { | |
var wait; | |
do { | |
wait = Math.floor(Math.random() * maxWait) + 100; | |
} | |
while (wait < minWait); | |
console.log(wait); | |
return wait; | |
} | |
var init_balance = $('#balance').html(); | |
document.getElementById("double_your_btc_payout_multiplier").value = "1.5"; | |
rollDice = function(choice) { | |
var balance = $('#balance').html(); | |
if (x < 0.00000001) { | |
x = add; | |
document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString(); | |
} | |
var lenLose = $('#double_your_btc_bet_lose').html().length; | |
//console.log(lenLose); | |
var lenWin = $('#double_your_btc_bet_win').html().length; | |
//console.log(lenWin); | |
if (lenLose > 36 && lenWin == 0 && state == 1) { | |
lenWin = 0; | |
lenLose = 0; | |
//x = x + add; | |
y = y * 3; | |
x = add * y; | |
document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString(); | |
$('#double_your_btc_bet_' + choice + '_button').click(); | |
}else if (lenWin > 36 && lenLose == 0 && state == 1){ | |
lenWin = 0; | |
lenLose = 0; | |
if (x >= add * bconfig.odd * 2 ) { | |
y = 1; | |
x = add * y; | |
document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString(); | |
} | |
$('#double_your_btc_bet_' + choice + '_button').click(); | |
} | |
c++; | |
console.log("Roll number :"+c); | |
sum = parseFloat(balance) - parseFloat(init_balance) ; | |
if (((sum * 100000000) > stopprofit) || ((sum * 100000000) < stoploss)){ | |
console.log("Script stopped"); | |
state = 0; | |
alert("Script stopped, " + " Profit = " + sum.toFixed(8).toString()); | |
location.reload(); | |
} | |
} | |
/*if (choice == null || choice == "") { | |
choice = "hi"; | |
} else { | |
}*/ | |
body.prepend( | |
$('<div/>').attr('style',"position:fixed;top:50px;left:0;z-index:999;width:400px;background-color:#227d5c;color: white; text-align: center;") | |
.append( | |
$('<div/>').attr('id','autofaucet') | |
.append($('<p/> text-align: center').text("Donate:")) | |
.append($('<p/> text-align: center').text("1Jh72g1dBtnKjvP9wC4KSbEdVGNfpD8mDc")) | |
.append($('<p/> text-align: center').text("Click to copy")) | |
.append($('<p/>') | |
) | |
).click(function(){ | |
var $temp = $('<input>').val("1Jh72g1dBtnKjvP9wC4KSbEdVGNfpD8mDc"); | |
body.append($temp); | |
$temp.select(); | |
document.execCommand("copy"); | |
$temp.remove(); | |
}) | |
).prepend($('<style/>') | |
.text("#autofaucet p { margin: 0; margin-left: 0px; text-align: center; }") | |
) | |
document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString(); | |
$('#double_your_btc_bet_' + hi + '_button').click(); | |
function main(n) { | |
function timer(){ // create a unique function (scope) each time | |
var k = i; // save i to the variable k | |
setTimeout(()=>{ | |
if (state == 0){ | |
return; | |
}else{ | |
if (k % 2 == 0){ | |
//console.log ("rolling high .."); | |
rollDice("hi"); | |
}else{ | |
//console.log ("rolling low .."); | |
rollDice("lo"); | |
} | |
console.log ("Profit = " + sum.toFixed(8).toString()); | |
} | |
},i*getRandomWait()); | |
} | |
timer(); | |
} | |
for(var i = 1; i < roll; i++) { | |
main(i); | |
} |
// ==UserScript==
// @name Best algorithm to play Multiply odd 1.5 win chance 63% (NOT FOR LOW BALANCE)
// @description Play with higher chance , READ FIRST
// @include https://freebitco.in/*
// @copyright 2020, makaaymen@gmail.com
// @namespace AnarchyHS
// ==/UserScript==
bconfig = {
minWait: 3000,
maxWait : 5000,
odd : 1.5,
bet : 0.00000002
};
//***********************************
var add = bconfig.bet;
var x = add;
var choice;
var body = $('body');
var maxWait = bconfig.maxWait;
var minWait = bconfig.minWait;
var c = 1;
var roll;
var hi = "hi";
var lo = "lo";
var sum = 0.00000000;
var stopprofit = 1.00000000;
var stoploss = -1.00000000;
var y = 1;
var state = 1 ;
//*********************************
var choiceroll = prompt("Please enter number of rolls", "10");
roll = parseInt(choiceroll, 10);
var rp = confirm("Do you want to stop the script on PROFIT");
if (rp == true) {
var choiceprofit= prompt("Please enter a value in Satoshi", "100");
stopprofit = parseInt(choiceprofit, 10);
}
var rl = confirm("Do you want to stop the script on LOSS");
if (rl == true) {
var choiceloss= prompt("Please enter a negative value in Satoshi", "-50");
stoploss = parseInt(choiceloss, 10);
}
function getRandomWait() {
var wait;
do {
wait = Math.floor(Math.random() * maxWait) + 100;
}
while (wait < minWait);
console.log(wait);
return wait;
}
var init_balance = $('#balance').html();
document.getElementById("double_your_btc_payout_multiplier").value = "1.5";
rollDice = function(choice) {
var balance = $('#balance').html();
if (x < 0.00000001) {
x = add;
document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString();
}
var lenLose = $('#double_your_btc_bet_lose').html().length;
//console.log(lenLose);
var lenWin = $('#double_your_btc_bet_win').html().length;
//console.log(lenWin);
if (lenLose > 36 && lenWin == 0 && state == 1) {
lenWin = 0;
lenLose = 0;
//x = x + add;
y = y * 3;
x = add * y;
document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString();
$('#double_your_btc_bet_' + choice + '_button').click();
}else if (lenWin > 36 && lenLose == 0 && state == 1){
lenWin = 0;
lenLose = 0;
if (x >= add * bconfig.odd * 2 ) {
y = 1;
x = add * y;
document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString();
}
$('#double_your_btc_bet_' + choice + '_button').click();
}
c++;
console.log("Roll number :"+c);
sum = parseFloat(balance) - parseFloat(init_balance) ;
if (((sum * 100000000) > stopprofit) || ((sum * 100000000) < stoploss)){
console.log("Script stopped");
state = 0;
alert("Script stopped, " + " Profit = " + sum.toFixed(8).toString());
location.reload();
}
}
/*if (choice == null || choice == "") {
choice = "hi";
} else {
}*/
body.prepend(
$('
.append(
$('
.append($('
text-align: center').text("Donate:"))
.append($('
text-align: center').text("1Jh72g1dBtnKjvP9wC4KSbEdVGNfpD8mDc"))
.append($('
text-align: center').text("Click to copy"))
.append($('
')
)
).click(function(){
var
body.append($temp);
$temp.select();
document.execCommand("copy");
$temp.remove();
})
).prepend($('<style/>')
.text("#autofaucet p { margin: 0; margin-left: 0px; text-align: center; }")
)
document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString();
$('#double_your_btc_bet_' + hi + '_button').click();
function main(n) {
function timer(){ // create a unique function (scope) each time
var k = i; // save i to the variable k
setTimeout(()=>{
if (state == 0){
return;
}else{
if (k % 2 == 0){
//console.log ("rolling high ..");
rollDice("hi");
}else{
//console.log ("rolling low ..");
rollDice("lo");
}
console.log ("Profit = " + sum.toFixed(8).toString());
}
},i*getRandomWait());
}
timer();
}
for(var i = 1; i < roll; i++) {
main(i);
}
hi
thanks for this code
Why do we receive one BTC when it is won and two BTC are deducted when it is lost?
Hey mate, I have some algorithmics, I want to add inside to script. We can work together in this one.
Thank you for all
Hey guys im new here.... I need a good script for level up my few satoshis please π π π π π
Also im not a programe can some one splane me how to use this codes π π π π π π
@Justinachristine has anybody replied to you? i'd be interested to kno the implementation of this script as well.
Discovering that I had fallen victim to a phishing scam, losing $10,000 to an imposter who posed as a seller of a house, was a devastating blow to my sense of security and trust. It felt as though the ground had been pulled out from under me, leaving me stranded in a whirlwind of confusion and disbelief. However, amid the chaos and despair, a ray of hope emerged in the form of ADRIAN LAMO HACKER. Their prompt response and unwavering help provided hope. From our initial contact, their team radiated competence, efficiency, and empathy, guiding me through the intricate process of recovering my lost funds with patience and understanding. What distinguished ADRIAN LAMO HACKER from other recovery services I had encountered was their unwavering commitment to their clients' well-being. Not only did they focus on retrieving my lost funds, but they also offered invaluable advice on fortifying defenses against future phishing scams, equipping me with the knowledge and tools needed to navigate the digital landscape securely. Through their expertise and steadfast support, ADRIAN LAMO HACKER not only facilitated the retrieval of my stolen funds but also reignited my belief in the power of resilience and perseverance. Their dedication to their clients' success was palpable in every interaction, instilling in me a renewed sense of hope and determination for the road ahead am filled with profound gratitude for the unwavering assistance provided by ADRIAN LAMO. Their efficiency, and compassion were instrumental in transforming what could have been a crippling setback into a testament to the resilience of the human spirit. For anyone grappling with this scam of falling victim to a phishing scam, losing valuable assets to deceitful schemes, I wholeheartedly endorse the services of ADRIAN LAMO HACKER. Their expertise, dedication, and unwavering support make them a trusted ally in the battle against digital deception. With their guidance, one can emerge from adversity stronger, wiser, and more resilient than ever before.
Reach out to ADRIAN LAMO HACKER via email: Adrianlamo@ consultant. com/ Telegram: @ADRIANLAMOHACKERTECH
bravo. Thank u. good job. Can u please write how change your script so that bet only high or low, not alternative. and one more thing again, when win or lose press ok after it script bets again final roll,how turn off insettings the final rill? movielike@mail.ru thanks