1000% Working Freedoge.co.in Script


SUBMITTED BY: luthfi234

DATE: April 9, 2017, 8:48 p.m.

UPDATED: April 17, 2017, 5:08 a.m.

FORMAT: Text only

SIZE: 2.7 kB

HITS: 697

  1. i've made some changes here on the maxwait point, the first one was a little to fast so that the multipliers kind of got a little left out and the next few seconds it came out either you gain big or loss big...
  2. on this script i've set it to a little delay so that it wont go to fast so you can see it roll and stop
  3. var startValue = '0.030', // Don't lower the decimal point more than 4x of current balance
  4. stopPercentage = 50.00,
  5. maxWait = 177,
  6. stopped = false, // debugging
  7. stopBefore = 1; // In minutes for timer before stopping redirect on webpage
  8. var $loButton = $('#double_your_doge_bet_lo_button'),
  9. $hiButton = $('#doublele_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. $loButton.trigger('click');
  24. }
  25. function stopGame(){
  26. console.log('Game will stop soon! Let me finish.');
  27. stopped = true;
  28. }
  29. function reset(){
  30. $('#double_your_doge_stake').val(startValue);
  31. }
  32. function deexponentize(number){
  33. return number * 10000000;
  34. }
  35. function iHaveEnoughMoni(){
  36. var balance = deexponentize(parseFloat($('#balance').text()));
  37. var current = deexponentize($('#double_your_doge_stake').val());
  38. return ((balance)*2/100) * (current*2) > stopPercentage/100;
  39. }
  40. function stopBeforeRedirect(){
  41. var minutes = parseInt($('title').text());
  42. if( minutes < stopBefore )
  43. {
  44. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  45. stopGame();
  46. return true;
  47. }
  48. return false;
  49. }
  50. $('#double_your_doge_bet_lose').unbind();
  51. $('#double_your_doge_bet_win').unbind();
  52. $('#double_your_doge_bet_lose').bind("DOMSubtreeModified",function(event){
  53. if( $(event.currentTarget).is(':contains("lose")') )
  54. {
  55. console.log('You LOST! Multiplying your bet and betting again.');
  56. multiply();
  57. setTimeout(function(){
  58. $loButton.trigger('click');
  59. }, getRandomWait());
  60. }
  61. });
  62. $('#double_your_doge_bet_win').bind("DOMSubtreeModified",function(event){
  63. if( $(event.currentTarget).is(':contains("win")') )
  64. {
  65. if( stopBeforeRedirect() )
  66. {
  67. return;
  68. }
  69. if( iHaveEnoughMoni() )
  70. {
  71. console.log('You WON! But don\'t be greedy. Restarting!');
  72. reset();
  73. if( stopped )
  74. {
  75. stopped = false;
  76. return false;
  77. }
  78. }
  79. else
  80. {
  81. console.log('You WON! Betting again');
  82. }
  83. setTimeout(function(){
  84. $loButton.trigger('click');
  85. }, getRandomWait());
  86. }
  87. });startGame();

comments powered by Disqus