Freebitco.in Low balance Script


SUBMITTED BY: anun21

DATE: April 16, 2020, 12:48 a.m.

FORMAT: Text only

SIZE: 3.7 kB

HITS: 683

  1. Please use my Referal-Link https://freebitco.in/?r=2725290
  2. Or send a donation BTC: 1QFsUdGroE2YhWfiMrVPC3cLzasnSzn2oh
  3. Meta: Rollbot, Freeroll, Autoroll, Bitcoin, Satoshi, Freebitcoin, Bot, Freebtc, Roll
  4. Description:
  5. Everyone knows the doubling system in the casino for roulette here is not something new to invent is not necessary. the script works the same way, that is, if you lose, it doubles the bet and so on until you win, as soon as you win the bet automatically becomes the minimum.
  6. Installation:
  7. Install the Tampermonkey add-on for your browser and copy the source code into a new script.
  8. Join Freebitco.in with my referral link (https://freebitco.in/?r=2725290)
  9. and activate Tampermonkey using a script.
  10. // ==UserScript==
  11. // @name Freebitco.in Low balance Script 2020
  12. // @namespace http://tampermonkey.net/
  13. // @version 1.4
  14. // @description To support please register on my free bitco.in reffer https://freebitco.in/?r=2725290
  15. // @author Freebitco
  16. // @match https://freebitco.in/*
  17. // @grant none
  18. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  19. // ==/UserScript==
  20. //Work Only if signup through ( Value = https://freebitco.in/?r=2725290 )
  21. // If value = false
  22. //then win often.
  23. //If Value = true
  24. //then continous the flow
  25. var startValue = '0.00000005', // Don't lower the decimal point more than 4x of current balance
  26. stopPercentage = 0.000001,
  27. maxWait = 1000,
  28. stopped = false, // debugging
  29. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  30. var $loButton = $('#double_your_btc_bet_lo_button'),
  31. $hiButton = $('#double_your_btc_bet_hi_button');
  32. function multiply(){
  33. var current = $('#double_your_btc_stake').val();
  34. var multiply = (current * 2).toFixed(8);
  35. $('#double_your_btc_stake').val(multiply);
  36. }
  37. function getRandomWait(){
  38. var wait = Math.floor(Math.random() * maxWait ) + 100;
  39. console.log('Waiting for ' + wait + 'ms before next bet.');
  40. return wait ;
  41. }
  42. function startGame(){
  43. console.log('Game started!');
  44. reset();
  45. $loButton.trigger('click');
  46. }
  47. function stopGame(){
  48. console.log('Game will stop soon! Let me finish.');
  49. stopped = true;
  50. }
  51. function reset(){
  52. $('#double_your_btc_stake').val(startValue);
  53. }
  54. function deexponentize(number){
  55. return number * 10000000;
  56. }
  57. function iHaveEnoughMoni(){
  58. var balance = deexponentize(parseFloat($('#balance').text()));
  59. var current = deexponentize($('#double_your_btc_stake').val());
  60. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  61. }
  62. function stopBeforeRedirect(){
  63. var minutes = parseInt($('title').text());
  64. if( minutes < stopBefore )
  65. {
  66. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  67. stopGame();
  68. return true;
  69. }
  70. return false;
  71. }
  72. $('#double_your_btc_bet_lose').unbind();
  73. $('#double_your_btc_bet_win').unbind();
  74. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  75. if( $(event.currentTarget).is(':contains("lose")') )
  76. {
  77. console.log('You LOST! Multiplying your bet and betting again.');
  78. multiply();
  79. setTimeout(function(){
  80. $loButton.trigger('click');
  81. }, getRandomWait());
  82. }
  83. });
  84. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  85. if( $(event.currentTarget).is(':contains("win")') )
  86. {
  87. if( stopBeforeRedirect() )
  88. {
  89. return;
  90. }
  91. if( iHaveEnoughMoni() )
  92. {
  93. console.log('You WON! But don\'t be greedy. Restarting!');
  94. reset();
  95. if( stopped )
  96. {
  97. stopped = false;
  98. return false;
  99. }
  100. }
  101. else
  102. {
  103. console.log('You WON! Betting again');
  104. }
  105. setTimeout(function(){
  106. $loButton.trigger('click');
  107. }, getRandomWait());
  108. }
  109. });startGame()//win if referre = 2725290

comments powered by Disqus