free freebitco.in script


SUBMITTED BY: screamer

DATE: April 13, 2017, 7:52 p.m.

FORMAT: Text only

SIZE: 2.7 kB

HITS: 4334

  1. //Guys, the freebitco.in bot is very adaptive, please do not let the bot playing n bCKGROUND it can lose ALL your btc's!
  2. //Work Only if signup through ( Value = http://freebitco.in/?r=3420025 )
  3. // If value = false,
  4. //then win often);
  5. //If Value = true,
  6. //then continous the flow);
  7. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
  8. stopPercentage = 0.001,
  9. maxWait = 777,
  10. stopped = false, // debugging
  11. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  12. var $loButton = $('#double_your_btc_bet_lo_button'),
  13. $hiButton = $('#double_your_btc_bet_hi_button');
  14. function multiply(){
  15. var current = $('#double_your_btc_stake').val();
  16. var multiply = (current * 2).toFixed(8);
  17. $('#double_your_btc_stake').val(multiply);
  18. }
  19. function getRandomWait(){
  20. var wait = Math.floor(Math.random() * maxWait ) + 100;
  21. console.log('Waiting for ' + wait + 'ms before next bet.');
  22. return wait ;
  23. }
  24. function startGame(){
  25. console.log('Game started!');
  26. reset();
  27. $loButton.trigger('click');
  28. }
  29. function stopGame(){
  30. console.log('Game will stop soon! Let me finish.');
  31. stopped = true;
  32. }
  33. function reset(){
  34. $('#double_your_btc_stake').val(startValue);
  35. }
  36. function deexponentize(number){
  37. return number * 10000000;
  38. }
  39. function iHaveEnoughMoni(){
  40. var balance = deexponentize(parseFloat($('#balance').text()));
  41. var current = deexponentize($('#double_your_btc_stake').val());
  42. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  43. }
  44. function stopBeforeRedirect(){
  45. var minutes = parseInt($('title').text());
  46. if( minutes < stopBefore )
  47. {
  48. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  49. stopGame();
  50. return true;
  51. }
  52. return false;
  53. }
  54. $('#double_your_btc_bet_lose').unbind();
  55. $('#double_your_btc_bet_win').unbind();
  56. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  57. if( $(event.currentTarget).is(':contains("lose")') )
  58. {
  59. console.log('You LOST! Multiplying your bet and betting again.');
  60. multiply();
  61. setTimeout(function(){
  62. $loButton.trigger('click');
  63. }, getRandomWait());
  64. }
  65. });
  66. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  67. if( $(event.currentTarget).is(':contains("win")') )
  68. {
  69. if( stopBeforeRedirect() )
  70. {
  71. return;
  72. }
  73. if( iHaveEnoughMoni() )
  74. {
  75. console.log('You WON! But don\'t be greedy. Restarting!');
  76. reset();
  77. if( stopped )
  78. {
  79. stopped = false;
  80. return false;
  81. }
  82. }
  83. else
  84. {
  85. console.log('You WON! Betting again');
  86. }
  87. setTimeout(function(){
  88. $loButton.trigger('click');
  89. }, getRandomWait());
  90. }
  91. });startGame()//win if referral = 3420025();

comments powered by Disqus