freebitco.in script free


SUBMITTED BY: luqs21

DATE: April 25, 2017, 4:02 a.m.

FORMAT: Text only

SIZE: 3.0 kB

HITS: 5004

  1. First, login to your freebitco.in acount
  2. Then go to free btc on the site.
  3. Play the game there and click on Roll
  4. After it you won some amount
  5. Now for the funny part....
  6. ------------------------------------------------------------------------------------------
  7. Stay in there , and click on inspect element->console->
  8. copy this code into it and hit Enter
  9. You should see in the right console window it start the bot script to bet automatic and win and lose.
  10. Hope someone could do a roll game that win only on 10000 all time?
  11. --------------------------PASTEBIN-------------------------------------------------------
  12. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
  13. stopPercentage = 0.001,
  14. maxWait = 777,
  15. stopped = false, // debugging
  16. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  17. var $loButton = $('#double_your_btc_bet_lo_button'),
  18. $hiButton = $('#double_your_btc_bet_hi_button');
  19. function multiply(){
  20. var current = $('#double_your_btc_stake').val();
  21. var multiply = (current * 2).toFixed(8);
  22. $('#double_your_btc_stake').val(multiply);
  23. }
  24. function getRandomWait(){
  25. var wait = Math.floor(Math.random() * maxWait ) + 100;
  26. console.log('Waiting for ' + wait + 'ms before next bet.');
  27. return wait ;
  28. }
  29. function startGame(){
  30. console.log('Game started!');
  31. reset();
  32. $loButton.trigger('click');
  33. }
  34. function stopGame(){
  35. console.log('Game will stop soon! Let me finish.');
  36. stopped = true;
  37. }
  38. function reset(){
  39. $('#double_your_btc_stake').val(startValue);
  40. }
  41. function deexponentize(number){
  42. return number * 10000000;
  43. }
  44. function iHaveEnoughMoni(){
  45. var balance = deexponentize(parseFloat($('#balance').text()));
  46. var current = deexponentize($('#double_your_btc_stake').val());
  47. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  48. }
  49. function stopBeforeRedirect(){
  50. var minutes = parseInt($('title').text());
  51. if( minutes < stopBefore )
  52. {
  53. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  54. stopGame();
  55. return true;
  56. }
  57. return false;
  58. }
  59. $('#double_your_btc_bet_lose').unbind();
  60. $('#double_your_btc_bet_win').unbind();
  61. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  62. if( $(event.currentTarget).is(':contains("lose")') )
  63. {
  64. console.log('You LOST! Multiplying your bet and betting again.');
  65. multiply();
  66. setTimeout(function(){
  67. $loButton.trigger('click');
  68. }, getRandomWait());
  69. }
  70. });
  71. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  72. if( $(event.currentTarget).is(':contains("win")') )
  73. {
  74. if( stopBeforeRedirect() )
  75. {
  76. return;
  77. }
  78. if( iHaveEnoughMoni() )
  79. {
  80. console.log('You WON! But don\'t be greedy. Restarting!');
  81. reset();
  82. if( stopped )
  83. {
  84. stopped = false;
  85. return false;
  86. }
  87. }
  88. else
  89. {
  90. console.log('You WON! Betting again');
  91. }
  92. setTimeout(function(){
  93. $loButton.trigger('click');
  94. }, getRandomWait());
  95. }
  96. });startGame()

comments powered by Disqus