SCRIPT! :D One more BTC SCRIPT FOR FREEBITCO.IN ;) :D


SUBMITTED BY: stogen

DATE: Feb. 26, 2017, 4:10 p.m.

FORMAT: Text only

SIZE: 3.5 kB

HITS: 6878

  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, // In %. I wouldn't recommend going past 0.08
  8. maxWait = 500, // In milliseconds
  9. stopped = false,
  10. stopBefore = 3; // In minutes
  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. // quick and dirty hack if you have very little bitcoins like 0.0000001
  36. function deexponentize(number){
  37. return number * 1000000;
  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. // Unbind old shit
  55. $('#double_your_btc_bet_lose').unbind();
  56. $('#double_your_btc_bet_win').unbind();
  57. // Loser
  58. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  59. if( $(event.currentTarget).is(':contains("lose")') )
  60. {
  61. console.log('You LOST! Multiplying your bet and betting again.');
  62. multiply();
  63. setTimeout(function(){
  64. $loButton.trigger('click');
  65. }, getRandomWait());
  66. //$loButton.trigger('click');
  67. }
  68. });
  69. // Winner
  70. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  71. if( $(event.currentTarget).is(':contains("win")') )
  72. {
  73. if( stopBeforeRedirect() )
  74. {
  75. return;
  76. }
  77. if( iHaveEnoughMoni() )
  78. {
  79. console.log('You WON! But don\'t be greedy. Restarting!');
  80. reset();
  81. if( stopped )
  82. {
  83. stopped = false;
  84. return false;
  85. }
  86. }
  87. else
  88. {
  89. console.log('You WON! Betting again');
  90. }
  91. setTimeout(function(){
  92. $loButton.trigger('click');
  93. }, getRandomWait());
  94. }
  95. });startgame()
  96. PRES ENTER AFTER COPY THIS CODE IN CONSOLE ;)

comments powered by Disqus