New Freebitco Roll Hi Script Semi Auto


SUBMITTED BY: luthfi234

DATE: April 18, 2017, 4:46 p.m.

FORMAT: Text only

SIZE: 2.8 kB

HITS: 188

  1. Freebitco Roll Hi Script 1000% Safe Script 1000% Working
  2. whats new on this script :
  3. - Semi Auto Script not fully automatic
  4. - Stop on Profit
  5. - Manual Restart
  6. - Fix Start Value and Stop Profit Value
  7. - Faster speed so that will deliver more profits to your balance
  8. Warning!! Not recomended for use on balance under 0.00001!!!
  9. var startValue = '0.00000002', // Don't lower the decimal point more than 4x of current balance
  10. stopPercentage = 50.00,
  11. maxWait = 077,
  12. stopped = true, // debugging
  13. stopBettingAfterProfit = 0.00000002, // In Profit Value
  14. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  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. $hiButton.trigger('click');
  31. }
  32. function stopGameAfterProfit(){
  33. ('stop_after_profit_value').val(value >='0.00000002')
  34. console.log('Game will stop soon! Let me finish.');
  35. stopped = true;
  36. }
  37. function reset(){
  38. $('#double_your_btc_stake').val(startValue);
  39. }
  40. function deexponentize(number){
  41. return number * 10000000;
  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. $('#double_your_btc_bet_lose').unbind();
  59. $('#double_your_btc_bet_win').unbind();
  60. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  61. if( $(event.currentTarget).is(':contains("lose")') )
  62. {
  63. console.log('You LOST! Multiplying your bet and betting again.');
  64. multiply();
  65. setTimeout(function(){
  66. $hiButton.trigger('click');
  67. }, getRandomWait());
  68. }
  69. });
  70. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  71. if( $(event.currentTarget).is(':contains("win")') )
  72. {
  73. if( stopBeforeRedirect() )
  74. {
  75. return;
  76. }
  77. if( iHaveEnoughMoni() )
  78. {
  79. console.log('You WON! But don\'t be greedy. Restarting!');
  80. reset();
  81. if( stopped )
  82. {
  83. stopped = true;
  84. return true;
  85. }
  86. }
  87. else
  88. {
  89. console.log('You WON! Betting again');
  90. }
  91. setTimeout(function(){
  92. $hiButton.trigger('click');
  93. }, getRandomWait());
  94. }
  95. });startGame();

comments powered by Disqus