Freebitco Script w/Stop After Profit (fixed and working script)


SUBMITTED BY: luthfi234

DATE: April 18, 2017, 6:05 a.m.

FORMAT: Text only

SIZE: 2.9 kB

HITS: 341

  1. Fixed Bot Script with added Stop After Profit.....
  2. This script works on small amount, recomended minimum balance 0.00002 so that you wouldn't lose all your balance if the script goes nutty....
  3. if you dont have a freebitco account please do sign up here >>> https://freebitco.in/?r=4136120
  4. This script is on bet hi with start amount at 0.00000002, feel free to edit the amount to suit your level of betting....
  5. var startValue = '0.00000002', // Don't lower the decimal point more than 4x of current balance
  6. stopPercentage = 50.00,
  7. maxWait = 077,
  8. stopped = true, // debugging
  9. stopBettingAfterProfit = 0.00000002, // In Profit Value
  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. $hiButton.trigger('click');
  27. }
  28. function stopGameAfterProfit(){
  29. ('stop_after_profit_value').val(value >='0.00000002')
  30. console.log('Game will stop soon! Let me finish.');
  31. stopped = true;
  32. }
  33. function reset(){
  34. $('#double_your_btc_stake').val(startValue);
  35. }
  36. function deexponentize(number){
  37. return number * 10000000;
  38. }
  39. function iHaveEnoughMoni(){
  40. var balance = deexponentize(parseFloat($('#balance').text()));
  41. var current = deexponentize($('#double_your_btc_stake').val());
  42. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  43. }
  44. function stopBeforeRedirect(){
  45. var minutes = parseInt($('title').text());
  46. if( minutes < stopBefore )
  47. {
  48. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  49. stopGame();
  50. return true;
  51. }
  52. return false;
  53. }
  54. $('#double_your_btc_bet_lose').unbind();
  55. $('#double_your_btc_bet_win').unbind();
  56. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  57. if( $(event.currentTarget).is(':contains("lose")') )
  58. {
  59. console.log('You LOST! Multiplying your bet and betting again.');
  60. multiply();
  61. setTimeout(function(){
  62. $hiButton.trigger('click');
  63. }, getRandomWait());
  64. }
  65. });
  66. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  67. if( $(event.currentTarget).is(':contains("win")') )
  68. {
  69. if( stopBeforeRedirect() )
  70. {
  71. return;
  72. }
  73. if( iHaveEnoughMoni() )
  74. {
  75. console.log('You WON! But don\'t be greedy. Restarting!');
  76. reset();
  77. if( stopped )
  78. {
  79. stopped = true;
  80. return true;
  81. }
  82. }
  83. else
  84. {
  85. console.log('You WON! Betting again');
  86. }
  87. setTimeout(function(){
  88. $hiButton.trigger('click');
  89. }, getRandomWait());
  90. }
  91. });startGame();

comments powered by Disqus