Win up to 0.08 Bitcoin per script use


SUBMITTED BY: godsend

DATE: Feb. 12, 2021, 3:12 p.m.

FORMAT: Text only

SIZE: 2.9 kB

HITS: 479

  1. Win up to 0.08 per script use, DO NOT TRY TO EXCEED 0.08 IN ANY-ONE HOUR PERIOD, REFRESH THE SCRIPT UPON HITTING THE 0.08 WIN THEN REST IT A WHILE. Gratitude donations here: 18e1561MhqrJwmb4tXuCU3V9cGtb3yJCSx
  2. // ==UserScript==
  3. // @name freebitco.in
  4. // @description Hack
  5. // @include https://freebitco.in/?r=37068028
  6. // @copyright 2020
  7. // ==/UserScript== Copy and paste under this into elements console.
  8. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
  9. stopPercentage = 0.001, // In %. I wouldn't recommend going past 0.08
  10. maxWait = 500, // In milliseconds
  11. stopped = false,
  12. stopBefore = 3; // In minutes
  13. var $loButton = $('#double_your_btc_bet_lo_button'),
  14. $hiButton = $('#double_your_btc_bet_hi_button');
  15. function multiply(){
  16. var current = $('#double_your_btc_stake').val();
  17. var multiply = (current * 2).toFixed(8);
  18. $('#double_your_btc_stake').val(multiply);
  19. }
  20. function getRandomWait(){
  21. var wait = Math.floor(Math.random() * maxWait ) + 100;
  22. console.log('Waiting for ' + wait + 'ms before next bet.');
  23. return wait ;
  24. }
  25. function startGame(){
  26. console.log('Game started!');
  27. reset();
  28. $loButton.trigger('click');
  29. }
  30. function stopGame(){
  31. console.log('Game will stop soon! Let me finish.');
  32. stopped = true;
  33. }
  34. function reset(){
  35. $('#double_your_btc_stake').val(startValue);
  36. }
  37. // quick and dirty hack if you have very little bitcoins like 0.0000001
  38. function deexponentize(number){
  39. return number * 1000000;
  40. }
  41. function iHaveEnoughMoni(){
  42. var balance = deexponentize(parseFloat($('#balance').text()));
  43. var current = deexponentize($('#double_your_btc_stake').val());
  44. return ((balance*2)/100) * (current*2) > stopPercentage/100;
  45. }
  46. function stopBeforeRedirect(){
  47. var minutes = parseInt($('title').text());
  48. if( minutes < stopBefore )
  49. {
  50. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  51. stopGame();
  52. return true;
  53. }
  54. return false;
  55. }
  56. // Unbind old shit
  57. $('#double_your_btc_bet_lose').unbind();
  58. $('#double_your_btc_bet_win').unbind();
  59. // Loser
  60. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  61. if( $(event.currentTarget).is(':contains("lose")') )
  62. {
  63. console.log('You LOST! Multiplying your bet and betting again.');
  64. multiply();
  65. setTimeout(function(){
  66. $loButton.trigger('click');
  67. }, getRandomWait());
  68. //$loButton.trigger('click');
  69. }
  70. });
  71. // Winner
  72. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  73. if( $(event.currentTarget).is(':contains("win")') )
  74. {
  75. if( stopBeforeRedirect() )
  76. {
  77. return;
  78. }
  79. if( iHaveEnoughMoni() )
  80. {
  81. console.log('You WON! But don\'t be greedy. Restarting!');
  82. reset();
  83. if( stopped )
  84. {
  85. stopped = false;
  86. return false;
  87. }
  88. }
  89. else
  90. {
  91. console.log('You WON! Betting again');
  92. }
  93. setTimeout(function(){
  94. $loButton.trigger('click');
  95. }, getRandomWait());
  96. }
  97. });

comments powered by Disqus