Freebitco.in best script to play Multiply odd 1.5 win chance 63% (NOT FOR LOW BALANCE)

Play with higher chance , READ FIRST

  1. // ==UserScript==
  2. // @name Freebitco.in best script to play Multiply odd 1.5 win chance 63% (NOT FOR LOW BALANCE)
  3. // @description Play with higher chance , READ FIRST
  4. // @include https://freebitco.in/*
  5. // @copyright 2020, makaaymen@gmail.com
  6. // @namespace AnarchyHS
  7. // @version 0.0.1.20200327174003
  8. // ==/UserScript==
  9.  
  10.  
  11. bconfig = {
  12. minWait: 3000,
  13. maxWait : 5000,
  14. odd : 1.5,
  15. bet : 0.00000002
  16. };
  17.  
  18.  
  19.  
  20.  
  21. //***********************************
  22. var add = bconfig.bet;
  23. var x = add;
  24. var choice;
  25. var body = $('body');
  26. var maxWait = bconfig.maxWait;
  27. var minWait = bconfig.minWait;
  28. var c = 1;
  29. var roll;
  30. var hi = "hi";
  31. var lo = "lo";
  32. var sum = 0.00000000;
  33. var stopprofit = 1.00000000;
  34. var stoploss = -1.00000000;
  35. var y = 1;
  36. var state = 1 ;
  37. //*********************************
  38.  
  39.  
  40. var choiceroll = prompt("Please enter number of rolls", "10");
  41. roll = parseInt(choiceroll, 10);
  42.  
  43. var rp = confirm("Do you want to stop the script on PROFIT");
  44. if (rp == true) {
  45. var choiceprofit= prompt("Please enter a value in Satoshi", "100");
  46. stopprofit = parseInt(choiceprofit, 10);
  47. }
  48.  
  49. var rl = confirm("Do you want to stop the script on LOSS");
  50. if (rl == true) {
  51. var choiceloss= prompt("Please enter a negative value in Satoshi", "-50");
  52. stoploss = parseInt(choiceloss, 10);
  53. }
  54.  
  55. function getRandomWait() {
  56. var wait;
  57. do {
  58. wait = Math.floor(Math.random() * maxWait) + 100;
  59. }
  60. while (wait < minWait);
  61. console.log(wait);
  62. return wait;
  63. }
  64.  
  65. var init_balance = $('#balance').html();
  66. document.getElementById("double_your_btc_payout_multiplier").value = "1.5";
  67.  
  68. rollDice = function(choice) {
  69. var balance = $('#balance').html();
  70. if (x < 0.00000001) {
  71. x = add;
  72. document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString();
  73. }
  74. var lenLose = $('#double_your_btc_bet_lose').html().length;
  75. //console.log(lenLose);
  76. var lenWin = $('#double_your_btc_bet_win').html().length;
  77. //console.log(lenWin);
  78. if (lenLose > 36 && lenWin == 0 && state == 1) {
  79. lenWin = 0;
  80. lenLose = 0;
  81. //x = x + add;
  82. y = y * 3;
  83. x = add * y;
  84. document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString();
  85. $('#double_your_btc_bet_' + choice + '_button').click();
  86. }else if (lenWin > 36 && lenLose == 0 && state == 1){
  87. lenWin = 0;
  88. lenLose = 0;
  89. if (x >= add * bconfig.odd * 2 ) {
  90. y = 1;
  91. x = add * y;
  92. document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString();
  93. }
  94. $('#double_your_btc_bet_' + choice + '_button').click();
  95. }
  96. c++;
  97. console.log("Roll number :"+c);
  98. sum = parseFloat(balance) - parseFloat(init_balance) ;
  99.  
  100.  
  101.  
  102. if (((sum * 100000000) > stopprofit) || ((sum * 100000000) < stoploss)){
  103. console.log("Script stopped");
  104. state = 0;
  105. alert("Script stopped, " + " Profit = " + sum.toFixed(8).toString());
  106. location.reload();
  107. }
  108. }
  109.  
  110. /*if (choice == null || choice == "") {
  111. choice = "hi";
  112. } else {
  113. }*/
  114. body.prepend(
  115. $('<div/>').attr('style',"position:fixed;top:50px;left:0;z-index:999;width:400px;background-color:#227d5c;color: white; text-align: center;")
  116. .append(
  117. $('<div/>').attr('id','autofaucet')
  118. .append($('<p/> text-align: center').text("Donate:"))
  119. .append($('<p/> text-align: center').text("1Jh72g1dBtnKjvP9wC4KSbEdVGNfpD8mDc"))
  120. .append($('<p/> text-align: center').text("Click to copy"))
  121. .append($('<p/>')
  122. )
  123. ).click(function(){
  124. var $temp = $('<input>').val("1Jh72g1dBtnKjvP9wC4KSbEdVGNfpD8mDc");
  125. body.append($temp);
  126. $temp.select();
  127. document.execCommand("copy");
  128. $temp.remove();
  129. })
  130. ).prepend($('<style/>')
  131. .text("#autofaucet p { margin: 0; margin-left: 0px; text-align: center; }")
  132. )
  133.  
  134. document.getElementById("double_your_btc_stake").value = x.toFixed(8).toString();
  135. $('#double_your_btc_bet_' + hi + '_button').click();
  136.  
  137.  
  138.  
  139. function main(n) {
  140. function timer(){ // create a unique function (scope) each time
  141. var k = i; // save i to the variable k
  142. setTimeout(()=>{
  143. if (state == 0){
  144. return;
  145. }else{
  146. if (k % 2 == 0){
  147. //console.log ("rolling high ..");
  148. rollDice("hi");
  149. }else{
  150. //console.log ("rolling low ..");
  151. rollDice("lo");
  152. }
  153. console.log ("Profit = " + sum.toFixed(8).toString());
  154. }
  155. },i*getRandomWait());
  156. }
  157. timer();
  158. }
  159.  
  160. for(var i = 1; i < roll; i++) {
  161. main(i);
  162. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址