Scrypt for Freebitco.in YOU WILL NEVER LOSE!!!


SUBMITTED BY: Guest

DATE: March 10, 2017, 1:43 p.m.

FORMAT: Text only

SIZE: 2.8 kB

HITS: 611

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

comments powered by Disqus