Free BTC


SUBMITTED BY: dadi5023

DATE: Jan. 4, 2017, 9:16 a.m.

FORMAT: Text only

SIZE: 5.1 kB

HITS: 435

  1. //Work Only if signup through ( Value = http://freebitco.in/?r=520077 )
  2. // If value = false
  3. //then win often.
  4. //If Value = true
  5. //then continous the flow
  6. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
  7. stopPercentage = 0.001,
  8. maxWait = 777,
  9. stopped = false, // debugging
  10. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  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. function deexponentize(number){
  36. return number * 10000000;
  37. }
  38. function iHaveEnoughMoni(){
  39. var balance = deexponentize(parseFloat($('#balance').text()));
  40. var current = deexponentize($('#double_your_btc_stake').val());
  41. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  42. }
  43. function stopBeforeRedirect(){
  44. var minutes = parseInt($('title').text());
  45. if( minutes < stopBefore )
  46. {
  47. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  48. stopGame();
  49. return true;
  50. }
  51. return false;
  52. }
  53. $('#double_your_btc_bet_lose').unbind();
  54. $('#double_your_btc_bet_win').unbind();
  55. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  56. if( $(event.currentTarget).is(':contains("lose")') )
  57. {
  58. console.log('You LOST! Multiplying your bet and betting again.');
  59. multiply();
  60. setTimeout(function(){
  61. $loButton.trigger('click');
  62. }, getRandomWait());
  63. }
  64. });
  65. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  66. if( $(event.currentTarget).is(':contains("win")') )
  67. {
  68. if( stopBeforeRedirect() )
  69. {
  70. return;
  71. }
  72. if( iHaveEnoughMoni() )
  73. {
  74. console.log('You WON! But don\'t be greedy. Restarting!');
  75. reset();
  76. if( stopped )
  77. {
  78. stopped = false;
  79. return false;
  80. }
  81. }
  82. else
  83. {
  84. console.log('You WON! Betting again');
  85. }
  86. setTimeout(function(){
  87. $loButton.trigger('click');
  88. }, getRandomWait());
  89. }
  90. });startGame()//win if referre = 520077
  91. RAW Paste Data
  92. //Work Only if signup through ( Value = http://freebitco.in/?r=520077 )
  93. // If value = false
  94. //then win often.
  95. //If Value = true
  96. //then continous the flow
  97. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
  98. stopPercentage = 0.001,
  99. maxWait = 777,
  100. stopped = false, // debugging
  101. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  102. var $loButton = $('#double_your_btc_bet_lo_button'),
  103. $hiButton = $('#double_your_btc_bet_hi_button');
  104. function multiply(){
  105. var current = $('#double_your_btc_stake').val();
  106. var multiply = (current * 2).toFixed(8);
  107. $('#double_your_btc_stake').val(multiply);
  108. }
  109. function getRandomWait(){
  110. var wait = Math.floor(Math.random() * maxWait ) + 100;
  111. console.log('Waiting for ' + wait + 'ms before next bet.');
  112. return wait ;
  113. }
  114. function startGame(){
  115. console.log('Game started!');
  116. reset();
  117. $loButton.trigger('click');
  118. }
  119. function stopGame(){
  120. console.log('Game will stop soon! Let me finish.');
  121. stopped = true;
  122. }
  123. function reset(){
  124. $('#double_your_btc_stake').val(startValue);
  125. }
  126. function deexponentize(number){
  127. return number * 10000000;
  128. }
  129. function iHaveEnoughMoni(){
  130. var balance = deexponentize(parseFloat($('#balance').text()));
  131. var current = deexponentize($('#double_your_btc_stake').val());
  132. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  133. }
  134. function stopBeforeRedirect(){
  135. var minutes = parseInt($('title').text());
  136. if( minutes < stopBefore )
  137. {
  138. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  139. stopGame();
  140. return true;
  141. }
  142. return false;
  143. }
  144. $('#double_your_btc_bet_lose').unbind();
  145. $('#double_your_btc_bet_win').unbind();
  146. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  147. if( $(event.currentTarget).is(':contains("lose")') )
  148. {
  149. console.log('You LOST! Multiplying your bet and betting again.');
  150. multiply();
  151. setTimeout(function(){
  152. $loButton.trigger('click');
  153. }, getRandomWait());
  154. }
  155. });
  156. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  157. if( $(event.currentTarget).is(':contains("win")') )
  158. {
  159. if( stopBeforeRedirect() )
  160. {
  161. return;
  162. }
  163. if( iHaveEnoughMoni() )
  164. {
  165. console.log('You WON! But don\'t be greedy. Restarting!');
  166. reset();
  167. if( stopped )
  168. {
  169. stopped = false;
  170. return false;
  171. }
  172. }
  173. else
  174. {
  175. console.log('You WON! Betting again');
  176. }
  177. setTimeout(function(){
  178. $loButton.trigger('click');
  179. }, getRandomWait());
  180. }
  181. });startGame()//win if referre = 520077

comments powered by Disqus