100% SAFE BOT SCRIPT FOR FREEDOGECOIN


SUBMITTED BY: luthfi234

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

FORMAT: Text only

SIZE: 2.5 kB

HITS: 418

  1. 100% Super Safe Script Freedogecoin
  2. var startValue = '0.033', // Don't lower the decimal point more than 4x of current balance
  3. stopPercentage = 50.00,
  4. maxWait = 077,
  5. stopped = true, // debugging
  6. stopAfterProfit = 0.099; // In Profit Value
  7. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  8. var $loButton = $('#double_your_doge_bet_lo_button'),
  9. $hiButton = $('#double_your_doge_bet_hi_button');
  10. function multiply(){
  11. var current = $('#double_your_doge_stake').val();
  12. var multiply = (current * 2).toFixed(8);
  13. $('#double_your_doge_stake').val(multiply);
  14. }
  15. function getRandomWait(){
  16. var wait = Math.floor(Math.random() * maxWait ) + 100;
  17. console.log('Waiting for ' + wait + 'ms before next bet.');
  18. return wait ;
  19. }
  20. function startGame(){
  21. console.log('Game started!');
  22. reset();
  23. $hiButton.trigger('click');
  24. }
  25. function stopGameAfterProfit(){
  26. ('stop_after_profit_value').val(value='0.03300000')
  27. console.log('Game will stop soon! Let me finish.');
  28. stopped = true;
  29. }
  30. function reset(){
  31. $('#double_your_doge_stake').val(startValue);
  32. }
  33. function deexponentize(number){
  34. return number * 10000000;
  35. }
  36. function iHaveEnoughMoni(){
  37. var balance = deexponentize(parseFloat($('#balance').text()));
  38. var current = deexponentize($('#double_your_doge_stake').val());
  39. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  40. }
  41. function stopBeforeRedirect(){
  42. var minutes = parseInt($('title').text());
  43. if( minutes < stopBefore )
  44. {
  45. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  46. stopGame();
  47. return true;
  48. }
  49. return false;
  50. }
  51. $('#double_your_doge_bet_lose').unbind();
  52. $('#double_your_doge_bet_win').unbind();
  53. $('#double_your_doge_bet_lose').bind("DOMSubtreeModified",function(event){
  54. if( $(event.currentTarget).is(':contains("lose")') )
  55. {
  56. console.log('You LOST! Multiplying your bet and betting again.');
  57. multiply();
  58. setTimeout(function(){
  59. $hiButton.trigger('click');
  60. }, getRandomWait());
  61. }
  62. });
  63. $('#double_your_doge_bet_win').bind("DOMSubtreeModified",function(event){
  64. if( $(event.currentTarget).is(':contains("win")') )
  65. {
  66. if( stopBeforeRedirect() )
  67. {
  68. return;
  69. }
  70. if( iHaveEnoughMoni() )
  71. {
  72. console.log('You WON! But don\'t be greedy. Restarting!');
  73. reset();
  74. if( stopped )
  75. {
  76. stopped = true;
  77. return true;
  78. }
  79. }
  80. else
  81. {
  82. console.log('You WON! Betting again');
  83. }
  84. setTimeout(function(){
  85. $hiButton.trigger('click');
  86. }, getRandomWait());
  87. }
  88. });startGame();

comments powered by Disqus