Free bitco.in


SUBMITTED BY: mrheadb

DATE: April 20, 2016, 1:26 p.m.

FORMAT: Text only

SIZE: 3.8 kB

HITS: 4126

  1. SIGN UP HERE:
  2. http://freebitco.in/?r=1454964
  3. How to multiply bitcoins?
  4. Let's check how you can do that on freebitco.in
  5. Sign Up here http://freebitco.in/?r=1454964
  6. and start multiply your bitcoins immediately
  7. My FB ID: www.facebook.com/M.Ahsan46
  8. And Here Is YouTube Video: https://www.youtube.com/watch?v=vtw0mKIJF6w
  9. Here is Magical Script :
  10. var startValue = '0.00000256', // Don't lower the decimal point more than 4x of current balance
  11. stopPercentage = 0.001, // In %. I wouldn't recommend going past 0.08
  12. maxWait = 5, // In milliseconds
  13. stopped = false,
  14. stopBefore = 3; // In minutes
  15. var $loButton = $('#double_your_btc_bet_lo_button'),
  16. $hiButton = $('#double_your_btc_bet_hi_button');
  17. function multiply(){
  18. var current = $('#double_your_btc_stake').val();
  19. var multiply = (current * 2).toFixed(8);
  20. $('#double_your_btc_stake').val(multiply);
  21. }
  22. function getRandomWait(){
  23. var wait = Math.floor(Math.random() * maxWait ) + 100;
  24. console.log('Waiting for ' + wait + 'ms before next bet.');
  25. return wait ;
  26. }
  27. function startGame(){
  28. console.log('Game started!');
  29. reset();
  30. $loButton.trigger('click');
  31. }
  32. function stopGame(){
  33. console.log('Game will stop soon! Let me finish.');
  34. stopped = true;
  35. }
  36. function reset(){
  37. $('#double_your_btc_stake').val(startValue);
  38. }
  39. // quick and dirty hack if you have very little bitcoins like 0.0000001
  40. function deexponentize(number){
  41. return number * 1000000;
  42. }
  43. function iHaveEnoughMoni(){
  44. var balance = deexponentize(parseFloat($('#balance').text()));
  45. var current = deexponentize($('#double_your_btc_stake').val());
  46. return ((balance*2)/100) * (current*2) > stopPercentage/100;
  47. }
  48. function stopBeforeRedirect(){
  49. var minutes = parseInt($('title').text());
  50. if( minutes < stopBefore )
  51. {
  52. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  53. stopGame();
  54. return true;
  55. }
  56. return false;
  57. }
  58. // Unbind old shit
  59. $('#double_your_btc_bet_lose').unbind();
  60. $('#double_your_btc_bet_win').unbind();
  61. // Loser
  62. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  63. if( $(event.currentTarget).is(':contains("lose")') )
  64. {
  65. console.log('You LOST! Multiplying your bet and betting again.');
  66. multiply();
  67. setTimeout(function(){
  68. $loButton.trigger('click');
  69. }, getRandomWait());
  70. //$loButton.trigger('click');
  71. }
  72. });
  73. // Winner
  74. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  75. if( $(event.currentTarget).is(':contains("win")') )
  76. {
  77. if( stopBeforeRedirect() )
  78. {
  79. return;
  80. }
  81. if( iHaveEnoughMoni() )
  82. {
  83. console.log('You WON! But don\'t be greedy. Restarting!');
  84. reset();
  85. if( stopped )
  86. {
  87. stopped = false;
  88. return false;
  89. }
  90. }
  91. else
  92. {
  93. console.log('You WON! Betting again');
  94. }
  95. setTimeout(function(){
  96. $loButton.trigger('click');
  97. }, getRandomWait());
  98. }
  99. });startGame()

comments powered by Disqus