THE BEST SCRIPT FOR BTC!! :D i see u ;)


SUBMITTED BY: stogen

DATE: Feb. 25, 2017, 8:13 p.m.

FORMAT: Text only

SIZE: 2.6 kB

HITS: 12942

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

comments powered by Disqus