new freebitco.in


SUBMITTED BY: luqs21

DATE: April 30, 2017, 4:25 p.m.

FORMAT: Text only

SIZE: 2.7 kB

HITS: 1273

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

comments powered by Disqus