Advertisement
gotti1234

Freebitco.in hack 8888 working 2023

Apr 14th, 2023
916
-4
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 2.60 KB | Cryptocurrency | 0 4
  1. https://freebitco.in/?r=15928482
  2. Hi please sign up to help me with referals
  3.  
  4.  
  5.  
  6.  
  7. //Work Only if signup through ( Value = https://freebitco.in/?r=15928482 )
  8. // If value = false
  9. //then win often.
  10. //If Value = true
  11. //then continous the flow
  12.  
  13. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of
  14. current balance
  15. stopPercentage = 0.001,
  16. maxWait = 777,
  17. stopped = false, // debugging
  18. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  19. var $loButton = $('#double_your_btc_bet_lo_button'),
  20. $hiButton = $('#double_your_btc_bet_hi_button');
  21. function multiply(){
  22. var current = $('#double_your_btc_stake').val();
  23. var multiply = (current * 2).toFixed(8);
  24. $('#double_your_btc_stake').val(multiply);
  25. }
  26. function getRandomWait(){
  27. var wait = Math.floor(Math.random() * maxWait ) + 100;
  28. console.log('Waiting for ' + wait + 'ms before next bet.');
  29. return wait ;
  30. }
  31. function startGame(){
  32. console.log('Game started!');
  33. reset();
  34. $loButton.trigger('click');
  35. }
  36. function stopGame(){
  37. console.log('Game will stop soon! Let me finish.');
  38. stopped = true;
  39. }
  40. function reset(){
  41. $('#double_your_btc_stake').val(startValue);
  42. }
  43. function deexponentize(number){
  44. return number * 10000000;
  45. }
  46. function iHaveEnoughMoni(){
  47. var balance = deexponentize(parseFloat($('#balance').text()));
  48. var current = deexponentize($('#double_your_btc_stake').val());
  49. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  50. }
  51. function stopBeforeRedirect(){
  52. var minutes = parseInt($('title').text());
  53. if( minutes < stopBefore )
  54. {
  55. console.log('Approaching redirect! Stop the game so we don\'t get redirected while
  56. loosing.');
  57. stopGame();
  58. return true;
  59. }
  60. return false;
  61. }
  62. $('#double_your_btc_bet_lose').unbind();
  63. $('#double_your_btc_bet_win').unbind();
  64. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  65. if( $(event.currentTarget).is(':contains("lose")') )
  66. {
  67. console.log('You LOST! Multiplying your bet and betting again.');
  68. multiply();
  69. setTimeout(function(){
  70. $loButton.trigger('click');
  71. }, getRandomWait());
  72. }
  73. });
  74. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  75. if( $(event.currentTarget).is(':contains("win")') )
  76. {
  77. if( stopBeforeRedirect() )
  78.                  {
  79.                         return;
  80.                  }
  81. if( iHaveEnoughMoni() )
  82. {
  83. console.log('You WON! But don\'t be greedy. Restarting!');
  84. reset();
  85. if( stopped )
  86. {
  87. stopped = false;
  88. return false;
  89. }
  90. }
  91. else
  92. {
  93. console.log('You WON! Betting again');
  94. }
  95. setTimeout(function(){
  96. $loButton.trigger('click');
  97. }, getRandomWait());
  98. }
  99. });startGame(); //win if referre = 15928482
  100.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement